Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to create text elements into the textpool by using standard FM?

Former Member
0 Likes
1,411

Hi to All,

I want to create text symbols into the textpool by using standard Function module is there any such function module if so send it me i possible give an sample code for that.

thank you to all,

shabeer ahmed

Hi to All,

I want to create text symbols into the textpool by using standard Function module is there any such function module if so send it me i possible give an sample code for that.

thank you to all,

shabeer ahmed

6 REPLIES 6
Read only

naimesh_patel
Active Contributor
0 Likes
1,087

You can do it by this syntax:


INSERT TEXTPOOL prog FROM itab LANGUAGE lang 
                [STATE state].. 

Check online help on this statement.

Regards,

Naimesh Patel

Read only

0 Likes
1,087

hi .

ya i know i and i have wrote code also and it working fine what i need is i don't want to create it by using that statement i want to create through standard function module or any alternate to that statement.

thanks for your quick reply.

shabeer ahmed

Read only

0 Likes
1,087

Sorry, but I don't understand.

You used this command/statement and it works very well, but you WANT to use a FM or an other statement???

Why do WANT an alternate statement for this statement???

Why do not write you own FM???

Read only

0 Likes
1,087

if this statement is working well for you then you can use it straight away ......if you insist on using a function module then it would mean loading a separate function group into the memory and adversely affecting the performance of your program. You can of course do it by writing a function module of your own and writing the statement in it but it will be an additional workload for the system in calling a function module as memory will have to be assigned to the entire function group.

It is always recommended to use abap statements if possible compared to calling function modules.

Read only

Former Member
0 Likes
1,087

Hello Shabeer,

The Function Group SETXP supports you with a lot of FMs to maintain ABAP text pools.

Regards,

Heinz

Read only

Former Member
0 Likes
1,087

Thank You