SAP EXT_SDL_JOB_PARAMS_GET Function Module for









EXT_SDL_JOB_PARAMS_GET is a standard ext sdl job params get 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 ext sdl job params get FM, simply by entering the name EXT_SDL_JOB_PARAMS_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: SXBP_EXT_SDL
Program Name: SAPLSXBP_EXT_SDL
Main Program: SAPLSXBP_EXT_SDL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function EXT_SDL_JOB_PARAMS_GET 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 'EXT_SDL_JOB_PARAMS_GET'"
EXPORTING
SESSION_ID = "
JOBID = "
GET_CHILDREN = "
GET_PARAMETERS = "
GET_STEPS_TREE = "
GET_EVENTS = "
GET_NOTES = "
GET_START_OPTIONS = "

IMPORTING
RETURN = "
STATUS = "
QUEUE = "
USER = "
PRIORITY = "
JOB_RC = "
CHILDREN_CNT = "
CHILDREN = "
STATUS_NOTIFIACTION = "
CREATE_TIMESTAMP = "
PARENT_JOBID = "
STEPS_TREE = "
CONTEXT_ID = "
OPERATOR_MESSAGES_AVAILABLE = "
OUTPUT_AVAILABLE = "
EVENTS_AVAILABLE = "
NOTES_AVAILABLE = "
DEF_NAME = "
DEF_PARAMETERS = "
JOB_PARAMETERS = "
START_OPTIONS = "
NOTES = "
WAIT_EVENTS = "
RAISE_EVENTS = "
.



IMPORTING Parameters details for EXT_SDL_JOB_PARAMS_GET

SESSION_ID -

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

JOBID -

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

GET_CHILDREN -

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

GET_PARAMETERS -

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

GET_STEPS_TREE -

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

GET_EVENTS -

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

GET_NOTES -

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

GET_START_OPTIONS -

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

EXPORTING Parameters details for EXT_SDL_JOB_PARAMS_GET

RETURN -

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

STATUS -

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

QUEUE -

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

USER -

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

PRIORITY -

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

JOB_RC -

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

CHILDREN_CNT -

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

CHILDREN -

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

STATUS_NOTIFIACTION -

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

CREATE_TIMESTAMP -

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

PARENT_JOBID -

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

STEPS_TREE -

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

CONTEXT_ID -

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

OPERATOR_MESSAGES_AVAILABLE -

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

OUTPUT_AVAILABLE -

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

EVENTS_AVAILABLE -

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

NOTES_AVAILABLE -

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

DEF_NAME -

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

DEF_PARAMETERS -

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

JOB_PARAMETERS -

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

START_OPTIONS -

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

NOTES -

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

WAIT_EVENTS -

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

RAISE_EVENTS -

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

Copy and paste ABAP code example for EXT_SDL_JOB_PARAMS_GET 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_return  TYPE BTC_S_RETURN, "   
lv_session_id  TYPE BTC_EXT_SDL_SESSION_ID, "   
lv_status  TYPE BTC_EXT_JOB_STATUS, "   
lv_queue  TYPE BTC_EXT_SDL_QUEUE, "   
lv_user  TYPE BTC_EXT_SDL_USER, "   
lv_priority  TYPE BTC_EXT_JOB_PRIORITY, "   
lv_job_rc  TYPE BTC_EXT_SDL_INT, "   
lv_children_cnt  TYPE BTC_EXT_SDL_INT, "   
lv_children  TYPE BTC_T_EXT_JOB, "   
lv_status_notifiaction  TYPE BOOLEAN, "   
lv_create_timestamp  TYPE BTC_EXT_PAR_VALUE, "   
lv_parent_jobid  TYPE BTC_EXT_JOB_ID, "   
lv_jobid  TYPE BTC_EXT_JOB_ID, "   
lv_steps_tree  TYPE BTC_XMLDATA, "   
lv_context_id  TYPE BTC_EXT_OBJ_ID, "   
lv_operator_messages_available  TYPE BOOLEAN, "   
lv_output_available  TYPE BOOLEAN, "   
lv_events_available  TYPE BOOLEAN, "   
lv_notes_available  TYPE BOOLEAN, "   
lv_def_name  TYPE BTC_EXT_DEF_NAME, "   
lv_get_children  TYPE BOOLEAN, "   
lv_def_parameters  TYPE BTC_T_EXT_PAR, "   
lv_get_parameters  TYPE BOOLEAN, "   
lv_get_steps_tree  TYPE BOOLEAN, "   
lv_job_parameters  TYPE BTC_T_EXT_PAR, "   
lv_get_events  TYPE BOOLEAN, "   
lv_start_options  TYPE BTC_T_EXT_PAR, "   
lv_notes  TYPE BTC_T_EXT_JOB_NOTE, "   
lv_get_notes  TYPE BOOLEAN, "   
lv_wait_events  TYPE BTC_T_EXT_WAIT_EVENT, "   
lv_get_start_options  TYPE BOOLEAN, "   
lv_raise_events  TYPE BTC_T_EXT_RAISE_EVENT. "   

  CALL FUNCTION 'EXT_SDL_JOB_PARAMS_GET'  "
    EXPORTING
         SESSION_ID = lv_session_id
         JOBID = lv_jobid
         GET_CHILDREN = lv_get_children
         GET_PARAMETERS = lv_get_parameters
         GET_STEPS_TREE = lv_get_steps_tree
         GET_EVENTS = lv_get_events
         GET_NOTES = lv_get_notes
         GET_START_OPTIONS = lv_get_start_options
    IMPORTING
         RETURN = lv_return
         STATUS = lv_status
         QUEUE = lv_queue
         USER = lv_user
         PRIORITY = lv_priority
         JOB_RC = lv_job_rc
         CHILDREN_CNT = lv_children_cnt
         CHILDREN = lv_children
         STATUS_NOTIFIACTION = lv_status_notifiaction
         CREATE_TIMESTAMP = lv_create_timestamp
         PARENT_JOBID = lv_parent_jobid
         STEPS_TREE = lv_steps_tree
         CONTEXT_ID = lv_context_id
         OPERATOR_MESSAGES_AVAILABLE = lv_operator_messages_available
         OUTPUT_AVAILABLE = lv_output_available
         EVENTS_AVAILABLE = lv_events_available
         NOTES_AVAILABLE = lv_notes_available
         DEF_NAME = lv_def_name
         DEF_PARAMETERS = lv_def_parameters
         JOB_PARAMETERS = lv_job_parameters
         START_OPTIONS = lv_start_options
         NOTES = lv_notes
         WAIT_EVENTS = lv_wait_events
         RAISE_EVENTS = lv_raise_events
. " EXT_SDL_JOB_PARAMS_GET




ABAP code using 7.40 inline data declarations to call FM EXT_SDL_JOB_PARAMS_GET

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!