SAP FT_COMBIN_BTRANS_CUSPROC_CHECK Function Module for NOTRANSL: Außenhandel: Kombination Geschäftsart - Verfahren: Konsistenzprü









FT_COMBIN_BTRANS_CUSPROC_CHECK is a standard ft combin btrans cusproc check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Außenhandel: Kombination Geschäftsart - Verfahren: Konsistenzprü 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 ft combin btrans cusproc check FM, simply by entering the name FT_COMBIN_BTRANS_CUSPROC_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function FT_COMBIN_BTRANS_CUSPROC_CHECK 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 'FT_COMBIN_BTRANS_CUSPROC_CHECK'"NOTRANSL: Außenhandel: Kombination Geschäftsart - Verfahren: Konsistenzprü
EXPORTING
* I_DIRECTION = '2' "Indicator: Goods direction for declarations to authorities
I_COUNTRY = "Country Key
I_BUSINESS_TRANSACTION = "Transaction Type
I_CUSTOMS_PROCEDURE = "Customs procedure
* I_ISSUE_MESSAGE = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_RESULT = "ABAP System Field: Return Code of ABAP Statements
E_MESS_TYPE = "Generic Type

EXCEPTIONS
BTRANS_OR_CUSTPROC_INITIAL = 1 ENTRY_NOT_FOUND = 2 WRONG_DIRECTION = 3
.



IMPORTING Parameters details for FT_COMBIN_BTRANS_CUSPROC_CHECK

I_DIRECTION - Indicator: Goods direction for declarations to authorities

Data type: T609S-VEREI
Default: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_COUNTRY - Country Key

Data type: T618K-LAND1
Optional: No
Call by Reference: No ( called with pass by value option)

I_BUSINESS_TRANSACTION - Transaction Type

Data type: T605K-EXART
Optional: No
Call by Reference: No ( called with pass by value option)

I_CUSTOMS_PROCEDURE - Customs procedure

Data type: T605K-EXPRF
Optional: No
Call by Reference: No ( called with pass by value option)

I_ISSUE_MESSAGE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

EXPORTING Parameters details for FT_COMBIN_BTRANS_CUSPROC_CHECK

E_RESULT - ABAP System Field: Return Code of ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: No ( called with pass by value option)

E_MESS_TYPE - Generic Type

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

EXCEPTIONS details

BTRANS_OR_CUSTPROC_INITIAL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

ENTRY_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

WRONG_DIRECTION - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for FT_COMBIN_BTRANS_CUSPROC_CHECK 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_e_result  TYPE SY-SUBRC, "   
lv_i_direction  TYPE T609S-VEREI, "   '2'
lv_btrans_or_custproc_initial  TYPE T609S, "   
lv_i_country  TYPE T618K-LAND1, "   
lv_e_mess_type  TYPE C, "   
lv_entry_not_found  TYPE C, "   
lv_wrong_direction  TYPE C, "   
lv_i_business_transaction  TYPE T605K-EXART, "   
lv_i_customs_procedure  TYPE T605K-EXPRF, "   
lv_i_issue_message  TYPE T605K. "   'X'

  CALL FUNCTION 'FT_COMBIN_BTRANS_CUSPROC_CHECK'  "NOTRANSL: Außenhandel: Kombination Geschäftsart - Verfahren: Konsistenzprü
    EXPORTING
         I_DIRECTION = lv_i_direction
         I_COUNTRY = lv_i_country
         I_BUSINESS_TRANSACTION = lv_i_business_transaction
         I_CUSTOMS_PROCEDURE = lv_i_customs_procedure
         I_ISSUE_MESSAGE = lv_i_issue_message
    IMPORTING
         E_RESULT = lv_e_result
         E_MESS_TYPE = lv_e_mess_type
    EXCEPTIONS
        BTRANS_OR_CUSTPROC_INITIAL = 1
        ENTRY_NOT_FOUND = 2
        WRONG_DIRECTION = 3
. " FT_COMBIN_BTRANS_CUSPROC_CHECK




ABAP code using 7.40 inline data declarations to call FM FT_COMBIN_BTRANS_CUSPROC_CHECK

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.

"SELECT single SUBRC FROM SY INTO @DATA(ld_e_result).
 
"SELECT single VEREI FROM T609S INTO @DATA(ld_i_direction).
DATA(ld_i_direction) = '2'.
 
 
"SELECT single LAND1 FROM T618K INTO @DATA(ld_i_country).
 
 
 
 
"SELECT single EXART FROM T605K INTO @DATA(ld_i_business_transaction).
 
"SELECT single EXPRF FROM T605K INTO @DATA(ld_i_customs_procedure).
 
DATA(ld_i_issue_message) = 'X'.
 


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!