I/O CDP relevant input components in PDS with wrong quantity

Dear Experts,
In my PDS, I  have 2 components which are I/O type CDP relevant input. Problem is that in the PDS, these CDP component quantities are wrong in comparison with quantities maintained in the R/3 BoM Master Recipe.
Components are classified with a class type 023 in R/3 - batch specific unit of measure, and product master is classified with a class type 400 (CDP classification) in APO.  Configuration schema is CDP in APO and as mentioned, I am using PDS instead of PPMs. Note that finish product, father, is not using any CDP class, it is only some of the components.
So problem is basically that the quantities are not right, it looks like it is not doing right the conversion of units of measure however for the non CDP components, it is doing it OK.
Component BoM quantity is 46 Kg and PDS component quantity is 46 BRL. Note that base unit of measure is BRL.
But  If  I check material master units of measure, I see that 1 BRL(Barrel) --> 1 BRL  and then  75Kg --> I  BRL (Barrel). Same for in the Product Master units of measure tab.
Am I missing something?
Thanks in advance
Regards
Carlos

Hi,
Any clue of why components quantities are not being transferred right.
Thanks a lot for your feedback
Regards
Carlos

Similar Messages

  • Reading all input components from PDS

    Hi experts,
    My requirement is--- based on a manufactured product (procurement type-F) , I have to retrieve  corresponding distribution product (procurement type-E) .
    For this purpose , I think I will have to read the PDS for that manufactured product (procurement type-F).
    How to read the PDS in the z-program?
    I have found a BAPI called BAPI_PDSSRVAPSIF_RECEIVELIST which reads PDS , but I am not able to use the BAPI. In other words , I am not able to get the proper data to use it , example, where to give the F type material,and where to get the corresponding E type materials..Please help..
    If you know any table in APO which contains all PDS input and output components, please suggest it..

    Ajay,
    Can you please give me the link to APO Forum , from where I can get quick replies..

  • Isolation of components in PDS while ciffing

    Hi,
    What is the feasible way to isolate certain components in PDS while ciffing from ECC?
    To be more precise, there are 10 componets in BOM in ECC and require only 5 components out of these in PDS while ciffing.
    Thanks,
    Prash

    Hi,
    I assume your requirement as out of 10 components in BOM, you want to plan only 5 components in APO. In that case, you should set the MRP type of your header and only the 5 components as X0. Other 5 components may have different MRP type.
    Also, make sure that you transfer only those 5 APO relevant components material masters. not all.
    Then, while transferring PDS, this will automatically transfer only those 5 APO relevant components to APO.
    If this requirement is not correct, please elaborate your requirement.
    Regards,
    Manimaran M.

  • Can all input components inside a PanelGrid be made readonly.?

    I have bunch of html input components inside a panel group.. I want all of them to be readOnly based on my condition.
    I have an option of adding readOnly attribute to add individually to all the input components . But , i am looking for some thing more than this.. Can the complete panelGrid be made readonly like with out adding readOnly= true to components inside panel grid..
    thanks.
    cnu

    Try this. This is not a straight forward way.
    JSF Code
    <h:panelGrid id='readOnlyGrid'>
                   <h:inputText disabled="#{employee.test1}" value="#{employee.name}"></h:inputText>
                   <h:inputText disabled="#{employee.test2}" value="#{employee.age}"></h:inputText>
                   <h:inputText disabled="#{employee.test3}" value="#{employee.name}"></h:inputText>
              </h:panelGrid>
    Javascript
    function makeReadOnlyGrid() {
           var grid = document.getElementById('myForm:readOnlyGrid');
           var inpObjs = grid.getElementsByTagName('INPUT');
           for(var i=0;i<inpObjs.length;++i) {
                inpObjs.readOnly = inpObjs[i].disabled;
              inpObjs[i].disabled = false;
    }Call this javascript function like this:
    Before closing the body tagwindow.onload=makeReadOnlyGrid;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Expected behaviour?: input controls change size with iterator in findMode

    Hi all
    I'm trying to work out if the following is expected behaviour with the JDev 11g ADF Faces RC input components or a bug, before lodging a support request.
    I've noticed that fields resize themselves based on the parent bound iterator being in find mode (as separate to the default execute (show) mode). This causes all sorts of havoc with page layout when switching between the 2 modes.
    To demonstrate the code I have a simple inputText control with a hardcoded column size, and a Find commandButton:
    <af:inputText value="#{bindings.Status.inputValue}"
       label="#{bindings.Status.hints.label}" columns="20"
       maximumLength="#{bindings.Status.hints.precision}" shortDesc="#{bindings.Status.hints.tooltip}"
       disabled="true">
      <f:validator binding="#{bindings.Status.validator}"/>
    </af:inputText>
    <af:commandButton actionListener="#{bindings.Find.execute}" text="Find" disabled="#{!bindings.Find.enabled}"/>There's nothing unusual about the bindings for these components:
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.1.51.88" id="untitled1PageDef"
                    Package="view.pageDefs">
      <parameters/>
      <executables>
        <iterator Binds="TableView1" RangeSize="25" DataControl="AppModuleDataControl"
                  id="TableView1Iterator"/>
      </executables>
      <bindings>
        <attributeValues IterBinding="TableView1Iterator" id="Status">
          <AttrNames>
            <Item Value="Status"/>
          </AttrNames>
        </attributeValues>
        <action IterBinding="TableView1Iterator" id="Find" RequiresUpdateModel="true" Action="iteratorFind"/>
        ...and so on...Before I press the Find button (ie. Execute/show mode), the inputText renders 20 columns in width as expected, but in Find mode the field changes size.
    Is this expected behaviour or a bug? Alternatively can we influence the field's size in find mode (as the column attribute seems to be ignored), as I'd like to make it the same as the execute/result mode, so my page doesn't resize.
    Cheers,
    CM.

    Hi Frank
    I've recorded this following ScreenToaster session to show you the behaviour under Firefox. It's a standard search form dragged straight from the data control window. I haven't modified the columns attr at all, each component column is bound #{bindings.<fieldname>.hints.displayWidth}.
    Note when the Find button is pressed the fields change size to set defined width, then after the Execute button is pressed they go back to their dynamic sizes (presumably coming from the binding):
    http://www.screentoaster.com/watch/stWUtSQUVLRl1XRlpVXVta
    Let me know if you can't access the ScreenToaster video, it's my first try in publlishing a video via it.
    Cheers,
    CM.

  • RegionRenderer encodeAll The region component with id: pt1:r1 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance.

    Hi,
    I am using JDEV 11.1.2.1.0
    I am getting the following error :-
    <RegionRenderer> <encodeAll> The region component with id: pt1:r1 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.
    Piece of code is for region is:-
       <f:facet name="second">
                                                <af:panelStretchLayout id="pa1"
                                                                       binding="#{backingBeanScope.Assign.pa1}">
                                                    <f:facet name="center">
                                                        <af:region value="#{bindings.tfdAssignGraph1.regionModel}" id="r1"
                                                                   binding="#{backingBeanScope.Assign.r1}"/>
                                                    </f:facet>
                                                </af:panelStretchLayout>
                                            </f:facet>
    How do I resolve it ?
    Thanks,

    Hi,
    I see at least 3 errors
    1. <RegionRenderer> <encodeAll> The region component with id: pt1:r1 has detected a page fragment with multiple root components.
    the page fragment should only have a single component under the jsp:root tag. If you see more than one, wrap them in e.g. an af:panelGroupLayout or af:group component
    2. SAPFunction.jspx/.xml" has an invalid character ".".
    check the document (you can open it in JDeveloper if the customization was a seeded one. Seems that editing this file smething has gone bad
    3. The expression "#{bindings..regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "pePanel") evaluated to null.
    "pageeditorpanel" does seem to be missing in the PageDef file of the page holding the region
    Frank

  • ANN: 1/2-hr webinar (free), June 5 -- Enable and encourage user input in PDFs (viewed with Adobe Rea

    Enable and encourage user input in PDFs (viewed with Adobe Reader)
    with FrameMaker-to-Acrobat TimeSavers + Form Assistant
    Half-hour webinar (free; no fluff, no hype, no nonsense)
    Wednesday, June 5, starting 9am PDT
    Register at: https://www3.gotomeeting.com/register/157658438
    Enabling PDFs for various types of user input can strengthen the interaction between users and the content, and improve satisfaction due to greater user involvement/control. In addition, designated avenues for user input can contribute to documentation quality and provide outlet for frustration, for example by sending inputs regarding the documentation or the product directly from within the PDF.
    Techniques demonstrated in this webinar include features that are all embedded in PDFs that are viewed with the free Adobe Reader:
    • text fields where users can record data values and options
    • checkboxes to track progress
    • page marks and notes (optionally e-mailed)
    • embedded grading/feedback forms
    • storing of useful search queries within the PDF for future use
    Shlomo Perets
    MicroType, http://www.microtype.com
    FrameMaker/Acrobat/Captivate training & consulting • FM-to-Acrobat TimeSavers/Assistants

    https://crash-stats.mozilla.com/report/index/bp-0a0b872f-5127-4ee1-a355-ca3cb2120721
    https://crash-stats.mozilla.com/report/index/bp-9cd87dd7-205f-4844-9e6d-3ce262120721
    https://crash-stats.mozilla.com/report/index/bp-8c07c846-b2ed-4535-8db4-4ee072120720
    https://crash-stats.mozilla.com/report/index/bp-f29a89ed-f8b1-4a62-ba3e-983e22120720
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-1226c709-5f87-41c6-95d3-4310d2120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-eac1c5a5-2dce-4415-b645-07a1f2120714
    https://crash-stats.mozilla.com/report/index/bp-1ede5bd3-8c72-4362-8d79-4f29c2120714
    https://crash-stats.mozilla.com/report/index/bp-d4fd5dae-dacd-45f8-9549-2c3702120722
    https://crash-stats.mozilla.com/report/index/bp-ca510991-de29-44b3-be02-0255a2120722
    https://crash-stats.mozilla.com/report/index/bp-8600c221-3fd3-4eaa-a5af-a602b2120722
    With Hardware Accelaration in Flash turned off. Still crashing.

  • Input Readiness of Query with optional variables

    Hi,
    I built one input ready query which is input ready upon execution with only one set of selections, for any other set of selections, it is not input ready.Query is built on aggregation level on the top of multiprovider. There are no data slices built, No lock entries in RSPLSE as well. Is it like if a variable in the selection screen of the query is optional, will it be moved to free characteristic and because of that input readiness of the query will disappear?? In my case, country is authorized variable which is optional. Please let me know if any one has solution for this.
    Thanks,
    Bindu

    Hi,
    Check if:
    1. You have added characteristic InfoProvider in filter area and restricted that to your plan cube?
    2. Any Keyfigure in query will have input-ready cell only if all the characterictics in the aggregation level of that query has unique values for that cell.
    In your case you have moved Country to free characteristic area and might have not provided any value for it as it's optional. So system is not finding a unique value for this characteristic for input-ready cells.
    Enter value for Country variable and then execute, query will be input-ready.
    Regards,
    Deepti

  • VS Exp 2013: Unable to create the Web site ... The components for communicating with FTP servers are not installed.

    I have MS Visual Studio Express 2013 It has worked fine for many months and then suddenly (I have made no configuration changes or added new programs) when I try to publish I am getting the message:
    Unable to create the Web site 'ftp://ftp.xx.xx/xxx.org.uk/www/htdocs'. The components for communicating with FTP servers are not installed.
    (I have replaced actual name with x's).
    I had a similar problem some months ago and found that saving all files, closing VS 2013 and re-starting the program fixed the problem. This time it has not.
    I am at a loss to know how to take this forwards. I do not use IIS.
    Any help would be appreciated.
    Michael.

    Hi Michael,
    For web site development, so you use the VS2013 express for web, am I right? We have to make sure that it is not the VS version issue.
    As you said that it worked well before, did you install other add-ins or tools in your VS IDE like
    Xamarin or others?
    Maybe you could disable or remove all add-ins in your VS IDE, test it again.
    please also install the VS2013 update 4 in your side.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I'm trying to input phone numbers starting with 0, into Numbers spreadsheet. It keeps deleting the 0-  any clues?

    I'm trying to input phone numbers starting with 0 into Numbers Spreadsheets. It keeps deleting the 0. any clues anyone?

    select the cells (or column) where you are entering the phone numbers and change the format to "Text":
    Then "Natural" way to write numbers is to omit leading zeros.
    Another ways is to leave the the cell format as "Automatic" and type a single quote BEFORE entering the phone number... like this:
    '0408

  • How to address digital input & output, analogue input & output when communicate with mitsubishi fx1n plc

    dear all,
    i am new to labview, how to code or address digital input & output, analogue input & output when communicate with mitsubishi fx1n plc or crouzet plc.
    pls help.
    HM

    http://search.mywebsearch.com/mywebsearch/redirect.jhtml?searchfor=mitsubishi+fx1n&cb=ZO&p2=%5EZO%5E...
    Try the above link. I know it is a screen-full, but is a search result for Matrikon. They have a whole slew of OPC servers/clients you can try out. Personally, I would go with their OPC server for the Mitsubishi, and use Labview Datasockets. That would be the simplest with the lowest learning curve.
    Otherwise, if you wish to use Modbus, you would have to get the commands/syntax from Mitsubishi; might be in their user manual, but I wouldn't lay bets on it. With the Matrikon stuff, the syntax is all built in.
    Good luck which ever way you decide to go.
    Dave

  • I connected my iPod Touch to a stereo system phono input using a cable with stereo jacks (red and white) on one end and that plugs into the iPod's headphone jack.  The problem is that the sound is extremely muffled and bass-heavy, with little treble.

    I connected my iPod Touch to a stereo system phono input using a cable with stereo jacks (red and white) on one end and that plugs into the iPod's headphone jack.  The problem is that the sound is extremely muffled and bass-heavy, with little treble.  I have to turn the bass control on the stereo receiver to pratically zero in order for the sound coming through the stereo to be acceptable.  Is there a setting on either the iPod or the stereo that I need to change in order to fix this?

    The phono input is for a phonograph.  The iPod does headphne output is not that same as a phongraph output.  Does th stero have an AUX input?  That should be compatible.

  • The components for communicating with FTP servers are not installed.

    I'm running VS 2013 and when I try to publish to ftp site I get the following message. "Unable to create the Web site 'ftp://xx/'. The components for communicating with the FTP servers are not installed."   It has been running fine. I
    can publish to file system, web sites etc, just not through the ftp settings. I can access the ftp sites from my system, using other programs. It is not trying to connect to the ftp site at all.

    Hi paaccess,
    Glad to receive your reply.
    According to your description, since we can publish an application to ftp site in Visual Studio Prof 2013 in our side. Therefore, to further make sure if the issue is related to the VS IDE issue. We suggest
    you try to publish to ftp site on another machine you installed same version of VS Prof 2013 and then check it again.
    If you can publish on another machine, I suggest may need to re-download the
    VS Prof 2013 from Microsoft website and then install it again on your local machine.
    If you still could not publish on another machine, I think that the issue is not related to the VS2013 IDE issue. If possible, I still suggest you post the issue directly to the IIS.NET Forum:
    http://forums.iis.net/,
    it will better help you solve the issue.
    Thanks for your understanding.
    Have a nice day!
    Best Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Any way to provide components to vendor with-out using 541.

    Hi Friends,
    Is there any way to provide components to Vendor with out movement-541.
    Because, system allowing to do GR 101 for parent model (posted 543 automatically), without performing 541.
    Please advise,
    Best regards,
    RAMAN.

    Hi Ven,
    Your problem is not totally clear, please give more details.
    Standard procedure is to send out the subcon-components to your subcontractor via MVT 541 (MB1B + 541 + with or w/o PO reference; ME2O).
    Then you can receive the subcontracting good via MVT 101 and consume the components via 543.
    You can change the stock level of the components by inventory bookings as well
    Please write some sentences about your requirement!
    Thanks,
    Csaba

  • Input currency GBP inconsistent with preferred vendor currency EUR for the

    Hello Experts,
    We are facing the below issue while creating the Shopping cart in production.
    "input currency GBP inconsistent with preferred vendor currency EUR for the line item 00001" .
    the same scenario we have replicated in the lower system, there we were able to create SC. we are using classic scenario.
    We have also checked that vendor currency in the backend system. everything seems to be fine.
    Please provide your valuable inputs.
    Regards,
    Santhosh Kumar. G

    Hello All,
    Issue has been resolved.
    There was a small mistake in the program.
    Regards,
    Santhosh Kumar G

Maybe you are looking for

  • How can I change my primary email address to the one that I use for my rescue email address?

    I no longer use the email address associated with my apple ID account and the rescue email address I used is now my primary email address for everything, since it its not allowing me to just simply change my email address since its my rescue email ad

  • Windows 8.1 Keeps crashing! Blue screens and I don't know why.

    My computer is crashing randomly. Happens once every few days or so. It started happening when I installed a new fan and heatsink. My cpu never goes over 50 C now so I don't know why it is crashing. Here is the dump file. Please help me :/ Microsoft

  • Adding Image to Header - Pages 5.0

    Hi, I need to add an image to the header in Pages 5.0 (newly updated!) and can't seem to do it!!!! How do I do this, is it even possible? I have tried to Copy Paste, no use. Any help is appreciated, the new version of Pages is quite frankly, annoying

  • Feed Problems, in iTunes ONLY

    My podcast has 2 RSS feeds. They both take the same data and for the first few posts worked perfectly. Now the DivX feed doesn't update anymore in iTunes. However in other RSS readers (FeedBurner, Thunderbird, Safari and Firefox) the feed is bang up-

  • SRM alert mails after the workflow is completed

    Hi Experts, I have a shopping cart, for which a PO is created. It means, the workflow is completed for it. Now the user has tried to delete the line item of the shopping cart in the portal(which is not possible as the PO is generated). A email was tr