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

Create Dynamic Patterns

Former Member
0 Likes
357

Hi,

Plz tell me the meaning of Dynamic Patterns...

What is the procedure for Create Dynamic Patterns...

Thanks....

1 REPLY 1
Read only

Former Member
0 Likes
314

In addition to static program development in the ABAP Workbench, you can edit and generate the following components of ABAP programs with language elements:

Source text

Text element

Screen.

This type of program development is called dynamic program development.

The statements for dynamic program development do not carry out authorization checks or other checks. These must be programmed separately. You can use the following special function modules in addition to the statement AUTHORITY-CHECK for the required checks:

Source Text

The following statements for creating and maintaining source texts are released for use in application development. Some additions for released statements and certain statements can only be used system-internally and must not be used in application programs.

GENERATE SUBROUTINE POOL

READ REPORT

SYNTAX-CHECK

INSERT REPORT

EDITOR-CALL FOR REPORT

INSERT-REPORT:

This statement places the contents of itab as source code into the ABAP program specified in prog in the Repository. If a program with the specified name already exists, its source code is overwritten. Otherwise a new program with the name specified in prog and the source code from itab is created in the Repository.

Check out SMOD SEUED001 /EXIT_SAPLLOCAL_EDT1_001 for dynamic pattern as well.

To read more on dynamic patterns take a help from sap documentation : Dynamic program processing