2014 Jun 12 3:23 PM
Hi Experts,
I am using method CMD_EI_API=>MAINTAIN_BAPI to create/update customer. I could not find the parameters/fields in the deep structure to update KNVI data. Please suggest the solution.
Regards,
Ashok
2014 Jul 17 2:10 PM
Dear Ashok,
possibly structure CMDS_EI_TAX_IND_KEY
Greetings
Winfried
2015 Aug 10 7:10 PM
DATA: ls_tax_data TYPE cmds_ei_tax_ind,
lt_tax_data TYPE cmd_ei_tax_ind_t.
" Adding tax_data
ls_tax_data-task = 'I'.
ls_tax_data-data_key-aland = 'NO'.
ls_tax_data-data_key-tatyp = 'MWST'.
ls_tax_data-data-taxkd = '1'.
ls_tax_data-datax-taxkd = 'X'.
APPEND ls_tax_data TO lt_tax_data.
ls_customer-central_data-tax_ind-tax_ind = lt_tax_data.
2024 Apr 03 8:19 AM
Hi Former Member,
I have tried like that, but tax Classification in BP is still not inserted. Are there any addition to do before those codes?
Thanks. K
2024 Apr 05 1:09 PM
How did you fill IS_MASTER_DATA-CUSTOMERS[]-CENTRAL_DATA-TAX_IND-TAX_IND[] ?
2024 Apr 08 4:51 AM
I found the issue, some ALAND - TATYP will not shown when running this API. I tried another ALAND - TATYP and it successfully updated