I have to display the PO header note in my report.
I do know how it works with FM READ_TEXT.
For Network RESB-LTXSP indicates if there is a long text.
My question is that if there a similar flag for 'PO Header note exists'?
For performance reason it would be good to call FM READ_TEXT only for POs where there is header note.
Thanks in advance,
Incho
Hi Incho,
you may check the existence of a header note by a select:
select tdspras from stxh
into l_spras
where tdid = 'EKKO'
and tdobject = 'TEXT'
and tdname = '4500000001'
exit.
endselect.
Enno.
Add a comment