Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Program for finding word in Report

former_member576008
Active Participant
0 Likes
615

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
582

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

3 REPLIES 3
Read only

Former Member
0 Likes
582

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.

Read only

Former Member
0 Likes
582

Use Program

RPR_ABAP_SOURCE_SCAN to search for a particular string ...

Read only

Former Member
0 Likes
583

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