‎2008 Feb 27 11:00 AM
Hi sdns..!
I want a program for finding a particular word in report.
I need this report urgently. If you dont have the report plz send me the steps or tips to find the word in report.
regards
Nandha
‎2008 Feb 27 11:11 AM
HI,
Please refer to the SAP standard program RPR_ABAP_SOURCE_SCAN.
OR
AFX_CODE_SCANNER
Thanks,
Sriram POnna.
Edited by: Sriram Ponna on Feb 27, 2008 4:42 PM
‎2008 Feb 27 11:09 AM
HI,
It might be useful..
FIND
Searches for patterns.
Syntax
FIND <p> IN [SECTION OFFSET <off> LENGTH <len> OF] <text>
[IGNORING CASE|RESPECTING CASE]
[IN BYTE MODE|IN CHARACTER MODE]
[MATCH OFFSET <o>] [MATCH LENGTH <l>].
The system searches the field <text> for the pattern <p>. The SECTION OFFSET <off> LENGTH <len> OF addition tells the system to search only from the <off> position in the length <len>. IGNORING CASE or RESPECTING CASE (default) specifies whether the search is to be case-sensitive. In Unicode programs, you must specify whether the statement is a character or byte operation, using the IN BYTE MODE or IN CHARACTER MODE (default) additions. The MATCH OFFSET and MATCH LENGTH additions set the offset of the first occurrence and length of the search string in the fields <p> and <l>.
Regards,
Priya.
‎2008 Feb 27 11:11 AM
Use Program
RPR_ABAP_SOURCE_SCAN to search for a particular string ...
‎2008 Feb 27 11:11 AM
HI,
Please refer to the SAP standard program RPR_ABAP_SOURCE_SCAN.
OR
AFX_CODE_SCANNER
Thanks,
Sriram POnna.
Edited by: Sriram Ponna on Feb 27, 2008 4:42 PM