SAP TCOR_CUST_GET_SAT_INT_ASSG Function Module for Get assignments of Profile & BP groups for ext. recipients









TCOR_CUST_GET_SAT_INT_ASSG is a standard tcor cust get sat int assg SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get assignments of Profile & BP groups for ext. recipients processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for tcor cust get sat int assg FM, simply by entering the name TCOR_CUST_GET_SAT_INT_ASSG into the relevant SAP transaction such as SE37 or SE38.

Function Group: TCOR_CUST
Program Name: SAPLTCOR_CUST
Main Program: SAPLTCOR_CUST
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TCOR_CUST_GET_SAT_INT_ASSG pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'TCOR_CUST_GET_SAT_INT_ASSG'"Get assignments of Profile & BP groups for ext. recipients
EXPORTING
* IV_INT_REC = "Internal Recipient
* IV_COMPANY_CODE = "Company Code
* IV_RECIPIENT_TYPE = "Recipient/Sender Type
* IV_CONTRACT_TYPE = "Contract Type
* IV_PRODUCT_CAT = "Product Category
* IV_PRODUCT_TYPE = "Product Type
* IV_SEC_ACCOUNT = "Securities Account
* IV_FLOW_TYPE = "Update Type

IMPORTING
ET_ASSIGNMENTS = "Table Type for TCORT_INT_ASSIGN
.



IMPORTING Parameters details for TCOR_CUST_GET_SAT_INT_ASSG

IV_INT_REC - Internal Recipient

Data type: FTR_INT_REC
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_COMPANY_CODE - Company Code

Data type: BUKRS
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_RECIPIENT_TYPE - Recipient/Sender Type

Data type: FTR_RECIPIENT_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_CONTRACT_TYPE - Contract Type

Data type: RANTYP
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_PRODUCT_CAT - Product Category

Data type: SANLF
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_PRODUCT_TYPE - Product Type

Data type: VVSART
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_SEC_ACCOUNT - Securities Account

Data type: VRLDEPO
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_FLOW_TYPE - Update Type

Data type: TPM_DIS_FLOWTYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for TCOR_CUST_GET_SAT_INT_ASSG

ET_ASSIGNMENTS - Table Type for TCORT_INT_ASSIGN

Data type: TCORY_INT_ASSIGN
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for TCOR_CUST_GET_SAT_INT_ASSG Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_iv_int_rec  TYPE FTR_INT_REC, "   
lv_et_assignments  TYPE TCORY_INT_ASSIGN, "   
lv_iv_company_code  TYPE BUKRS, "   
lv_iv_recipient_type  TYPE FTR_RECIPIENT_TYPE, "   
lv_iv_contract_type  TYPE RANTYP, "   
lv_iv_product_cat  TYPE SANLF, "   
lv_iv_product_type  TYPE VVSART, "   
lv_iv_sec_account  TYPE VRLDEPO, "   
lv_iv_flow_type  TYPE TPM_DIS_FLOWTYPE. "   

  CALL FUNCTION 'TCOR_CUST_GET_SAT_INT_ASSG'  "Get assignments of Profile & BP groups for ext. recipients
    EXPORTING
         IV_INT_REC = lv_iv_int_rec
         IV_COMPANY_CODE = lv_iv_company_code
         IV_RECIPIENT_TYPE = lv_iv_recipient_type
         IV_CONTRACT_TYPE = lv_iv_contract_type
         IV_PRODUCT_CAT = lv_iv_product_cat
         IV_PRODUCT_TYPE = lv_iv_product_type
         IV_SEC_ACCOUNT = lv_iv_sec_account
         IV_FLOW_TYPE = lv_iv_flow_type
    IMPORTING
         ET_ASSIGNMENTS = lv_et_assignments
. " TCOR_CUST_GET_SAT_INT_ASSG




ABAP code using 7.40 inline data declarations to call FM TCOR_CUST_GET_SAT_INT_ASSG

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!