SAP EXIT_SAPLARFC_001 Function Module for Asynchronous RFC: Parameter Settings









EXIT_SAPLARFC_001 is a standard exit saplarfc 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 Asynchronous RFC: Parameter Settings 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 saplarfc 001 FM, simply by entering the name EXIT_SAPLARFC_001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XABP
Program Name: SAPLXABP
Main Program:
Appliation area:
Release date: 18-May-1995
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPLARFC_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_SAPLARFC_001'"Asynchronous RFC: Parameter Settings
EXPORTING
DESTINATION = "Name of Connection

IMPORTING
DELETEDATE = "Deletion Date
DELETETIME = "Deletion Time
NO_OF_RETRIES = "Number of Retries
DELAY_TO_NEWSTART = "Interval Between Repeat Attempts (in Minutes)
SUPPRESS_BATCH_JOBS = "Suppress Job Scheduling Despite Connection Error
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
API_CHECK_TID
API_CLEAR_TID
API_CREATE_TID
API_ENQUEUE_TID
ARFC_BP_REQUEST
ARFC_CHECK_DEST_NAME_OUTBOUND
ARFC_CREATE_TID
ARFC_DEL_LUW_WITH_VB_REQUESTS
ARFC_DEST_CONFIRM
ARFC_END_TRANSACTION
ARFC_END_V2
ARFC_END_VB
ARFC_GET_TID
ARFC_INIT
ARFC_MAIL_REPLY
ARFC_MAIL_SHIP
ARFC_RUN
ARFC_RUN_NOWAIT
ARFC_RUN_ON_SERVER
ID_OF_BACKGROUNDTASK Get Transactional RFC ID
QRFC_DATA_MODIFICATION_END
QRFC_DATA_MODIFICATION_START
QRFC_GET_CALL_SEQUENCE
QRFC_SET_CALL_SEQUENCE
START_OF_BACKGROUNDTASK Set Start Date/Time for Transactional RFC
STATUS_OF_BACKGROUNDTASK Get status of transactional RFC
TRFC_GET_NONE_DESTINATION
TRFC_INIT_QNAME_LIST
TRFC_INIT_QRCV_LIST
TRFC_NO_WAIT_FOR_UPDATE
TRFC_QRCVTID_DELETE
TRFC_QRCVTID_READ
TRFC_QUEUE_INITIALIZE
TRFC_SET_BACKGROUND_SEQUENCE
TRFC_SET_LOCAL_QIN
TRFC_SET_LOCAL_SAVED_QIN
TRFC_SET_QIN_NAME_LIST
TRFC_SET_QIN_PROPERTIES
TRFC_SET_QOUT_COUNTER
TRFC_SET_QUEUE_NAME
TRFC_SET_QUEUE_NAME_LIST
TRFC_SET_QUEUE_RECEIVER_LIST
TRFC_SYSLOAD_BP
TRFC_SYSLOAD_HANDLING

IMPORTING Parameters details for EXIT_SAPLARFC_001

DESTINATION - Name of Connection

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

EXPORTING Parameters details for EXIT_SAPLARFC_001

DELETEDATE - Deletion Date

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

DELETETIME - Deletion Time

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

NO_OF_RETRIES - Number of Retries

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

DELAY_TO_NEWSTART - Interval Between Repeat Attempts (in Minutes)

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

SUPPRESS_BATCH_JOBS - Suppress Job Scheduling Despite Connection Error

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

Copy and paste ABAP code example for EXIT_SAPLARFC_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_deletedate  TYPE TBTCJOB-SDLSTRTDT, "   
lv_destination  TYPE ARFCSSTATE-ARFCDEST, "   
lv_deletetime  TYPE TBTCJOB-SDLSTRTTM, "   
lv_no_of_retries  TYPE ARFCSSTATE-ARFCRETRYS, "   
lv_delay_to_newstart  TYPE I, "   
lv_suppress_batch_jobs  TYPE C. "   

  CALL FUNCTION 'EXIT_SAPLARFC_001'  "Asynchronous RFC: Parameter Settings
    EXPORTING
         DESTINATION = lv_destination
    IMPORTING
         DELETEDATE = lv_deletedate
         DELETETIME = lv_deletetime
         NO_OF_RETRIES = lv_no_of_retries
         DELAY_TO_NEWSTART = lv_delay_to_newstart
         SUPPRESS_BATCH_JOBS = lv_suppress_batch_jobs
. " EXIT_SAPLARFC_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLARFC_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 SDLSTRTDT FROM TBTCJOB INTO @DATA(ld_deletedate).
 
"SELECT single ARFCDEST FROM ARFCSSTATE INTO @DATA(ld_destination).
 
"SELECT single SDLSTRTTM FROM TBTCJOB INTO @DATA(ld_deletetime).
 
"SELECT single ARFCRETRYS FROM ARFCSSTATE INTO @DATA(ld_no_of_retries).
 
 
 


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!