cancel
Showing results for 
Search instead for 
Did you mean: 

Print Item Text of ME2N (Purchase Order) in SAPSCRIPT

Former Member
0 Kudos

Dear All,

I have to print item text of ME23N purchase order in sapscript. How can I print these text using "text symbol".

Thanks and waiting for useful reply.

--

Thanks

Regards

Anukul

Accepted Solutions (0)

Answers (1)

Answers (1)

arul_murugan
Active Participant
0 Kudos

Hi,

Fetch the text into the internal table t_text by using the function Module READ_TEXT.

LOOP T_TEXT into WA_TEXT.

CALL FUNCTION 'WRITE_FORM'.

EXPORTING ELEMENT = 'TEXT'

WINDOW = 'MAIN'.

ENDLOOP.

In the script main window declare the element 'TEXT' and the work area variable

/E TEXT

  • &WA_TEXT-TDLINE&

I think it will help u.

Thanks

Arul

Edited by: Arul on Jun 8, 2010 5:17 PM