Skip to content

Instantly share code, notes, and snippets.

@EkremGungormez
Created July 17, 2012 08:04
Show Gist options
  • Save EkremGungormez/3127909 to your computer and use it in GitHub Desktop.
Save EkremGungormez/3127909 to your computer and use it in GitHub Desktop.
Parameters Number Error in Abap Correct Way
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