‎2005 May 24 5:01 AM
Hi ,
I have developed a interactive report.The user needs to click on a value which will give a pop up.In that pop up, he need's to select a value.That value will be printed in the report.
I am using modify line to print it in a particular area by using the command.
MODIFY line nline
INDEX SY-LSIND
LINE VALUE FROM Line_data
FIELD VALUE ITAB-REASON_TEXT.
FROM I_ZREASON_CODES-REASON_TEXT
-- Nline is populated with the line no which i have clicked.
when the report with is 255 , the report is working fine.When it is increased more than 255, It is modifing all the uline in the report. Can any one please help me in this.
‎2005 May 24 5:29 AM
Hi,
Refer
http://help.sap.com/saphelp_46c/helpdata/en/9f/dba4b235c111d1829f0000e829fbfe/frameset.htm
Also check this thread
Thanks & Regards,
Judith.
‎2005 May 24 7:04 AM
Hi ,
Thanks for ur reply. In the first link, they didn't mention any thing abt the report width greater than 255 and in the second link it is related with the check box.
I need to know why the modify line is working weird when the report width is greater than 255.
‎2005 May 30 12:39 PM
Hi Everyone...
Some how I have got the solution for this problem.I am not using fieldvalue in my Modify line screen. I am just updating the line data variable..
line_data+219(50) = itab-reason_text.
line_data+273(1) = sy-vline.
MODIFY LINE NLINE LINE VALUE FROM line_data.
With Regards,
Ranganathan