2012 Feb 01 5:37 PM
Hi Gurus,
Which table store variant configuration details of a sales order?
Thanks,
Best regards,
Pavan
2012 Feb 01 6:25 PM
Use FM instead of finding tables.
VC_I_GET_CONFIGURATION'
you can use the function module by passing cuobj from VBAP as shown below
SELECT-OPTIONS : cuobj FOR vbap-cuobj no-extension no-intervals.
CALL FUNCTION 'VC_I_GET_CONFIGURATION'
EXPORTING
instance = cuobj-low
TABLES
configuration = gt_conf_out
2012 Feb 01 7:02 PM
Thank you so much Mithun,
I am looking for DB table where configuration details are stored.
Best regards,
Pavan
2012 Feb 01 7:22 PM
Run transaction ST05 in parallel while doing configuration. The ST05 list will show all tables hit.
Rob
2012 Feb 01 10:48 PM
Thank you so much. I found DB table details using your idea.
Best regards,
Pavan