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

Not getting updated Text

Former Member
0 Likes
1,394

Hi,

I have used CREATE_TEXT function module to create standard text which i am including in SAP Script using

INCLUDE command.

This script is attached to transaction PP40 now the problem i am facing is this Text is not getting updated even i change the Business Event , but i can see the updated text in SO10.

Is it regarding Buffer refresh or Memory Refresh ?

Can you please suggest me a way how to get the updated text in Script.

Thanks & Regards,

Amit Kade

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
1,130

Hello,

Use FMs in order,

INIT_TEXT,

SAVE_TEXT,

COMMIT_TEXT

instead of create_text.

Regards,

Naimesh

Hi,

I have used CREATE_TEXT function module to create standard text which i am including in SAP Script using

INCLUDE command.

This script is attached to transaction PP40 now the problem i am facing is this Text is not getting updated even i change the Business Event , but i can see the updated text in SO10.

Is it regarding Buffer refresh or Memory Refresh ?

Can you please suggest me a way how to get the updated text in Script.

Thanks & Regards,

Amit Kade

5 REPLIES 5
Read only

Former Member
0 Likes
1,130

Hi,

after your CREATE_TEXT are you using COMMIT_TEXT.

if not use it.

Regards

vijay

Read only

naimesh_patel
Active Contributor
0 Likes
1,131

Hello,

Use FMs in order,

INIT_TEXT,

SAVE_TEXT,

COMMIT_TEXT

instead of create_text.

Regards,

Naimesh

Read only

Former Member
0 Likes
1,130

Hi Amit,

you can also test it using READ_TEXT with textid and textobject .

and find your text.

if it success then there is some problem in the include text statement.

Regards

vijay

Read only

0 Likes
1,130

Hi Vijay,

Thank you for your raply .

I am getting the updated text in an Internal Table which i am passing to CREATE_TEXT FM , and i can see the updated text in SO10 also but it's not reflecting in Script.

I am using following Include statement ..

INCLUDE ZTEXT1 OBJECT TEXT ID ST.

Regards,

Amit

Read only

0 Likes
1,130

Hi,

Try this way..

INCLUDE ZTEXT OBJECT TEXT ID ST LANGUAGE EN

Regards

vijay