cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI_COSTESTIMATE_ITEMIZATION output does not match with CK13N

0 Kudos

We are deveoping a custom report to fetch cost itemization data.

I'm using BAPI_COSTESTIMATE_ITEMIZATION to fetch itemization data. However, the output of some costs does not match with that of CK13N.

Question is there any calculation required on the output of

BAPI_COSTESTIMATE_ITEMIZATION values?

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member513101
Active Contributor
0 Kudos

Hi Gitesh,

First, get the material costing number from table MBEW field KALN1. Then check the costing run parameter with this costing number in table CKHS. populate the value to BAPI_COSTESTIMATE_ITEMIZATION.

BAPICOSTRE-REF_OBJECT = 0

BAPICOSTRE-CSTG_NUM = MBEW-KALN1

BAPICOSTRE-CSTG_TYPE = get from CKHS

BAPICOSTRE-CSTG_DATE = get from CKHS

BAPICOSTRE-VERSION = get from CKHS

BAPICOSTRE-VLTN_VRNT = get from CKHS

BAPICOSTRE-ENTER_MAN = get from CKHS

You should able to get the same value as CK13N. This field CCODE_CURRENCY_TOTAL_VALUE is the total value in company code currency

Thanks