SAP EXIT_SAPLAIA1_001 Function Module for Transfer of Activity Category to Customer Exit









EXIT_SAPLAIA1_001 is a standard exit saplaia1 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Transfer of Activity Category to Customer Exit 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 exit saplaia1 001 FM, simply by entering the name EXIT_SAPLAIA1_001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XAI1
Program Name: SAPLXAI1
Main Program:
Appliation area: A
Release date: 01-Jan-1970
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLAIA1_001 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 'EXIT_SAPLAIA1_001'"Transfer of Activity Category to Customer Exit
EXPORTING
I_AKTYP = "Activity Category

TABLES
* ET_REQUIRED = "Tab Pgs in Master Data: Transfer Table for Groups to be Excluded
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
AIA1_AUTHORITY_CHECK_GENERELL
AIA1_CALL_WIRE
AIA1_CHANGE_AKOSTL
AIA1_CHECK_APPROVAL_ACTIVE
AIA1_CHECK_DELETE_VARIANT
AIA1_CHECK_PROJ_CODE_CHANGE
AIA1_COPARE_AND_ADJUST_KOSTL
AIA1_FIND_VARNT_NUMBER
AIA1_GET_CALC_DATA_FROM_AIA9
AIA1_GET_DATA_FOR_EXIT
AIA1_GET_DATA_FOR_PLANNING
AIA1_GET_IMAVZ_FOR_VARNT
AIA1_GET_INVPROZ_FOR_AFASIM
AIA1_GET_MASTERDATA_DIALOG
AIA1_GET_OKCODE_FOR_AIA9
AIA1_GET_OKCODE_FROM_AIA9
AIA1_GET_USERDATA_FOR_EXIT
AIA1_GET_XVERW_FROM_AIA9
AIA1_INITIALIZE_BUFFERS
AIA1_MANDATORY_ASSIGNMENT_CHK
AIA1_MASS_CHANGE_SINGLE
AIA1_MASS_SWITCH_MASSNAHME
AIA1_MUSSFELDVERPROBUNG_EXTERN
AIA1_PARTNERS_FOR_APPROVAL
AIA1_PARTNERS_FOR_APPROVAL_DIA
AIA1_PARTNER_DELETE
AIA1_PARTNER_DELETE_VB
AIA1_READ_TAIF1
AIA1_READ_TKA09
AIA1_READ_VERSIONS_APPROVAL
AIA1_READ_VERSIONS_COAREA
AIA1_REQUEST_COPY_VARNT
AIA1_REQUEST_COPY_VARNT_UPDATE
AIA1_REQUEST_STATUS_CHANGE
AIA1_SH_AUTHORITY_CHECK
AIA1_WF_APPROVAL_CHECK
EXPORT_TO_SHARED_BUFFER
GET_APPREQ_SETTINGS
IREQUEST_GET_MAXINDEX
IREQUEST_GET_SINGLE
REQUEST_READ_SINGLE_WITHVARNT

IMPORTING Parameters details for EXIT_SAPLAIA1_001

I_AKTYP - Activity Category

Data type: T020-AKTYP
Optional: No
Call by Reference: Yes

TABLES Parameters details for EXIT_SAPLAIA1_001

ET_REQUIRED - Tab Pgs in Master Data: Transfer Table for Groups to be Excluded

Data type: SAMLAY01
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for EXIT_SAPLAIA1_001 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_i_aktyp  TYPE T020-AKTYP, "   
lt_et_required  TYPE STANDARD TABLE OF SAMLAY01. "   

  CALL FUNCTION 'EXIT_SAPLAIA1_001'  "Transfer of Activity Category to Customer Exit
    EXPORTING
         I_AKTYP = lv_i_aktyp
    TABLES
         ET_REQUIRED = lt_et_required
. " EXIT_SAPLAIA1_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLAIA1_001

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 AKTYP FROM T020 INTO @DATA(ld_i_aktyp).
 
 


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!