‎2008 Jun 10 7:25 AM
Hi all,
By using read text function module i have 2 lines of text in my internal tbale it_lines.
suppose it_lines contains.....
1.script
2.smartform
Now my requirement is.....
I have a hard coded text 'SAP'....
I need to display SAP script smartform in my smartform WINDOW....
I amtrying this but i am getting only
SAP smartform
In debug mode i have tested the SCRIPT text was overwrittine by smartform text
Can anyone help me reg this...
Sachin.
‎2008 Jun 10 7:29 AM
Hi .
Read table tline index 1 and then 2 .
when reading first index concatenate with WORD SAP .
WHEN you read first time
read table tline index 1 .
concatenate 'SAP' TLINE-TEXT INTO VAR1.
READ TABLE tline index 2
concatenate VAR1 TLINE-TEXT INTO VAR1.
SO THE OUTPUT WOULD
SAP script smartform .
Please reward if useful.
‎2008 Jun 10 7:30 AM