BBP_SUS_GSC_ASSIGNMENT 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 BBP_SUS_GSC_ASSIGNMENT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BBP_SUS_ASSIGNMENT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BBP_SUS_GSC_ASSIGNMENT' "SUS Confirmation Assignment
EXPORTING
iv_object_type = " crmd_orderadm_h-object_type Geschftsvorgangstyp
* iv_subtype = " bbp_pds_header-subtype Ausprgung eines Einkaufsbelegs (z.B. Gutschrift/Rechnung)
* iv_multi = '-' " boolean Sammelconfirmation
* is_follow_up_doc_settings = " bbps_sus_dev SUS Deviation und Folgebelegserzeugungs-Einstellungen
IMPORTING
es_header = " bbp_pds_suscf_header_d Schnittstelle Kopf-Daten Rckmeldung GetDetail-Fall
et_attach = " bbpt_pds_att_t KW-Anlagen inkl. Dokument
TABLES
it_selection = " bbps_object_key Schlsselfelder fr Lean- oder Backend-Dokument
* it_doc_values_db = " bbp_cfiv_doc_values_db Struktur zum Merken der Dokumentwerte auf der Datenbank
* it_item_po = " bbpt_pd_suspo_ui_item_d SRM-SUS: Table type for PO items
* et_item = " bbp_pds_suscf_item_d Schnittstelle Positions-Daten Rckmeldung GetDetail-Fall
* et_partner = " bbp_pds_partner Geschftspartner
* et_longtext = " bbp_pds_longtext Langtexte zum Procurement Document
* et_limit = " bbp_pds_limit Wertlimit
* et_status = " bbp_pds_status Status
* et_actual_values = " bbp_pds_actval Ist-Werte und Mengen
* et_messages = " bbp_pds_messages Fehlermeldungen zu einer PD-Methode
. " BBP_SUS_GSC_ASSIGNMENT
The ABAP code below is a full code listing to execute function module BBP_SUS_GSC_ASSIGNMENT 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).
| ld_es_header | TYPE BBP_PDS_SUSCF_HEADER_D , |
| ld_et_attach | TYPE BBPT_PDS_ATT_T , |
| it_it_selection | TYPE STANDARD TABLE OF BBPS_OBJECT_KEY,"TABLES PARAM |
| wa_it_selection | LIKE LINE OF it_it_selection , |
| it_it_doc_values_db | TYPE STANDARD TABLE OF BBP_CFIV_DOC_VALUES_DB,"TABLES PARAM |
| wa_it_doc_values_db | LIKE LINE OF it_it_doc_values_db , |
| it_it_item_po | TYPE STANDARD TABLE OF BBPT_PD_SUSPO_UI_ITEM_D,"TABLES PARAM |
| wa_it_item_po | LIKE LINE OF it_it_item_po , |
| it_et_item | TYPE STANDARD TABLE OF BBP_PDS_SUSCF_ITEM_D,"TABLES PARAM |
| wa_et_item | LIKE LINE OF it_et_item , |
| it_et_partner | TYPE STANDARD TABLE OF BBP_PDS_PARTNER,"TABLES PARAM |
| wa_et_partner | LIKE LINE OF it_et_partner , |
| it_et_longtext | TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT,"TABLES PARAM |
| wa_et_longtext | LIKE LINE OF it_et_longtext , |
| it_et_limit | TYPE STANDARD TABLE OF BBP_PDS_LIMIT,"TABLES PARAM |
| wa_et_limit | LIKE LINE OF it_et_limit , |
| it_et_status | TYPE STANDARD TABLE OF BBP_PDS_STATUS,"TABLES PARAM |
| wa_et_status | LIKE LINE OF it_et_status , |
| it_et_actual_values | TYPE STANDARD TABLE OF BBP_PDS_ACTVAL,"TABLES PARAM |
| wa_et_actual_values | LIKE LINE OF it_et_actual_values , |
| it_et_messages | TYPE STANDARD TABLE OF BBP_PDS_MESSAGES,"TABLES PARAM |
| wa_et_messages | LIKE LINE OF it_et_messages . |
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_es_header | TYPE BBP_PDS_SUSCF_HEADER_D , |
| ld_iv_object_type | TYPE CRMD_ORDERADM_H-OBJECT_TYPE , |
| it_it_selection | TYPE STANDARD TABLE OF BBPS_OBJECT_KEY , |
| wa_it_selection | LIKE LINE OF it_it_selection, |
| ld_et_attach | TYPE BBPT_PDS_ATT_T , |
| ld_iv_subtype | TYPE BBP_PDS_HEADER-SUBTYPE , |
| it_it_doc_values_db | TYPE STANDARD TABLE OF BBP_CFIV_DOC_VALUES_DB , |
| wa_it_doc_values_db | LIKE LINE OF it_it_doc_values_db, |
| ld_iv_multi | TYPE BOOLEAN , |
| it_it_item_po | TYPE STANDARD TABLE OF BBPT_PD_SUSPO_UI_ITEM_D , |
| wa_it_item_po | LIKE LINE OF it_it_item_po, |
| ld_is_follow_up_doc_settings | TYPE BBPS_SUS_DEV , |
| it_et_item | TYPE STANDARD TABLE OF BBP_PDS_SUSCF_ITEM_D , |
| wa_et_item | LIKE LINE OF it_et_item, |
| it_et_partner | TYPE STANDARD TABLE OF BBP_PDS_PARTNER , |
| wa_et_partner | LIKE LINE OF it_et_partner, |
| it_et_longtext | TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT , |
| wa_et_longtext | LIKE LINE OF it_et_longtext, |
| it_et_limit | TYPE STANDARD TABLE OF BBP_PDS_LIMIT , |
| wa_et_limit | LIKE LINE OF it_et_limit, |
| it_et_status | TYPE STANDARD TABLE OF BBP_PDS_STATUS , |
| wa_et_status | LIKE LINE OF it_et_status, |
| it_et_actual_values | TYPE STANDARD TABLE OF BBP_PDS_ACTVAL , |
| wa_et_actual_values | LIKE LINE OF it_et_actual_values, |
| it_et_messages | TYPE STANDARD TABLE OF BBP_PDS_MESSAGES , |
| wa_et_messages | LIKE LINE OF it_et_messages. |
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 BBP_SUS_GSC_ASSIGNMENT or its description.
BBP_SUS_GSC_ASSIGNMENT - SUS Confirmation Assignment BBP_SUS_GET_SYSTYPE_FOR_VENDOR - Fetches the logical system type for vendor partner number BBP_SUS_GET_SYSTYPE - Systemtyp für SUS Quellsystem ableiten BBP_SUS_GET_SUS_ROLES - BBP_SUS_GET_SUS_ADMIN_ROLES - Liste der Rollen die dem SUS Administrator automatisch zugewisen werde BBP_SUS_GET_INFO -