Application Development 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: 

Pattern check in ABAP programs?

Former Member
0 Kudos

Hi,

Is there any SAP standard program to check the given string in all ABAP programs?

If so please help..

Thanks

Venkatesh P

4 REPLIES 4

Former Member
0 Kudos

I use Standard program RSRSCAN1 ( 4.6C ) to find out string in sap programs

Thanks

Seshu

former_member387317
Active Contributor
0 Kudos

Hi Venkatesh,

Pls be specific about your requirement..

u can perform various string operations through ABAP using comparison operators

ex.. <b>CO CN CA NA CS NS CP NP</b>....

just write any of the above in ABAP editor and press F1 to get more infromation...

<b><REMOVED BY MODERATOR></b>

Thanks & Regards

ilesh 24x7

Message was edited by:

Alvaro Tejada Galindo

Former Member
0 Kudos

Are you asking to check string in data in the course of running the program, or are you asking how to check patterns in the source of the program itself?

The other replies have covered checking patterns in data.

If you want to check for patterns in the ABAP source itself, you can check for patterns in ABAP source using SCII Code inspector.

Enter SCII and select the object or set of objects to check.

Under the list of checks for Temporary Definition there is area called

Search Functs.

Under Search Functs., if you expand it, there are options to search for

Search of ABAP Tokens

Search ABAP Statement Patterns

Click on the arrow to the left of these and you can specify details about the patterns that you want to search for.

Good luck

Brian

Former Member
0 Kudos

thanks for all replies. I have developed new program by using RSRSCAN1.