cancel
Showing results for 
Search instead for 
Did you mean: 

From where text elements will be called in scripts?

Former Member
0 Kudos

hi

i want to know...from where text elements will be called in Scripts. Becuase one of text element is not called during print perview of PO Output.

So i want to know where from these text elements will be called.

Thanks

Venkatesh P

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

the text elements will be called from the print program in which if we call the function module write_form and in that we give the name of text element in the exporting parameter in element.

and if your particular text element is not called you can check it by debugging also on your sap script whether it is called on not and to debug the script go to utility and click on activate debugger and now run you program and look that particular text element is called or not

or you can also set breakpoint in your print program at the point where this text element will be called.

former_member196280
Active Contributor
0 Kudos

All the standard text is maintained in So10 or sometimes we call item text using READ_TEXT...

Do check this table for the entries... STXH

Close the thread if your question is answered.

Regards,

SaiRam

Former Member
0 Kudos

Hi!

Standard text elements can be amintained in SO10 transaction.

Regards

Tamá

Former Member
0 Kudos

Hi,

SAPscript calls the individual text components of a form text elements. The <b>print program</b> accesses the elements through FM's like <b>'WRITE_FORM'</b> or <b>'CONTROL_FORM'</b>

Please check your print program, the control might not be going to the 'CALL' for that particular text element. Or it must be based on some condition. You need to Debug and find out.