SAP LOAN_CHECK_SNICHTAB Function Module for Loans: Check Reason for Non-Acceptance Indicator









LOAN_CHECK_SNICHTAB is a standard loan check snichtab SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Loans: Check Reason for Non-Acceptance Indicator 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 loan check snichtab FM, simply by entering the name LOAN_CHECK_SNICHTAB into the relevant SAP transaction such as SE37 or SE38.

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



Function LOAN_CHECK_SNICHTAB 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 'LOAN_CHECK_SNICHTAB'"Loans: Check Reason for Non-Acceptance Indicator
EXPORTING
I_BUKRS = "
I_GSART = "
I_SNICHTAB = "
* I_SPRAS = "

IMPORTING
E_TDA5 = "
E_TDA5T = "

EXCEPTIONS
SNICHTAB_NOT_FOUND = 1
.



IMPORTING Parameters details for LOAN_CHECK_SNICHTAB

I_BUKRS -

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

I_GSART -

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

I_SNICHTAB -

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

I_SPRAS -

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

EXPORTING Parameters details for LOAN_CHECK_SNICHTAB

E_TDA5 -

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

E_TDA5T -

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

EXCEPTIONS details

SNICHTAB_NOT_FOUND -

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

Copy and paste ABAP code example for LOAN_CHECK_SNICHTAB 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_tda5  TYPE TDA5, "   
lv_i_bukrs  TYPE TDA5-BUKRS, "   
lv_snichtab_not_found  TYPE TDA5, "   
lv_e_tda5t  TYPE TDA5T, "   
lv_i_gsart  TYPE TDA5-GSART, "   
lv_i_snichtab  TYPE TDA5-SNICHTAB, "   
lv_i_spras  TYPE TDA5T-SPRAS. "   

  CALL FUNCTION 'LOAN_CHECK_SNICHTAB'  "Loans: Check Reason for Non-Acceptance Indicator
    EXPORTING
         I_BUKRS = lv_i_bukrs
         I_GSART = lv_i_gsart
         I_SNICHTAB = lv_i_snichtab
         I_SPRAS = lv_i_spras
    IMPORTING
         E_TDA5 = lv_e_tda5
         E_TDA5T = lv_e_tda5t
    EXCEPTIONS
        SNICHTAB_NOT_FOUND = 1
. " LOAN_CHECK_SNICHTAB




ABAP code using 7.40 inline data declarations to call FM LOAN_CHECK_SNICHTAB

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 BUKRS FROM TDA5 INTO @DATA(ld_i_bukrs).
 
 
 
"SELECT single GSART FROM TDA5 INTO @DATA(ld_i_gsart).
 
"SELECT single SNICHTAB FROM TDA5 INTO @DATA(ld_i_snichtab).
 
"SELECT single SPRAS FROM TDA5T INTO @DATA(ld_i_spras).
 


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!