Quotation status overview Unit Basic Materual determination

Hello,
We employ the technique of the material determination between the copy of a quotation to an order.
The alternative articles have all like basic unit PCE and sales unit M2.
The conversion ratios are not the same ones for each article.
For example for 1st article 1 m2 = 100 PCE, for second article 1 m2 = 25 PCE.
But the selling price in M2 is the same one for all the articles.
The material entered has the same basic unit and sales unit M2.
The completion rule for quotation is u201CB Item is completed after full quantity has been referencedu201D
When I create an order in reference with the quotation, the entered article is replaced by an article for example 1st list.
The quantity in the quotation is 100 m2 and the quantity in the order is 5 m2.
The item is automatically completed because the quantities calculated for the status of the item in the offer are false.
In the flow document the quantities are 500 PC in the base unit of measure or 5,00 M2 in the document unit of measure.
In the status overview for the item the status is u201CFully referencedu201D with 500,00 M2 referenced and 0,000 M2 open.
The system tries to convert in the basic unit but they are not the same ones between the entered article (M2) and the alternative article (PCE).
How to solve this problem?
Thank you in advance.
Best regards
Frédéric Blaise
e-Kenz S.A.
MM01 Create material
_ 6309006001 base unit M2 sales unit M2
_ 6301311601 base unit PC sales unit M2 conversion 1 m2 = 100 pc
_ 6301313601 base unit PC sales unit M2 conversion 1 m2 = 25 pc
VB11 Create material determination
_ Material entered 6309006001
_ Alternative materials 6301311601 and 6301313601
VA21 Create Quotation
_ Item material 6309006001 quantity 100 M2
VA01 Create Order with reference to quotation
_ Material 6309006001 changed to 6301311601 and quantity is 5 M2.
VA23 Display quotation
_ Status overview 6301311601 Fully referenced 500,00 M2 referenced instead 5,00 M2

Hello Frederic
For Material Determination to work properly, I think both the original material and the substitute should have the same Base Unit Of Measure, which is not the case in your example. I think that is  the issue here. You may have different sales Units and conversion factors, but the Base should be the same I guess. Try to address that issue.
Secondly in the condition record, You can maintain 'Susbstitute UOM',  maintain it with PCE and/or M2 and see if it helps.. I don't think it would.
See the OSS Note which explains how sales units work in material determination.
826249 - Manual product selection: VRKME sales unit
Hope this helps.

Similar Messages

  • MSS Status overview iview Objective Settings & appraisals

    Hi All,
    Currently the status overview Iview of MSS for appraisals display all the employees(in org unit) irrespective of whether the employee/appraisee has existing documents. This is because this Iview also has the functionality of creating the appraisal documents from here.
    In our case we don't create appraisal documents from this Ivew, so we hide the "In Preparation".
    Now the question is we want to filter the employees and display only those who has appraisal documents already created. How could we achive this?
    All we need is: We wanted to give an view to higher level manager with all the employees who has apprisal documents in completed status and he need to just approve/reject. Is there any other way we can achive this with out using the Status Overview Iview. I am not able to locate any bsp which serves this purpose from HAP_DOCUMENT.
    Please adive me, how can I achive this.
    Apprciate your inputs and any kind of help.
    Thank You,
    Hari.

    Hi, Check HAP_CALIBRATION / search.htm and result.htm you can enhance his behavior modifying filtering,
    Best Regards.-

  • OSA-MSS-Status Overview-EHP4

    Hi,
    We are using the EHP4 appraisals ,when the manager open the status overview he has 2 options to search the employees like employees to appraise and Direct reports .
    We want to use the other search criterias also i.e Emp from org structure and emp from org units.
    The service we are using -HAP_START_PAGE_POWL_UI_MSS.
    In BSP related Appraisals we could able to control this with OADP but coming to WD its based on POWL .
    Could any one please let me know from which OADP or WD application the sytem is pciking the search criteria under MSS fucntionality.
    Regards
    VK
    Edited by: VKjohn on Mar 29, 2010 5:41 PM

    you can create/group Organizational Structure Views
    under->
    SAP Reference IMG -> under Integration with Other mySAP.com Components -> Business Packages/Functional Packages ® -> Manager Self-Service,- >Object and Data Provider ->organizational structure views

  • Status overview of sales order

    Hi,
    I need to make a report for sales order and quntity at different status
    Status                               Quatity
    Delivery status                       10
                Outbound delivery         10
    Goods issue status                    10
                GD goods issue:de         10
    Billing status                        10
                Invoice                   10
    Similar to what we see in Document flow > Status overview.
    Is there any fn module for the same.
    on debugging i have noticed that it is calling <b>SD_ORDER_STATUS</b> but this will be very bulky and least efficient.
    If there is a select statement (with  two or three column in the select list ) can be written  (can hav as many joins as long as i issue one SQL) then plz suggest

    then it is some thing like this..
    *-Get VBAP data for the sales orders based on the
    * values entered in selection screen
    select p~vbeln  " Preceding SD document
             p~posnr  " Preceding item of an SD document
             p~kwmeng " Sales Order Quantity
             e~lfrel  " Item is relevant for delivery
             p~uepos  " Higher-level item in BOM structures
        into table it_vbap
        from vbap as p inner join vbep as e
          on p~vbeln = e~vbeln and p~posnr = e~posnr
        where p~vbeln in r_vbeln
        and   p~posnr in r_posnr
        and   p~abgru = ' '.
    from the above you will get sales order quantities...
    * Select all the DATA from VBFA
      if not it_vbap[] is initial.
        select vbelv   " Preceding SD document
               posnv   " Preceding item of an SD document
               vbtyp_n " Doc category of subsequent Document
               vbeln   " Subsequent SD document
               posnn   " Subsequent item of an SD document
               rfmng   " Ref. qty in base unit of measure
               fktyp
          into table it_vbfa
          from vbfa
          for all entries in it_vbap
          where vbelv = it_vbap-vbeln
          and   posnv = it_vbap-posnr
          and   rfmng > 0
          and ( ( vbtyp_n = 'J' and stufe = 0 )
          or    ( vbtyp_n = 'M' and stufe = 0 )
          or    ( vbtyp_n = 'M' and stufe = 1 )
          or    ( vbtyp_n = 'N' and stufe = 0 )
          or    ( vbtyp_n = 'N' and stufe = 1 )
          or    ( vbtyp_n = 'V' and stufe = 0 )
          or    ( vbtyp_n = 'R' and stufe = 0 ) ).
      endif.
    this is PO----
        loop at it_vbfa where vbtyp_n = c_v.
          it_po-vbeln  = it_vbfa-vbeln.
          it_po-posnn  = it_vbfa-posnn.
          append it_po.
          clear  it_po.
        endloop.
    this is deliveries
    * Get all the relevent Deliveries
        loop at it_vbfa where vbtyp_n = c_j.
          it_del-vbelv  = it_vbfa-vbelv.
          it_del-posnv  = it_vbfa-posnv.
          it_del-vbeln  = it_vbfa-vbeln.
          append it_del.
          clear  it_del.
        endloop.
    vijay

  • Query "Status Overview is already open in another session"

    Hi All,
    We implemented ESS MSS on Portal 7.01 SP8. With With SAP_ESS 603 SP7 and BP_ERP5ESS 1.41 SP9
    This is for country Qatar and it has made as a copy of GB as SAP doesnt provide any country structure for Qatar.
    We are facing error in Performance Dialogue saying Query "Status Overview is already open in another session" when click / display button is clicked after selecting the Appriasal document in ESS.
    This is working fine for all other countries and also this works fine if another country's portal role is assigned to same PRNR or test user.
    We cant see any locks in backend / portal.
    Please can someone help

    Thank you for the quick response.
    We are planning to provide a link for the same as 'Delete the locked session', so that the user is able to unlock the locked session.
    As I mentioned the std report POWL_D01, can we use it to do the same?
    Regards,
    Pranita S

  • Part appraisals as part of OSA Status Overview in MSS?

    Hi,
    I'm in the middle of a clarification phase regarding implementation of Objective Setting and Appraisal (OSA). This is my question regarding part appraisals:
    In the Status Overview page/iview in MSS, the manager can prepare, see, select and modify documents with statuses like In preparation, In Planning and In Process.
    If a document has the substatus "Part appraisal in process", and the manager is the first part appraiser, I would expect the document to open the part appraisal column for input when I select the document from the "In Process" column. Instead the document is opened with the Final Appraisal column open for input.
    How can you include a managers part appraisal documents in the Status Overview page, or have the part appraisal column open for input?
    We want to make the Status Overview the "one point of access" for the managers appraisal tasks, but is that possible within standard?
    Kind regards Henrik

    Hi Henrik,
    Is your issue resolved, we did notice the similar behavior. However if BSP application HAP_DOCUMENT/documents_todo.htm is called directly, it displays the Part appraisal first and then upon completion it displays Final appraisal.
    I plan on providing this as URL in MSS as an alternative till OSS status overview is fixed.
    Any info ?
    regards
    Sridhar

  • Function module/Webservice for Sytem status overview widget

    Hi,
    We want to create a "System status overview" - widget, which can show very briefly an overview of which systems are up an which are down (+ some additional backgroundinfo).
    (Instead of communicating system statusses via e-mail)
    Therefore we are looking for a function module/webservice which provides status info of all systems linked to Solution Manager. Does anybody knows about a standard functionality which provides this information, or does an application lik that already exists?
    Thanks in advance for your replies.
    Cheers,
    Sander

    Hi Mohammed,
    Thanks for the reply.
    That 's exactly the information we need, but we want to be able to create a simple display to the end user:
    - without logging into the system
    - displaying only a red or a green light/system
    - information about all systems in all solutions
    to put into the portal or even better, to put into a widget (I was thinking about using Adobe Air for this one).
    To do so, I think there will be the need of a simple web service which returns a list of all systems toghether with their availability status...?
    KR,
    Sander

  • PCR: Status in the Status Overview table is not updated

    Hello,
    In MSS, a manager can look at a status of submitted Personnel Change Requests (PCRs).  The status field always displays "open".  It doesn't get updated. 
    I saw a few notes on this issue.
    Note 1004470 ISR status overview: Status change incorrect
    Symptom: The system does not refresh the ISR status overview for a request in the WebDynpro iView although the status of the request has changed.
    Solution Implement the attached correction.
    Later execute the QISRSTATUS_REP correction report contained in Note 947790.
    But the note 1004470 is already applied because we are on SAP_APPL version 17. Will the report help me out? I'm not a core abaper/hr consultant. So, if someone could help me explain what the report does, i run it.
    Also, can any one point out which data source (name of the RFC/workflow/others) fills up this data?
    Thanks!
    ak.
    PS: Points handy for valuable answers.

    clocing

  • Hiding Status column in MSS Status Overview for Personnel Change Requests

    Hi,
    We have MSS implemented in SAP Portal.
    We are using Status Overview for Personnel Change Requests iview for which we have multiple columns displayed with data.
    We need to hide Status column in Status Overview for Personnel Change Requests iview for all the users.
    Can any body please let me know how it can be done.
    Regards,
    Pradeep B
    Edited by: pradeep balam on May 17, 2011 4:01 PM

    Hi Pradeep,
    Preview the portal page which you want to edit, in this case status overview in PCR. In the preview press the CTRL-key and right-click on the column that you want to edit. Here, you will be able to perform your customizations like hiding columns, labels etc
    Hope it helps,
    Prathamesh

  • Consolidated status overview for all test plan

    Hi all,
    We are performing our Integration test from SolMan. I would like to generate a consolidated report which will give me data same way as the status overview gives for individual test plan.
    This will help me to track the progress at the test package level, which inturn is my IT scenario.
    Any quick help will be highly appreciated.
    Regards,
    Smita

    Thanks Prabhakar,
    I am aware of this, but this gives me details for one test plan.  Even when I use STWB_2, it gives me summary of all the test plans, and for status overview I have to go in each and every test plan.
    I am looking for some way out to generate the status overview of multiple test plans together in same screen, for reporting purpose.
    Any suggestions?
    Thanks,
    Smita

  • Supress radio buttons "Confirmation" and "Invoice" in SHC status overview

    Hello,
    We use SRM 5.0 - Classic escenario.
    I need to know how one can supress the "confirmation" and "Invoice" radio buttons which appear in the status overview of the SHC after the Purchase Order has been created for it.
    Is this Config, Profiles or a BADI one has to aplicate.
    In the last case, can anyone send me some example coding.
    Thanks for any answer,
    Aart

    Hi Disha,
    SDN does not allow me to send my  direccion in one piece.
    So I cut it up in three parts, just add the bits to get the full direccion
    1.     aart.engbersen
    2.     @
    3.     visionone.cl
    Thanks
    Aart

  • Performance Dialogue error - Query "Status Overview is already open in ano

    Hi All,
    We implemented ESS MSS on Portal 7.01 SP8. With With SAP_ESS 603 SP7 and BP_ERP5ESS 1.41 SP9
    This is for country Qatar and it has made as a copy of GB as SAP doesnt provide any country structure for Qatar.
    We are facing error in Performance Dialog saying "Query "Status Overview is already open in another session" when click / display button is clicked after selecting the Appriasal document in ESS.
    This is working fine for all other countries and also this works fine if another country's portal role is assigned to same PRNR or test user.
    We cant see any locks in backend / portal.
    Please can someone help.

    Hi Siddharth,
    We have already checked and there were/are no locks in Sm12.
    I tried deleting the locks using the mentioned program, in result is does say that ! query found but when I go to Portal and open the Performance Dialogue document , I still get the error Query " " is already open in another session
    Note 1432358 is for  SAP_BASIS >= 701 which is suitable for our case but, just wanted to check, Performance dialogue works fine for all other countries and only for this particular country it's not working.
    We are able to replicate this in Development and Test, both the environments.
    Also, when this particular user is assigned, another country's portal roles the problem doesnt occur.
    Any clues?

  • Creating tabs in Appraisals Overview Page(ESS/MSS) -Status Overview

    Hi,
    We have two types of Appraisal documents in system.
    One is normal Appraisal document and another is Talent Competency Assessment document.
    We are thinking to keep these two appraisal documents apart and away from each other.
    By creating the two Status Overview in ESS/MSS overview Page and controlled via PRogram to what documents appear in Status Overview Page.
    Can anybody suggest is ther any way around it to display two kinds of Appraisal documents separately.
    I tried this configuration in MSS,but it is not working.
    Regards
    Rizwan S

    Dear Siddarth,
    Thanks for the Previous Answer.
    Can I make the Zcopy of the Appraisals Page/Appraisals Application and use it for another type of Appraisal documents .
    1.Standard Appraisals Page for Standard Perfroamnce appraisals,
    2.Zappraisals Page for Competency Appraisals.
    Can you please tell me what are development efforts?
    What things to be copied to acheive this?
    Regards
    Rizwan S

  • VA43-Status overview

    Hi Gurus,
    Runtime errors: COMPUTE_BCD_OVERFLOW
    Exception:                 CX_SY_ARITHIMETIC_OVERFLOW,
    occurs when is used VA43-Contract and Environment and Status overview.
    What do to do?
    Thanks and best regards,
    Wilson

    Check this thread where same topic was discussed
    [compute_bcd_overflow Error...    |Re: compute_bcd_overflow Error...]
    Update the forum whether your issue is solved.
    thanks
    G. Lakshmipathi

  • Activating objects but not showing up in Cache Status Overview

    Hello SDN.
    We are on PI 7.1. A strange thing started happening. I can change an object and when activate, I get success, but in checking the Cache Status Overview it does not show up. We set up our SLD as follows
    SC_Systems (i.e. SAP, Outside Vendors etc) (all service interfaces and actions go here)
    Which is the parent of SC_Mapping (all operation and message mappings)
    Which is the parent of SC_Models (all DataTypes, ED, and Message Types go here)
    So
    SC_SYstems
        SC_Mappings
             SC_Models
    When making a change to the models SC and activate we get the following problem above, also for SC_Systems. But when I do this for mapping there is no issue.
    One thing that is different is a new developer accessed the DataType from the SC_Systems and changed it, thus causing a conflict (We usually access and change DT, MT etc in SC_Models.
    Since then it seems both are not allowing activation even though it says successful.
    We have bounced the system, done all cache refreshes that I can think of and are about to go back 3 days to a backup store point, but want to see if anyone has any idea what the problem could be.
    Thanks in advance
    Cheers
    Devlin

    Hi,
    It may be too obvious, but have you checked the Change Activation List?
    Perhaps the objects that were edited are "pending" there.
    Clear the SLD cache later.
    Regards,
    Caio Cagnani

Maybe you are looking for

  • Need to Download Safari version for OS X 10.3.9

    Anyone know where I can find a version of Safari to download for my Mac? I've looked throughout the website and can't seem to locate it.

  • Fetch from cursor when no records returned

    Hi, I've got the following question / problem? When I do a fetch from a cursor in my for loop and the cursor returns no record my variable 'r_item' keeps the value of the previous fetched record. Shouldn't it contain null if no record is found and I

  • TS4062 Invalid Response?

    So I simply cannot sync my iPod to the computer with USB or Wi-Fi. Only because I keep recieving an error that reads my ipod is getting an invalid response. I have tried everything for the last two days and dont know what to do. My iPod is 4th Genera

  • Tutorial for simple login form

    Can anyone post a link to a tutorial for a simple login form in Oracle form devloper 10g? Thanks, Va Message was edited by: user450092

  • Initial Focus

    I have six text boxes in a panel. How do I make the initial focus to be in the first enabled text box. And how do I make the focus to traverse in a serial order..like how it used to work with setNextFocusableComponent() in jdk1.3. Please help.