FIPR_TRANSPORT_ORDER_CREATE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name FIPR_TRANSPORT_ORDER_CREATE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FIPR_TOOLS
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FIPR_TRANSPORT_ORDER_CREATE' "Creates a Transport Request
* EXPORTING
* i_product = " fipr_product
* i_productt = " fipr_productt
* i_prodv = " fipr_prodv
TABLES
* t_product = " fipr_product
* t_productt = " fipr_productt
* t_prodv = " fipr_prodv
t_va = " fipr_va
t_va_fld = " fipr_va_fld
t_va_fldm = " fipr_va_fldm
t_va_fldval = " fipr_va_fldval
t_va_value = " fipr_va_value
t_va_value2 = " fipr_va_value2
. " FIPR_TRANSPORT_ORDER_CREATE
The ABAP code below is a full code listing to execute function module FIPR_TRANSPORT_ORDER_CREATE including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_t_product | TYPE STANDARD TABLE OF FIPR_PRODUCT,"TABLES PARAM |
| wa_t_product | LIKE LINE OF it_t_product , |
| it_t_productt | TYPE STANDARD TABLE OF FIPR_PRODUCTT,"TABLES PARAM |
| wa_t_productt | LIKE LINE OF it_t_productt , |
| it_t_prodv | TYPE STANDARD TABLE OF FIPR_PRODV,"TABLES PARAM |
| wa_t_prodv | LIKE LINE OF it_t_prodv , |
| it_t_va | TYPE STANDARD TABLE OF FIPR_VA,"TABLES PARAM |
| wa_t_va | LIKE LINE OF it_t_va , |
| it_t_va_fld | TYPE STANDARD TABLE OF FIPR_VA_FLD,"TABLES PARAM |
| wa_t_va_fld | LIKE LINE OF it_t_va_fld , |
| it_t_va_fldm | TYPE STANDARD TABLE OF FIPR_VA_FLDM,"TABLES PARAM |
| wa_t_va_fldm | LIKE LINE OF it_t_va_fldm , |
| it_t_va_fldval | TYPE STANDARD TABLE OF FIPR_VA_FLDVAL,"TABLES PARAM |
| wa_t_va_fldval | LIKE LINE OF it_t_va_fldval , |
| it_t_va_value | TYPE STANDARD TABLE OF FIPR_VA_VALUE,"TABLES PARAM |
| wa_t_va_value | LIKE LINE OF it_t_va_value , |
| it_t_va_value2 | TYPE STANDARD TABLE OF FIPR_VA_VALUE2,"TABLES PARAM |
| wa_t_va_value2 | LIKE LINE OF it_t_va_value2 . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_product | TYPE FIPR_PRODUCT , |
| it_t_product | TYPE STANDARD TABLE OF FIPR_PRODUCT , |
| wa_t_product | LIKE LINE OF it_t_product, |
| ld_i_productt | TYPE FIPR_PRODUCTT , |
| it_t_productt | TYPE STANDARD TABLE OF FIPR_PRODUCTT , |
| wa_t_productt | LIKE LINE OF it_t_productt, |
| ld_i_prodv | TYPE FIPR_PRODV , |
| it_t_prodv | TYPE STANDARD TABLE OF FIPR_PRODV , |
| wa_t_prodv | LIKE LINE OF it_t_prodv, |
| it_t_va | TYPE STANDARD TABLE OF FIPR_VA , |
| wa_t_va | LIKE LINE OF it_t_va, |
| it_t_va_fld | TYPE STANDARD TABLE OF FIPR_VA_FLD , |
| wa_t_va_fld | LIKE LINE OF it_t_va_fld, |
| it_t_va_fldm | TYPE STANDARD TABLE OF FIPR_VA_FLDM , |
| wa_t_va_fldm | LIKE LINE OF it_t_va_fldm, |
| it_t_va_fldval | TYPE STANDARD TABLE OF FIPR_VA_FLDVAL , |
| wa_t_va_fldval | LIKE LINE OF it_t_va_fldval, |
| it_t_va_value | TYPE STANDARD TABLE OF FIPR_VA_VALUE , |
| wa_t_va_value | LIKE LINE OF it_t_va_value, |
| it_t_va_value2 | TYPE STANDARD TABLE OF FIPR_VA_VALUE2 , |
| wa_t_va_value2 | LIKE LINE OF it_t_va_value2. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FIPR_TRANSPORT_ORDER_CREATE or its description.
FIPR_TRANSPORT_ORDER_CREATE - Creates a Transport Request FIPR_TRANSFER_XFLDS_FLDMOD - Converts the Other X Fields into a Field Modification Field FIPR_TRANSFER_FLDMOD_XFLDS - Converts a Field with Field Modification into the X Fields FIPR_PROD_NUMBER_VERSIONS - Determines the Number of Versions for a Product FIPR_PRODV_MULT_GET - Reads Multiple Products and Versions FIPR_PRODV_GET_VALID_NOW - Reads the Valid and Active Version of a Product