SAP BAPI_ADMGMTCOA_GETDETAIL Function Module for IS-M/AM: BAPI Read Contract









BAPI_ADMGMTCOA_GETDETAIL is a standard bapi admgmtcoa getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/AM: BAPI Read Contract 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 bapi admgmtcoa getdetail FM, simply by entering the name BAPI_ADMGMTCOA_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.

Function Group: JHBO_BUSISM012_BAPI
Program Name: SAPLJHBO_BUSISM012_BAPI
Main Program: SAPLJHBO_BUSISM012_BAPI
Appliation area:
Release date: 24-Jan-2002
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_ADMGMTCOA_GETDETAIL 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 'BAPI_ADMGMTCOA_GETDETAIL'"IS-M/AM: BAPI Read Contract
EXPORTING
COANUMBER = "Contract Number
* WITH_TEXTS = 'X' "Also read texts?

IMPORTING
HEADER = "IS-M: BAPI Structure for Contract Header

TABLES
* RETURN = "Return Parameters
* SCALE = "IS-M: BAPI Structure for Contract Scale
* PARTNER = "IS-M: BAPI Structure for Contract/BP Assignment
* REQUIREMENT = "IS-M: BAPI Structure for Contract Requirement
* EXTENSION_OUT = "Reference Structure for BAPI ExtensionIn/ExtensionOut Parameters
.



IMPORTING Parameters details for BAPI_ADMGMTCOA_GETDETAIL

COANUMBER - Contract Number

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

WITH_TEXTS - Also read texts?

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

EXPORTING Parameters details for BAPI_ADMGMTCOA_GETDETAIL

HEADER - IS-M: BAPI Structure for Contract Header

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

TABLES Parameters details for BAPI_ADMGMTCOA_GETDETAIL

RETURN - Return Parameters

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

SCALE - IS-M: BAPI Structure for Contract Scale

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

PARTNER - IS-M: BAPI Structure for Contract/BP Assignment

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

REQUIREMENT - IS-M: BAPI Structure for Contract Requirement

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

EXTENSION_OUT - Reference Structure for BAPI ExtensionIn/ExtensionOut Parameters

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

Copy and paste ABAP code example for BAPI_ADMGMTCOA_GETDETAIL 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_header  TYPE BAPIBUSISM012_HEAD, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_coanumber  TYPE BAPIBUSISM012_HEAD-COA_NUMBER, "   
lt_scale  TYPE STANDARD TABLE OF BAPIBUSISM012_SCALE, "   
lv_with_texts  TYPE BAPIFLAG, "   'X'
lt_partner  TYPE STANDARD TABLE OF BAPIBUSISM012_BP, "   
lt_requirement  TYPE STANDARD TABLE OF BAPIBUSISM012_REQ, "   
lt_extension_out  TYPE STANDARD TABLE OF BAPIPAREX. "   

  CALL FUNCTION 'BAPI_ADMGMTCOA_GETDETAIL'  "IS-M/AM: BAPI Read Contract
    EXPORTING
         COANUMBER = lv_coanumber
         WITH_TEXTS = lv_with_texts
    IMPORTING
         HEADER = lv_header
    TABLES
         RETURN = lt_return
         SCALE = lt_scale
         PARTNER = lt_partner
         REQUIREMENT = lt_requirement
         EXTENSION_OUT = lt_extension_out
. " BAPI_ADMGMTCOA_GETDETAIL




ABAP code using 7.40 inline data declarations to call FM BAPI_ADMGMTCOA_GETDETAIL

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 COA_NUMBER FROM BAPIBUSISM012_HEAD INTO @DATA(ld_coanumber).
 
 
DATA(ld_with_texts) = 'X'.
 
 
 
 


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!