SAP OBJ_PROCESSING_SET_PARAMETERS Function Module for









OBJ_PROCESSING_SET_PARAMETERS is a standard obj processing set parameters 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 obj processing set parameters FM, simply by entering the name OBJ_PROCESSING_SET_PARAMETERS into the relevant SAP transaction such as SE37 or SE38.

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



Function OBJ_PROCESSING_SET_PARAMETERS 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 'OBJ_PROCESSING_SET_PARAMETERS'"
EXPORTING
* I_KASS_IMPORT = "
* RESULT_TEXT_NAME = "
* STAT_OK = 99999999 "
* STAT_OK_ZERO = 99999999 "
* STAT_NOT_RELEVANT = 99999999 "
* STAT_NOT_RELEVANT_STATE = 99999999 "
* STAT_NOT_PROCESSED = 99999999 "
* STAT_MINOR_ERROR = 99999999 "
* STAT_FOLLOWUP_ERROR = 99999999 "
* STAT_HIERARCHY_ERROR = 99999999 "
* STAT_ERROR = 99999999 "
* I_MODE_ROLLNAME = "
* STAT_OK_ZERO_ROLL = "
* STAT_NOT_RELEVANT_ROLL = "
* STAT_NOT_RELEVANT_STATE_ROLL = "
* STAT_NOT_PROCESSED_ROLL = "
* STAT_MINOR_ERROR_ROLL = "
* STAT_FOLLOWUP_ERROR_ROLL = "
* STAT_HIERARCHY_ERROR_ROLL = "
* STAT_ERROR_ROLL = "
* I_MODE_TEXT = "
* I_TEST = '99' "Processing Mode
* MSG_COUNTER_I = "
* MSG_COUNTER_W = "
* MSG_COUNTER_E = "
* MSG_COUNTER_A = "
* MSG_APPLID = "

CHANGING
LOG_DATA = "
.



IMPORTING Parameters details for OBJ_PROCESSING_SET_PARAMETERS

I_KASS_IMPORT -

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

RESULT_TEXT_NAME -

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

STAT_OK -

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

STAT_OK_ZERO -

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

STAT_NOT_RELEVANT -

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

STAT_NOT_RELEVANT_STATE -

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

STAT_NOT_PROCESSED -

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

STAT_MINOR_ERROR -

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

STAT_FOLLOWUP_ERROR -

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

STAT_HIERARCHY_ERROR -

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

STAT_ERROR -

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

I_MODE_ROLLNAME -

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

STAT_OK_ZERO_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_NOT_RELEVANT_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_NOT_RELEVANT_STATE_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_NOT_PROCESSED_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_MINOR_ERROR_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_FOLLOWUP_ERROR_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_HIERARCHY_ERROR_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

STAT_ERROR_ROLL -

Data type: DCOBJDEF-NAME
Optional: Yes
Call by Reference: Yes

I_MODE_TEXT -

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

I_TEST - Processing Mode

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

MSG_COUNTER_I -

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

MSG_COUNTER_W -

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

MSG_COUNTER_E -

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

MSG_COUNTER_A -

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

MSG_APPLID -

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

CHANGING Parameters details for OBJ_PROCESSING_SET_PARAMETERS

LOG_DATA -

Data type: OBJ_LOG_DATA
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for OBJ_PROCESSING_SET_PARAMETERS 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_log_data  TYPE OBJ_LOG_DATA, "   
lv_i_kass_import  TYPE C, "   
lv_result_text_name  TYPE DOKU_OBJ, "   
lv_stat_ok  TYPE DOKU_OBJ, "   99999999
lv_stat_ok_zero  TYPE DOKU_OBJ, "   99999999
lv_stat_not_relevant  TYPE DOKU_OBJ, "   99999999
lv_stat_not_relevant_state  TYPE DOKU_OBJ, "   99999999
lv_stat_not_processed  TYPE DOKU_OBJ, "   99999999
lv_stat_minor_error  TYPE DOKU_OBJ, "   99999999
lv_stat_followup_error  TYPE DOKU_OBJ, "   99999999
lv_stat_hierarchy_error  TYPE DOKU_OBJ, "   99999999
lv_stat_error  TYPE DOKU_OBJ, "   99999999
lv_i_mode_rollname  TYPE DCOBJDEF-NAME, "   
lv_stat_ok_zero_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_not_relevant_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_not_relevant_state_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_not_processed_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_minor_error_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_followup_error_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_hierarchy_error_roll  TYPE DCOBJDEF-NAME, "   
lv_stat_error_roll  TYPE DCOBJDEF-NAME, "   
lv_i_mode_text  TYPE DCOBJDEF, "   
lv_i_test  TYPE DCOBJDEF, "   '99'
lv_msg_counter_i  TYPE DCOBJDEF, "   
lv_msg_counter_w  TYPE DCOBJDEF, "   
lv_msg_counter_e  TYPE DCOBJDEF, "   
lv_msg_counter_a  TYPE DCOBJDEF, "   
lv_msg_applid  TYPE CM_APLID. "   

  CALL FUNCTION 'OBJ_PROCESSING_SET_PARAMETERS'  "
    EXPORTING
         I_KASS_IMPORT = lv_i_kass_import
         RESULT_TEXT_NAME = lv_result_text_name
         STAT_OK = lv_stat_ok
         STAT_OK_ZERO = lv_stat_ok_zero
         STAT_NOT_RELEVANT = lv_stat_not_relevant
         STAT_NOT_RELEVANT_STATE = lv_stat_not_relevant_state
         STAT_NOT_PROCESSED = lv_stat_not_processed
         STAT_MINOR_ERROR = lv_stat_minor_error
         STAT_FOLLOWUP_ERROR = lv_stat_followup_error
         STAT_HIERARCHY_ERROR = lv_stat_hierarchy_error
         STAT_ERROR = lv_stat_error
         I_MODE_ROLLNAME = lv_i_mode_rollname
         STAT_OK_ZERO_ROLL = lv_stat_ok_zero_roll
         STAT_NOT_RELEVANT_ROLL = lv_stat_not_relevant_roll
         STAT_NOT_RELEVANT_STATE_ROLL = lv_stat_not_relevant_state_roll
         STAT_NOT_PROCESSED_ROLL = lv_stat_not_processed_roll
         STAT_MINOR_ERROR_ROLL = lv_stat_minor_error_roll
         STAT_FOLLOWUP_ERROR_ROLL = lv_stat_followup_error_roll
         STAT_HIERARCHY_ERROR_ROLL = lv_stat_hierarchy_error_roll
         STAT_ERROR_ROLL = lv_stat_error_roll
         I_MODE_TEXT = lv_i_mode_text
         I_TEST = lv_i_test
         MSG_COUNTER_I = lv_msg_counter_i
         MSG_COUNTER_W = lv_msg_counter_w
         MSG_COUNTER_E = lv_msg_counter_e
         MSG_COUNTER_A = lv_msg_counter_a
         MSG_APPLID = lv_msg_applid
    CHANGING
         LOG_DATA = lv_log_data
. " OBJ_PROCESSING_SET_PARAMETERS




ABAP code using 7.40 inline data declarations to call FM OBJ_PROCESSING_SET_PARAMETERS

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.

 
 
 
DATA(ld_stat_ok) = 99999999.
 
DATA(ld_stat_ok_zero) = 99999999.
 
DATA(ld_stat_not_relevant) = 99999999.
 
DATA(ld_stat_not_relevant_state) = 99999999.
 
DATA(ld_stat_not_processed) = 99999999.
 
DATA(ld_stat_minor_error) = 99999999.
 
DATA(ld_stat_followup_error) = 99999999.
 
DATA(ld_stat_hierarchy_error) = 99999999.
 
DATA(ld_stat_error) = 99999999.
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_i_mode_rollname).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_ok_zero_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_not_relevant_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_not_relevant_state_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_not_processed_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_minor_error_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_followup_error_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_hierarchy_error_roll).
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_stat_error_roll).
 
 
DATA(ld_i_test) = '99'.
 
 
 
 
 
 


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!