SAP OCS_PROCESS_PATCONT Function Module for









OCS_PROCESS_PATCONT is a standard ocs process patcont 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 ocs process patcont FM, simply by entering the name OCS_PROCESS_PATCONT into the relevant SAP transaction such as SE37 or SE38.

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



Function OCS_PROCESS_PATCONT 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 'OCS_PROCESS_PATCONT'"
EXPORTING
* IV_OCS_TOOL = "
* IV_SCENARIO = 'S' "
* IV_START_MODULE = 1 "
* IV_SAVE_AS = ' ' "

TABLES
IT_PATCONT = "
* ET_PATCONT = "

EXCEPTIONS
INCONSISTENT_START_OPTIONS = 1 WRONG_START_STEP = 2 INTERNAL_ERROR = 3
.



IMPORTING Parameters details for OCS_PROCESS_PATCONT

IV_OCS_TOOL -

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

IV_SCENARIO -

Data type: PAT01-SCENARIO
Default: 'S'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_START_MODULE -

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

IV_SAVE_AS -

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

TABLES Parameters details for OCS_PROCESS_PATCONT

IT_PATCONT -

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

ET_PATCONT -

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

EXCEPTIONS details

INCONSISTENT_START_OPTIONS -

Data type:
Optional: No
Call by Reference: Yes

WRONG_START_STEP -

Data type:
Optional: No
Call by Reference: Yes

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for OCS_PROCESS_PATCONT 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_it_patcont  TYPE STANDARD TABLE OF PATCONT, "   
lv_iv_ocs_tool  TYPE PAT10-OCS_TOOL, "   
lv_inconsistent_start_options  TYPE PAT10, "   
lt_et_patcont  TYPE STANDARD TABLE OF PATCONT, "   
lv_iv_scenario  TYPE PAT01-SCENARIO, "   'S'
lv_wrong_start_step  TYPE PAT01, "   
lv_internal_error  TYPE PAT01, "   
lv_iv_start_module  TYPE I, "   1
lv_iv_save_as  TYPE C. "   SPACE

  CALL FUNCTION 'OCS_PROCESS_PATCONT'  "
    EXPORTING
         IV_OCS_TOOL = lv_iv_ocs_tool
         IV_SCENARIO = lv_iv_scenario
         IV_START_MODULE = lv_iv_start_module
         IV_SAVE_AS = lv_iv_save_as
    TABLES
         IT_PATCONT = lt_it_patcont
         ET_PATCONT = lt_et_patcont
    EXCEPTIONS
        INCONSISTENT_START_OPTIONS = 1
        WRONG_START_STEP = 2
        INTERNAL_ERROR = 3
. " OCS_PROCESS_PATCONT




ABAP code using 7.40 inline data declarations to call FM OCS_PROCESS_PATCONT

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 OCS_TOOL FROM PAT10 INTO @DATA(ld_iv_ocs_tool).
 
 
 
"SELECT single SCENARIO FROM PAT01 INTO @DATA(ld_iv_scenario).
DATA(ld_iv_scenario) = 'S'.
 
 
 
DATA(ld_iv_start_module) = 1.
 
DATA(ld_iv_save_as) = ' '.
 


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!