Hi ALL,
Hi Thomas,
I am using BAPI "BAPI_QUOTATION_CREATEFROMDATA2" to create quotation.I have one question on Configuration part.
I am able to update configuration but I need MULTIPLE line for the same CHARECTERISTICS.
Below is the code.
Please notice the record of table " i_quotation_cfgs_value". I want to show TWO record for Char 'Z_COIL_THICKNESS' with value 0.2 and 0.3.Do I need to increment Instance ID or Confid ID or do I need fill table QUOTATION_CFGS_PART_OF.Please help.
CONSTANTS: conf_id TYPE char6 VALUE '000010', inst_id TYPE char8 VALUE '00000001'. w_quotation_schedules_in-req_qty = '5'. w_quotation_schedules_in-itm_number = '000010'. w_quotation_schedules_in-sched_line = 1. APPEND w_quotation_schedules_in TO i_quotation_schedules_in. CLEAR w_quotation_schedules_in. w_quotation_cfgs_ref-posex = '000010'. w_quotation_cfgs_ref-root_id = inst_id. w_quotation_cfgs_ref-config_id = conf_id. APPEND w_quotation_cfgs_ref TO i_quotation_cfgs_ref. w_quotation_cfgs_refinst-posex = '000010'. w_quotation_cfgs_refinst-config_id = conf_id. w_quotation_cfgs_refinst-inst_id = inst_id. APPEND w_quotation_cfgs_refinst TO i_quotation_cfgs_refinst. w_quotation_cfgs_value-config_id = conf_id . w_quotation_cfgs_value-inst_id = inst_id . w_quotation_cfgs_value-charc = 'Z_COIL_THICKNESS'. w_quotation_cfgs_value-value = '0.2'. APPEND w_quotation_cfgs_value TO i_quotation_cfgs_value. CLEAR w_quotation_cfgs_value. w_quotation_cfgs_value-config_id = conf_id . w_quotation_cfgs_value-inst_id = inst_id . w_quotation_cfgs_value-charc = 'Z_COIL_THICKNESS'. w_quotation_cfgs_value-value = '0.3'. APPEND w_quotation_cfgs_value TO i_quotation_cfgs_value. CLEAR w_quotation_cfgs_value.
Code Formatted by: Alvaro Tejada Galindo on Jan 5, 2010 10:26 AM