Created
July 17, 2012 08:04
-
-
Save EkremGungormez/3127909 to your computer and use it in GitHub Desktop.
Parameters Number Error in Abap Correct Way
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TYPES: BEGIN OF name_of_global_structure, | |
"write some attributes here | |
END OF name_of_global_structure, | |
name_of_global_table_type TYPE TABLE OF name_of_global_structure. | |
data: name_of_global_internal_table TYPE STANDARD TABLE OF name_of_global_structure. | |
"write some code here. | |
PERFORM form_name USING name_of_global_internal_table. | |
FORM form_name USING pt_name_of_global_structure TYPE name_of_global_table_type. | |
"write some code here. | |
ENDFORM. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment