2012 Aug 22 6:08 PM
hi everyone,
I want to change anla-ivdat and i´m using 'BAPI_FIXEDASSET_CHANGE'. But after done 'BAPI_TRANSACTION_COMMIT' it doesn't change that field.
...
inventory-date = sy-datum.
inventory-date = 'X'.
CALL FUNCTION 'BAPI_FIXEDASSET_CHANGE'
EXPORTING
companycode = ls_anla-bukrs
asset = ls_anla-anln1
subnumber = ls_anla-anln2
inventory = inventory
inventoryx = inventoryx
.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait= 'X'
.
Any ideias?
Thanks.
2012 Aug 23 1:07 PM
2012 Aug 23 1:19 PM
Hi
May be you are missing some parameters by which you are data is not getting updated.
2012 Oct 16 4:57 PM
Hi,
Don't know if you just missed it but try to input assign the values to the correct tables:
inventoryx-date = 'X'.
... instead of ...
inventory-date = 'X'.
Regards,
Bruno