cancel
Showing results for 
Search instead for 
Did you mean: 

Missing text

Former Member
0 Kudos

Hello,

I'm using a text module to print Terms and Conditions at the end of a Purchase Order. I'm getting one page of text but there is more to print. What do I need to do to get more pages to print the remaining text? I tried putting the text node in the main window of the page and I get nothing so I added a secondary window but get no page break.

Thank you,

JR

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Joseph,

r u getting the complete text data in to the LINES table but the printing is of only 75 char... or in the LINES it self u r not getting the comple data...chec in debugging

if complete data is comeing once check the window have enough space to print the data

CALL FUNCTION 'READ_TEXT'

EXPORTING

ID = '0002'

LANGUAGE = V_LANGU

NAME = V_TDNAME

OBJECT = 'VBBK'

TABLES

LINES = IT_TLINE

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.

IF SY-SUBRC <> 0.

CLEAR IT_TLINE.

ENDIF.

u have to loop the table IT_TLINE and print the data...

Please Close this thread.. when u r problem is solved. Reward all Helpful answers