SAP FMCO_CHECK_OBJECT Function Module for NOTRANSL: Bitte nicht mehr verwenden !!!!!!!!!!!!!!!!









FMCO_CHECK_OBJECT is a standard fmco check object 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: Bitte nicht mehr verwenden !!!!!!!!!!!!!!!! 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 fmco check object FM, simply by entering the name FMCO_CHECK_OBJECT into the relevant SAP transaction such as SE37 or SE38.

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



Function FMCO_CHECK_OBJECT 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 'FMCO_CHECK_OBJECT'"NOTRANSL: Bitte nicht mehr verwenden !!!!!!!!!!!!!!!!
EXPORTING
* I_KOKRS = "Controlling Area
* I_BUKRS = "Company Code
* I_VBELN = "Sales Document
* I_POSNR = "Sales Document Item
* I_IMKEY = "Internal Key for Real Estate Object
* I_DABRZ = "Reference Date for Settlement
* I_POSID = "Work Breakdown Structure Element (WBS Element)
* I_PROJK = "Work Breakdown Structure Element (WBS Element)
* I_NPLNR = "Network Number for Account Assignment
* I_AUFPL = "Routing number of operations in the order
* I_APLZL = "Internal counter
* I_AUFNR = "Order Number
* I_KOSTL = "Cost Center
* I_DUMMY = "Checkbox

IMPORTING
E_OBJNR = "Object number
E_WAERS = "Order Currency
.



IMPORTING Parameters details for FMCO_CHECK_OBJECT

I_KOKRS - Controlling Area

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

I_BUKRS - Company Code

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

I_VBELN - Sales Document

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

I_POSNR - Sales Document Item

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

I_IMKEY - Internal Key for Real Estate Object

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

I_DABRZ - Reference Date for Settlement

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

I_POSID - Work Breakdown Structure Element (WBS Element)

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

I_PROJK - Work Breakdown Structure Element (WBS Element)

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

I_NPLNR - Network Number for Account Assignment

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

I_AUFPL - Routing number of operations in the order

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

I_APLZL - Internal counter

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

I_AUFNR - Order Number

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

I_KOSTL - Cost Center

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

I_DUMMY - Checkbox

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

EXPORTING Parameters details for FMCO_CHECK_OBJECT

E_OBJNR - Object number

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

E_WAERS - Order Currency

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

Copy and paste ABAP code example for FMCO_CHECK_OBJECT 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_e_objnr  TYPE FMBP-OBJNR, "   
lv_i_kokrs  TYPE FMBP-KOKRS, "   
lv_i_bukrs  TYPE COFP-BUKRS, "   
lv_i_vbeln  TYPE IONRA-VBELN, "   
lv_i_posnr  TYPE IONRA-POSNR, "   
lv_i_imkey  TYPE FMBP-IMKEY, "   
lv_i_dabrz  TYPE FMBP-DABRZ, "   
lv_e_waers  TYPE AUFK-WAERS, "   
lv_i_posid  TYPE PRPS-POSID, "   
lv_i_projk  TYPE FMBP-PROJK, "   
lv_i_nplnr  TYPE FMBP-NPLNR, "   
lv_i_aufpl  TYPE FMBP-AUFPL, "   
lv_i_aplzl  TYPE FMBP-APLZL, "   
lv_i_aufnr  TYPE FMBP-AUFNR, "   
lv_i_kostl  TYPE EKBP-KOSTL, "   
lv_i_dummy  TYPE FMDY-XFELD. "   

  CALL FUNCTION 'FMCO_CHECK_OBJECT'  "NOTRANSL: Bitte nicht mehr verwenden !!!!!!!!!!!!!!!!
    EXPORTING
         I_KOKRS = lv_i_kokrs
         I_BUKRS = lv_i_bukrs
         I_VBELN = lv_i_vbeln
         I_POSNR = lv_i_posnr
         I_IMKEY = lv_i_imkey
         I_DABRZ = lv_i_dabrz
         I_POSID = lv_i_posid
         I_PROJK = lv_i_projk
         I_NPLNR = lv_i_nplnr
         I_AUFPL = lv_i_aufpl
         I_APLZL = lv_i_aplzl
         I_AUFNR = lv_i_aufnr
         I_KOSTL = lv_i_kostl
         I_DUMMY = lv_i_dummy
    IMPORTING
         E_OBJNR = lv_e_objnr
         E_WAERS = lv_e_waers
. " FMCO_CHECK_OBJECT




ABAP code using 7.40 inline data declarations to call FM FMCO_CHECK_OBJECT

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 OBJNR FROM FMBP INTO @DATA(ld_e_objnr).
 
"SELECT single KOKRS FROM FMBP INTO @DATA(ld_i_kokrs).
 
"SELECT single BUKRS FROM COFP INTO @DATA(ld_i_bukrs).
 
"SELECT single VBELN FROM IONRA INTO @DATA(ld_i_vbeln).
 
"SELECT single POSNR FROM IONRA INTO @DATA(ld_i_posnr).
 
"SELECT single IMKEY FROM FMBP INTO @DATA(ld_i_imkey).
 
"SELECT single DABRZ FROM FMBP INTO @DATA(ld_i_dabrz).
 
"SELECT single WAERS FROM AUFK INTO @DATA(ld_e_waers).
 
"SELECT single POSID FROM PRPS INTO @DATA(ld_i_posid).
 
"SELECT single PROJK FROM FMBP INTO @DATA(ld_i_projk).
 
"SELECT single NPLNR FROM FMBP INTO @DATA(ld_i_nplnr).
 
"SELECT single AUFPL FROM FMBP INTO @DATA(ld_i_aufpl).
 
"SELECT single APLZL FROM FMBP INTO @DATA(ld_i_aplzl).
 
"SELECT single AUFNR FROM FMBP INTO @DATA(ld_i_aufnr).
 
"SELECT single KOSTL FROM EKBP INTO @DATA(ld_i_kostl).
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_i_dummy).
 


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!