You are watching the forum "ERP Manufacturing (PP)", which was updated on Dec 27, 2011 8:42:29 PM by Jeevan Sagar.
Subject: Re: How to find the list of material variant based on the characteristics value
Message: I couldn't find a standard report to get the material variants based on characteristic values (the nearest I could find was CT12) but I wrote a report some time back here's the table join logic for the main select statement.
select a~matnr
        e~atwrt
        h~atwtb
 into table i_tab
      from MARC as a
      inner join IBIN as b
      on b~instance eq a~cuobj
      inner join IBIB as c
      on c~ibase eq b~ibase
      inner join IBINVALUES as d
      on d~in_recno eq b~in_recno
      inner join IBSYMBOL as e
      on e~symbol_id eq d~symbol_id
      inner join CABN as f
      on f~atinn eq e~atinn
      inner join CAWN as g
      on g~atinn eq e~atinn
      and g~atwrt eq e~atwrt
      inner join CAWNT as h
      on h~atinn eq g~atinn
      and h~atzhl eq g~atzhl
     where     a~matnr in s_matnr
            and e~atinn in s_atinn
            and e~atwrt in s_atwrt
           and b~valto eq '99991231235959'. "This is important condition 
I included bare minimum fields to suite your requirement needs you can add whatever other field you want . Though I tested the table join, I suggest you to test it again before writing your own ABAP program using SE16N.
To view the forum, visit:
http://forums.sdn.sap.com/forum.jspa?forumID=144.
To view the thread, visit:
http://forums.sdn.sap.com/thread.jspa?forumID=144&threadID=2106180
------------------------------
Mandatory Disclosure Statements: http://www.sap.com/company/legal/impressum.epx 
This e-mail may contain trade secrets or privileged, undisclosed, or otherwise confidential information. If you have received this e-mail in error, you are hereby notified that any review, copying, or distribution of it is strictly prohibited. Please inform us immediately and destroy the original transmittal. Thank you for your cooperation.
 


No comments:
Post a Comment