SAP AFASL_CHECK Function Module for









AFASL_CHECK is a standard afasl check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 afasl check FM, simply by entering the name AFASL_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function AFASL_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 'AFASL_CHECK'"
EXPORTING
* I_MESS_HANDLER_INTERN = "

TABLES
T_T090NA = "
T_T090NAZ = "
* T_T090ND = "
* T_T090NR = "
* T_T090NS = "
* T_T090NSG = "

EXCEPTIONS
ERROR_OCCURRED = 1
.



IMPORTING Parameters details for AFASL_CHECK

I_MESS_HANDLER_INTERN -

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

TABLES Parameters details for AFASL_CHECK

T_T090NA -

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

T_T090NAZ -

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

T_T090ND -

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

T_T090NR -

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

T_T090NS -

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

T_T090NSG -

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

EXCEPTIONS details

ERROR_OCCURRED -

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

Copy and paste ABAP code example for AFASL_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:
lt_t_t090na  TYPE STANDARD TABLE OF T090NA, "   
lv_error_occurred  TYPE T090NA, "   
lv_i_mess_handler_intern  TYPE T090NA, "   
lt_t_t090naz  TYPE STANDARD TABLE OF T090NAZ, "   
lt_t_t090nd  TYPE STANDARD TABLE OF T090ND, "   
lt_t_t090nr  TYPE STANDARD TABLE OF T090NR, "   
lt_t_t090ns  TYPE STANDARD TABLE OF T090NS, "   
lt_t_t090nsg  TYPE STANDARD TABLE OF T090NSG. "   

  CALL FUNCTION 'AFASL_CHECK'  "
    EXPORTING
         I_MESS_HANDLER_INTERN = lv_i_mess_handler_intern
    TABLES
         T_T090NA = lt_t_t090na
         T_T090NAZ = lt_t_t090naz
         T_T090ND = lt_t_t090nd
         T_T090NR = lt_t_t090nr
         T_T090NS = lt_t_t090ns
         T_T090NSG = lt_t_t090nsg
    EXCEPTIONS
        ERROR_OCCURRED = 1
. " AFASL_CHECK




ABAP code using 7.40 inline data declarations to call FM AFASL_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.

 
 
 
 
 
 
 
 


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!