ISAUTO_SICCE_GET_PDOC_LIST 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 ISAUTO_SICCE_GET_PDOC_LIST into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ISAUTO_SICCE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISAUTO_SICCE_GET_PDOC_LIST' "Search for purchasing document in Supplier Workplace
* EXPORTING
* if_vendor = " bapiekko-vendor Vendor's account number
* if_po_number = " bapiekko-po_number Purchasing document number
* if_po_item = " bapiekpo-po_item Item number of purchasing document
* if_material = " bapiekpo-material Material number
* if_ematn = " ematnr Material number
* if_ext_mat = " idnlf Manufacturer part number
* if_plant = " bapiekpo-plant Plant
TABLES
et_pdoc_list = " sic_pdoc_data_tabtype Purchasing Documents: Fields neccessary for identification
EXCEPTIONS
EXT_MAT_NOT_FOUND = 1 " Manufacturer part number not found
EXT_MAT_MATNR_MISMATCH = 2 " Manufacturer part number does not match material number
. " ISAUTO_SICCE_GET_PDOC_LIST
The ABAP code below is a full code listing to execute function module ISAUTO_SICCE_GET_PDOC_LIST 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_et_pdoc_list | TYPE STANDARD TABLE OF SIC_PDOC_DATA_TABTYPE,"TABLES PARAM |
| wa_et_pdoc_list | LIKE LINE OF it_et_pdoc_list . |
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_if_vendor | TYPE BAPIEKKO-VENDOR , |
| it_et_pdoc_list | TYPE STANDARD TABLE OF SIC_PDOC_DATA_TABTYPE , |
| wa_et_pdoc_list | LIKE LINE OF it_et_pdoc_list, |
| ld_if_po_number | TYPE BAPIEKKO-PO_NUMBER , |
| ld_if_po_item | TYPE BAPIEKPO-PO_ITEM , |
| ld_if_material | TYPE BAPIEKPO-MATERIAL , |
| ld_if_ematn | TYPE EMATNR , |
| ld_if_ext_mat | TYPE IDNLF , |
| ld_if_plant | TYPE BAPIEKPO-PLANT . |
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 ISAUTO_SICCE_GET_PDOC_LIST or its description.
ISAUTO_SICCE_GET_PDOC_LIST - Search for purchasing document in Supplier Workplace ISAUTO_SICCE_GET_LAST_SEARCH - Get the results of the last purchasing document search ISAUTO_SICCE_EXT_MAT_TO_MATNR - Material number from external material number ISAUTO_SAPBC_UPDATE_ROUTING - Post Routing Rule to SAP BC ISAUTO_SAPBC_SAVE_ROUTING_RULE - BC-RFC: Post routing rule to SAP BC ISAUTO_SAPBC_REM_ROUTING_RULE - BC-RFC: Remove routing rule from Business Connector