Supersession

Hi Gurus
I am trying to implement Parts supersession in SD and one of the requirement is that the configuation for the Sales Order should show all the sub item . In Standard SAP this is set to shown only main item and you have to Va02- Edit- Display range -- All items.
Can you please let me know how to make this global, so that all the sub items are displayed when entering orders in VA01.
Thanks a lot for your help

Hi
You can fields  disable / visible   through transaction variants . t.code is SHD0
So check with t.code is SHD0
Regards
Srinath

Similar Messages

  • Supersession(material exchange)in 3rd party PO(DIMP/IS Auto)

    Hi,
    Could anyone please tell how the material exchange is handled in supersession for 3rd party PO?
    I tried to do material exchange in PO created against a sales order and I got the error message MPN01032 (This function is only possible for certain item types/The material exchange functions do not support the item category selected for the main item).
    I believe the change should be done first from sales order to PO. For this the item in PO needs to be deleted. I am not sure if this is the correct way or if anything I am missing. How this can be handled on a daily basis by an interface ?
    Your help would be much appreciated.
    Thanks in advance,
    anand

    Hello Anand
    Did you ever get to the bootm of this - I have exactly the same issue?
    Any assistance would be greatly appreciated.
    Regards
    Tony
    [email protected]

  • Supersession chain not working

    Hi Gurus,
    i need your help on the supersession topic. I am new to this and i'm finding some problems in defining supersession chains and use them. To define a chain, I have the steps written in the guide here below:
    http://help.sap.com/saphelp_dimp50/helpdata/EN/59/712938dd60fe64e10000009b38f842/frameset.htm
    more precisely, I:
    - defined a very simple supersession chain using PIC01. Material A is replaced by Material B, from today onwards, reason 1 (maintained earlier), F
    - gave the same availability check code and strategy group to both materials
    But, when i place an order for Material A, availability check is done against Material A... and part is not substituted by Material B.
    I think that the guide there.. is missing something. It seems too simple.. i was expecting to customize some condition table.. for example to make supersessions dependent on some parameters like sales order type or customer group... etc. Can somebody please give me some advice on what is making my supersession chain not working?
    thanks
    regards
    Marco

    Hi
    Also you need to do ABAP development:
    a.) Create CUSTOMER INCLUDE and add ABAP structures REGUH_LST and REGUP_LST to contain the values provided by payment program
    b.) Define the BTE 00002110 and copy the sample function module and add the source text required.
    Jayaram

  • Supersession in production orders (ERP ECC 6.0 EhP3)

    Hey guys,
    does anybody know how/if supersession works in production orders?
    e.g.
    I have created a supersession-chain with 2 materials, Material1 should be interchangable with Material2.
    I place a production order where Material1 is a component of the product to be assembled. Material1 is 2 parts short in the availability check.
    The ATP-check shall recognise that Material1 is part of a supersession-chain and should automatically replace the missing parts of Material1 with Material2 (as they are interchangable) in the production order.
    Does anybody know, if there is any function of supersession regarding this issue?!?
    Regards, Jan
    Edited by: Jan Borsdow on Jul 10, 2009 4:18 PM
    Edited by: Jan Borsdow on Jul 10, 2009 4:18 PM

    Hello,
    I'm trying to figure out the same thing. Supersession seems to be functioning properly in SD and MM but not in PP. The requirements for components are directed to newest/valid component (in my tests) but production order doesn't seem to consider the supersession at all. That is, production order contains the old component, which doesn't have availability.
    Have you found something else for this?

  • Querying a Supersession Table for an HTML5/Javascript Windows Store App

    Hi Guys,
    I'm fairly new to SQL and am just setting up a Windows 8 app using an Azure SQL server. The issue I have is looking up a part number supersession and getting the latest number. One part number can have multiple supersessions (ie (oldest number) RTC5756
    > STC8572 > STC3765 > STC9150 > STC9191 > SFP500160 (latest number) )
    The data I am supplied monthly has both the superseded items and the supersession information in both columns and is not easy to decipher - for example:
    Supersessions Table
    RTC5756 | STC9191
    SFP500160 | STC9191
    STC9191 | STC2951
    STC3765 | STC9191
    STC8572 | STC9191
    STC9150 | STC9191
    Source Table
    SFP500160 | KIT BRAKE LINING | 58.02
    The newest part number is kept in a separate table - called "source" - which in this instance is SFP500160.
    I need access to the latest part number but also to the part's previous numbers, due to the fact that some people may still be stocking them as an old part number and for them to search by. Is there an easy and efficient way of doing both a lookup for the supersessions
    and a join on the two tables to minimize the queries on the database?
    What I'm really trying to achieve is, a user inputs a part number, ie STC8572 (the customer does not necessarily have access to or know any of the other part numbers associated with this number), the lookup table then checks for supersessions of that part
    number - in this case:
    (oldest number) RTC5756 > STC8572
    > STC3765 > STC9150 > STC9191 > SFP500160 (newest number)
    The query then returns the newest number as the number to be used, along with the part information, which it knows based on the 'source' table, with a message such as 'The part number you have entered has been superseded to SFP500160'.
    The query will also return all of the previous numbers associated with that number, to be consumed by the application for cross
    reference.
    Any help would be greatly appreciated.
    If I need to make anything clearer, please let me know.
    Thanks

    Hi Vishal,
    Thanks for your reply.
    My two tables are as follows:
    supersessions (table)
    supersession_a  |  supersession_b
    RTC5756
    SFP500160
    STC9191
    STC3765
    STC8572
    STC9191
    STC9191
    STC9191
    STC2951
    STC9191
    STC9191
    STC9150
    source (table)
    partnumber
    description
    price
    SFP500160
    KIT BRAKE LINING
    52.28
    (where SFP500160 is the latest part number)
    For example, customer enters part number STC8572 in to a search. 
    The database queries the "source" table, where of course it is not found because the "source" table only stores the latest part number.
    (oldest number) RTC5756 > STC8572 >
    STC3765 > STC9150 > STC9191 > SFP500160 (newest number)
    I would like the database to query the "supersessions" database at the same time, to see if the part number exists in the supersession stream. If it does, then query all of the supersession numbers linked to that part number, until it finds a match in the "source"
    table - or if the part number being used to search is the latest part number and therefore the number in the "source" table - in this case SFP500160, then return the "source" data related to that number. In both instances, I need the supersession data linked
    to the part and the source data returned with the query.
    If a customer enters an old part number, I would like them them to be informed that it has been superseded and that they will therefore be using the latest number to stock their part under. I need the supersession data for a) as a way of pushing the user to
    the latest part number and b) being able to consume all of the supersession numbers that the query has returned for a reference in the application as a list for the user. 
    In the automotive industry, sometimes parts get superseded while they are still stocked under an old part number. Hence needing to eliminate the confusion, say for example, if a part was automatically stocked as an SFP500160 because of a supersession update
    (which happens monthly) and was still on the shelf as an STC9191.
    This, obviously, is an example using only one part number to demonstrate the supersession chain, when in fact there are 120,000 part numbers to check using this method.
    I hope this adds some clarity to what I am trying to achieve.

  • Unable to use PIC01 transaction for Supersession chain creation

    Dear All,
    I am trying to create a supersession chain using PIC01 transaction. While entering the transaction, i am getting error as "Transaction Code PIC01 cannot be executed. You are trying to execute the transaction code &1, but it is in a deactivated package.
    System Response
    Execution is cancelled.
    Procedure
    Use transaction SFW5 to check whether all components required for the operation of your system are activated (switched on).
    How should i resolve this. I checked in SFW5, but couldnt really know which package i should activate etc.
    thanks in advance for your help.

    Hello shyamsundarl
    If you are using the DIMP solution only for the Supersession
    functionality and not for the MPN, you would only have to activate
    DIMP_SDUD Business Functions.
    Please read note 849981 and discuss the issue with your SAP consultant.
    Consider that settings of buisiness function sets (TA SFW5) are
    irreversible... so please do the switch first on a dev system only,
    and test carefully!
    Enda.

  • How to manage supersession scenario in CRM??

    Hello All
    I would like to know how to deal with supersession scenario in CRM. We have the supersession in the SAP ERP and now we are integrating to CRM.
    Thanks in advance
    Jacopo Françoise

    Hello,
    For this you'll have to use SAP-APO system for RB availability check
    Go to   TX  /INCMD/UI: Create a product substitution procedure with a supersession chain
    from predecessor Product   to  successor
    2.      in /SAPAPO/RBA04 - Integrated Rule Maintenance, create a rule which should refer to product substitution procedure created in previous step
    3.      /SAPCND/AO11 - Master Data -> Rule Maintenance -> Create Rule Determination:
    Maintain conditiom type and , create an entry for product to rule
    4.      make sure that there is NO stock for product in palnt
    5.      create stock for successor product
    6.      Now create CRM sales order
    Regards,
    Reddy

  • Can anyone explain and brief about supersession functionality in Demantra

    I understand it is part of service or spare parts forecasting functionality whenever the new version of product is introduced in a supersession chain, demantra will generate forecast for the supersession chain accordingly.
    Can you please explain in detail how it works?
    How supersession chain is introduced in Demantra?
    How unilateral and bilateral functionality will be handled in demantra for supersession chain?
    Is it possible to do version control of item in Demantra, if Yes how to do that.
    It will be of great help, if you can provide indepth details about demantra supersession forecasting.

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

  • Supersessions for MM in SAp 4.7

    Dear Experts,
    there is a requiremnt to establish supersessions between material master in SAP 4.7 is there anyway we can do it.
    Please let me know

    Hi,
    Supersession facility will get activated if you use SAP Mill Products and also you need to activate some business functions.

  • "Individual Purchase order" with supersession

    have a scenario "Individual Purchase order" with supersession
    i face this problem
    When using the old transactions ME22n, we can replace the material with the
    new in supersession however; we cannot create an outbound delivery as
    it refers to the old material in ATP.
    We can re-run product selection in delivery, however SAP says the
    following:
    "For interchangeable parts to be considered in sales order processing
    for availability check there has to be the reason for substitution
    0009. The value for the field Outcome has to be B."
    "Note that copy routine 110 is only supported when you use outcome A
    and usage PSEL for deliveries"

    Is their any solution

  • Supersession in Sales Order

    Hi there,
    we are trying to use Supersession in the ERP Sales Order. We already have done all the customizing steps mentioned in the SAP Help (http://help.sap.com/erp2005_ehp_04/helpdata/en/fc/a62238b497a552e10000009b38f842/frameset.htm).
    It works now in the purchase order (you can manually click on "Material substitution"), but unfortunately it doesn't work in the Sales Order.
    The subsitution chain is: A -> B (Forward)
    When we enter material A (with stock=0) in the Sales Order only the "Standard Order: Availability Control"-Screen comes up. But the material is not replaced with B.
    Does anyone has an idea what needs to be done to get it working in the Sales Order?
    Thanks, regards,
    Johannes

    So which entry is relevant for Supersession?
    0004 Autom. mat.selection
    0005 Manual matl selectn
    0006 ProdSel - Order only
    Currently the following options are maintained:
    0004: everything blank, except: Outcome = A
    0005: everything blank, except: Strategy = A
    0006: everything blank, except: Outcome = B
    What values do I have to maintain here to get a pop-up in the Sales Order?
    Thanks, regards,
    Johannes

  • Forecasting for supersession chain

    We are using the automatic reorder point MRP type
    when forecasting is run the system system takes individual material for determing the forecast and not the the material as a part of supersession chain.
    Let me give u a example.
    material "A" has a consumption in the past
    material "B" is a new material (has no consumption at all) and
    material "B" is superseeding material "A"
    when the forecast program runs, it will calculate a reorder point for
    material "A" because it has a consumption history, but the reorder
    point of "B" is zero because material "B" has no consumption history
    Suppose no stock,PO, or PRs for material "A" & "B".
    When the MRP runs, it considers only the last supersession which
    is "B". of course "B" has a zero reorder point and so no PRs are
    generated.
    Is there is a way to consider the summation of the reoder points of all the supersession chain materials in the MRP or to make the forecast runs only on the last supersession taking into account the consumption of all supersesion chain materials.

    Hello shyamsundarl
    If you are using the DIMP solution only for the Supersession
    functionality and not for the MPN, you would only have to activate
    DIMP_SDUD Business Functions.
    Please read note 849981 and discuss the issue with your SAP consultant.
    Consider that settings of buisiness function sets (TA SFW5) are
    irreversible... so please do the switch first on a dev system only,
    and test carefully!
    Enda.

  • Supersession chain data

    Hi Experts
    We have data migrated in tables PICHD & PICPS but in PIC03 i am not able to display supersession chain.
    Please help.Is there any other tables where supersession data is stored other than MARA,PICHD & PICPS?

    Dear Satish,
    in additon to the location determination procedure you have to create a product substitution procedure and assign your supersession chain to it. Then you have
    to go to the rule maintenance, edit your rule and assign the product substitution procedure to your rule. This way both lists (the location list & the product list) will be taken into account when the rule is evaluated.
    The way in which the both lists are combined are then set up in the rule control. There you have two options to choose from:
    1) Combine locations with all products
    If you choose this option, then in your case the result would be:
    A-L1, A-L2, B-L1, B-L2
    2) Combine products with all locations
    In the case, the result would be:
    A-L1, B-L1, A-L2, B-L2     (Your preferred result.)
    Regards
    Christian

  • SNP ( supersession)

    Hi,
    can any one of u please tell me what are the configuration settings required in SNP for product interchageabilty( supersession).
    after maintaining interchangebilty (full ) in INCMD/UI, after that what settings arerequired to carry out SNP  run .
    I know CTM doesn't supports Full interchangeabilty. only SNP supports Full interchangeabilty.can u please explain me in detail
    2)what settings are reuired in GATP to run FFF class in product  interchangeabilty.
    3) what settings are reuired in SNP to run FFF class in product  interchangeabilty(after doing INCMD/UI) .

    hi,
    1) what settings are reuired in GATP to run FFF class in product interchangeabilty(before doing INCMD/UI).
    2) WHY CAN"T WE RUN GATP IN RULE MAINATENANCE . IT IS MORE DETAILED THAN  PRODUCT INTERCHANGEABILTY THAN USING FFF CLASS.
    cAN ANY ONE PLEASE EXPLAIN ME IN DETAIL

  • Supersession chain with ATP

    Hello, colleagues!
    I created supersession chain with two materials (steel1 and
    steel2) and with Use-up Strategy in SCM system.
    The total dependent requirements for steel1 are 32.
    Total stock level for steel1 and steel2 are 30 and 16
    correspondently.
    After ATP (tran: /n/sapapo/pom1) a new row appeared in BOM order
    with steel2 and quantity ZERO, but quantity of steel1 had been
    reduced by 2. It’s very strange result….
    Can anybody throw the light on this.
    Thanks’ for attention.

    Hello,
    neither SNP nor CTP...
    simple atp for planned orders (based on IPPE) using transaction /n/sapapo/pom1.
    i used forward direction.
    If you give me email I'll send you detail screens with settings.
    BR

Maybe you are looking for

  • Directshow9 and Quicktime 7 error

    I just upgraded to a 64-bit system, and am not experiencing problems importing videos into my presentations.  "A required system library did not install properly.  Please install directshow9 and quicktime 7 or higher..." error shows up; but I have bo

  • Down payment role authorisation

    Hi all, The user wants to change the description of down payments. so I want to assign a role authorisation for T code FB02 only for down payment section for this user, because in FB02 can change all FI documents. please suggest what are the document

  • Doubt in Client Copy Scenario !!

    Hello Gurus I am in a situation where the inputs from the experts help me to solve this issue. Scenario: Development ECC 6.0 System with 100 (Golden) & 110 (Development) clients available. Industry Best Practices installed and activated in 110 Develo

  • Email out does not show quotation marks or apostrophes

    Help I have a fairly complex application in actionscrpt 2 that allows users to enter data, which i tlater aggregates and mails back to them. But it sees the xml exceptions (apostrophes, quaotation marks etc.) as html mark up when i email it back out.

  • Standalone client

    Hi all, I'm triying to access an EJB from a JAVA standalone client, but where can I know how is the JNDI tree? Is the LDAP port the JNDI port? Thanks Jose R. Diaz