2007 Jul 20 12:21 PM
LOOP AT itab_report. -
contains list of reports
CLEAR: progline, tb_report.
READ REPORT itab_report-master INTO tb_report.
DESCRIBE TABLE tb_report LINES progline.
LOOP AT itab_x031l.
{ find search terms }--
MOVE itab_x031l-fieldname TO searchstring.
LOOP AT tb_report.
IF tb_report IS INITIAL.
CONTINUE.
ENDIF.
MOVE tb_report TO progdata.
SEARCH progdata FOR searchstring.
the problem here is the exact match for the field is not obtained .....
eg if the field name is mandt......sy-mandt is also shown,which i dont want
can neone help me with this......can neone help me with scan abap source ,i thnk tat cod solve ma problem cos
2007 Jul 20 12:25 PM
2007 Nov 28 12:24 PM