Dear all
I am getting following error when i am using the bapi bapi_saleorder_change.
ERROR IN VBAPKOM 000001 --------> for line item 00001
Internal error: 000006, 000006, CFG_IS_INCONSISTENT_OR_INCOMPLETE --------> for line item 00006
my coding part:
ls_order_header_inx-updateflag = 'U'.
* Update the configuration
CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
EXPORTING
salesdocument = i_vbelnx
order_header_inx = ls_order_header_inx
behave_when_error = 'P'
TABLES
return = lt_return
order_item_in = lt_item
order_item_inx = lt_item_x
order_cfgs_ref = lt_cfgs_refx
order_cfgs_inst = lt_cfgs_instx
order_cfgs_value = lt_cfgs_valuex
if there is no value in the tables lt_item , lt_item_x, lt_cfgs_refx , lt_cfgs_instx , lt_cfgs_valuex im not getting any error , when ever i am passing values in these tables im getting above errors.
How to rectify this
thanks
.