SAP CO_BO_OPR_DIALOG_INFO Function Module for NOTRANSL: Dialogzusatzinformationen zum Vorgang aufbauen









CO_BO_OPR_DIALOG_INFO is a standard co bo opr dialog info SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Dialogzusatzinformationen zum Vorgang aufbauen 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 co bo opr dialog info FM, simply by entering the name CO_BO_OPR_DIALOG_INFO into the relevant SAP transaction such as SE37 or SE38.

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



Function CO_BO_OPR_DIALOG_INFO 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 'CO_BO_OPR_DIALOG_INFO'"NOTRANSL: Dialogzusatzinformationen zum Vorgang aufbauen
EXPORTING
* AFVGB_IMP = "
AFVGD_IMP = "
* FLG_CONV = ' ' "
* FLG_EXTR = ' ' "
* FLG_PROV = ' ' "
* FLG_QUAL = ' ' "
* FLG_STAT = ' ' "
* FLG_WORK = ' ' "Read Work Center
* STTAG = 00000000 "

IMPORTING
AFVGD_EXP = "
FLG_OVERFLOW = "
RC27F_EXP = "
RCR01_EXP = "Work center
.



IMPORTING Parameters details for CO_BO_OPR_DIALOG_INFO

AFVGB_IMP -

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

AFVGD_IMP -

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

FLG_CONV -

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

FLG_EXTR -

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

FLG_PROV -

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

FLG_QUAL -

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

FLG_STAT -

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

FLG_WORK - Read Work Center

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

STTAG -

Data type: RC27S-STTAG
Default: 00000000
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CO_BO_OPR_DIALOG_INFO

AFVGD_EXP -

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

FLG_OVERFLOW -

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

RC27F_EXP -

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

RCR01_EXP - Work center

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

Copy and paste ABAP code example for CO_BO_OPR_DIALOG_INFO 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_afvgb_imp  TYPE AFVGB, "   
lv_afvgd_exp  TYPE AFVGD, "   
lv_afvgd_imp  TYPE AFVGD, "   
lv_flg_overflow  TYPE RC27X-FLG_SEL, "   
lv_flg_conv  TYPE RC27X, "   SPACE
lv_rc27f_exp  TYPE RC27F, "   
lv_flg_extr  TYPE RC27F, "   SPACE
lv_rcr01_exp  TYPE RCR01, "   
lv_flg_prov  TYPE RCR01, "   SPACE
lv_flg_qual  TYPE RCR01, "   SPACE
lv_flg_stat  TYPE RCR01, "   SPACE
lv_flg_work  TYPE RCR01, "   SPACE
lv_sttag  TYPE RC27S-STTAG. "   00000000

  CALL FUNCTION 'CO_BO_OPR_DIALOG_INFO'  "NOTRANSL: Dialogzusatzinformationen zum Vorgang aufbauen
    EXPORTING
         AFVGB_IMP = lv_afvgb_imp
         AFVGD_IMP = lv_afvgd_imp
         FLG_CONV = lv_flg_conv
         FLG_EXTR = lv_flg_extr
         FLG_PROV = lv_flg_prov
         FLG_QUAL = lv_flg_qual
         FLG_STAT = lv_flg_stat
         FLG_WORK = lv_flg_work
         STTAG = lv_sttag
    IMPORTING
         AFVGD_EXP = lv_afvgd_exp
         FLG_OVERFLOW = lv_flg_overflow
         RC27F_EXP = lv_rc27f_exp
         RCR01_EXP = lv_rcr01_exp
. " CO_BO_OPR_DIALOG_INFO




ABAP code using 7.40 inline data declarations to call FM CO_BO_OPR_DIALOG_INFO

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 FLG_SEL FROM RC27X INTO @DATA(ld_flg_overflow).
 
DATA(ld_flg_conv) = ' '.
 
 
DATA(ld_flg_extr) = ' '.
 
 
DATA(ld_flg_prov) = ' '.
 
DATA(ld_flg_qual) = ' '.
 
DATA(ld_flg_stat) = ' '.
 
DATA(ld_flg_work) = ' '.
 
"SELECT single STTAG FROM RC27S INTO @DATA(ld_sttag).
DATA(ld_sttag) = 00000000.
 


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!