I want to use the BAPI BAPI_CONVERSION_EXT2INT1 to convert external to internal WBS element numbers, but don't know how to fill its parameters for this.
Yes, I know I can create Z-BAPIs of other internal BAPIs to achieve this but I need to know how to use BAPI_CONVERSION_EXT2INT1 specifically, so I don't need any Z-BAPIs anymore the next time a customer wants to use that part of our software.
If you just know about BAPI_CONVERSION_EXT2INT or BBP_CONVERSION_EXT2INT you are welcome, too (they seem to be identical anyway).
THIS WAS SOLVED NOW!
Also you are legally required to upvote @sandra-rossi's answer below before continuing to read.
With BAPI_CONVERSION_INT2EXT1:
BAPI_CONVERSION_INT2EXT1 bapi = new BAPI_CONVERSION_INT2EXT1(destination);
SAPTable<BAPICONVRS> tblDATA = bapi.getDATAs();
BAPICONVRS data = tblDATA.newItem();
data.setOBJTYPE("BUS2031001");
data.setMETHOD("GetDetailBos");
data.setPARAMETER("QuotationHeader");
data.setFIELD("WBS_ELEM");
data.setINT_FORMAT("102882");
bapi.execute();
I get:
EXT_FORMAT=REP_S01588 0001
And vice versa, with BAPI_CONVERSION_EXT2INT1:
BAPI_CONVERSION_EXT2INT1 bapi = new BAPI_CONVERSION_EXT2INT1 (destination);
SAPTable<BAPICONVRS> tblDATA = bapi.getDATAs();
BAPICONVRS data = tblDATA.newItem();
data.setOBJTYPE("BUS2031001");
data.setMETHOD("GetDetailBos");
data.setPARAMETER("QuotationHeader");
data.setFIELD("WBS_ELEM");
data.setEXT_FORMAT("REP_S01588 0001");
bapi.execute();
I get:
INT_FORMAT=102882
TL;DR Apologies for the length of the answer. If you want it short, there is an ABAP program which will give you the BAPI parameter values corresponding to various criteria (like
VBAP-PS_PSP_NR
), in the chapter "How to determine the parameters for BAPI_CONVERSION_INT2EXT1 and BAPI_CONVERSION_EXT2INT1 → 1) If you don't know the Business Object Type".Introduction
BAPI is part of the Business Object Type concept (
SWO1
transaction code).BAPI_CONVERSION_EXT2INT1
is closely integrated with the BO concept, and is originally meant to be called either before or after calling a "main" BAPI function module. There are many parameters, so you need to understand the BO concept I try to quickly explain hereafter.Let's suppose you are given the Internal value of a WBS Project and you want to get its WBS Elements. You also want to obtain both the External values (the value which is shown to the users on the screens) and Internal values (the value which is stored in the database).
The main BAPI function module to get these details is
BAPI_PROJECT_GETINFO
which is intended to receive the External value of the Project ID (although the Internal value usually works too), and it returns the External values of its WBS Elements.The logic of the program will be:
BAPI_PROJECT_GETINFO
You may obtain the External and Internal values by calling
BAPI_CONVERSION_INT2EXT1
(Internal to External) andBAPI_CONVERSION_EXT2INT1
(External to Internal), before or after calling the main BAPI function module, or even for scenarios without one.Their parameter values are easy to find if you know the BO type corresponding to the BAPI function used (e.g.
BUS2054
forBAPI_PROJECT_GETINFO
), but difficult otherwise (hence the question) and in that case the solution is explained in the next chapter.For information, the transaction code
SE16N
orS416N
can be used to see the external and internal values:How to determine the parameters for
BAPI_CONVERSION_INT2EXT1
andBAPI_CONVERSION_EXT2INT1
1) If you don't know the Business Object Type
Run the ABAP program below. Various input are possible, e.g. table
VBAP
and columnPS_PSP_PNR
, or tablePRPS
and columnPSPNR
, or data elementPS_PSP_PNR
, or domainPS_POSNR
. All are equivalent and give the same result.Here are the screen field values to find parameters of
BAPI_CONVERSION_INT2EXT1
to get the external value from the internal value00000106
of the columnPS_PSP_PNR
of the tableVBAP
(note that theS_OBJTYP
field is optional and has been set only to simplify the result):Here is the result (each row is one possibility of BAPI parameter values and the BAPI parameters are grouped in the left columns):
It means that
BAPI_CONVERSION_INT2EXT1
may be called for instance with these parameters:2) If you know the Business Object Type
The diagram sequence below shows the screenshots of
SWO1
transaction code.First, you need to find the business object type corresponding to the WBS Project via the search help (
F4
), which isBUS2054
.The BAPI method name is
GetInfo
(which corresponds toBAPI_PROJECT_GETINFO
if you look into the details of the method).The parameters you need are
ProjectDefinition
andEWbsElementTable
.By looking at the details of the parameters, you may know if it's a single value/no compound fields (
ProjectDefinition
) or a structure or table made of many fields (EWbsElementTable
).You may obtain the External value of the WBS Element in the field
WBS_ELEMENT
of the parameterEWbsElementTable
.Example of ABAP implementation with both
BAPI_CONVERSION_INT2EXT1
andBAPI_CONVERSION_EXT2INT1
Now that you know all the technical names, you may create the program. I hope the explanations given above are sufficient to understand the program.
Output:
NB 1: direct call of
BAPI_CONVERSION_INT2EXT1
viaSE37
:NB 2: WBS = Work Breakdown Structure, and is part of the PS (Project System) module of SAP ERP and S/4HANA software.