Enforce Integer Requirements - Component Qty in Fraction

I have Enforce Integer Requirements set to 'UP' and rounding_control_type for component items set to 1. Still BOM Component details shows Yield% in fractions and the component quantities in WIP are in fractions.
Am I missing any setup or my understanding for 'Enforce Integer Requirements' is wrong??
Sincerely,
Sandy

We are facing a similar issue. WIP does not honor the "Enforce Integer Requirement" setting on the BOM. It is only used by ASCP. There is an enhancement request with Oracle to make this change, but it has not been addressed yet (according to my the response our metalink SR this week).

Similar Messages

  • Fetching open component qty against production order

    Hi
    The requirement is to fetch component 'open quantity' for a production order. [ Open quantity = requirement - withdrawn qty of the component ]
    Can we get it through /SAPAPO/OM_ORDER_GET_DATA ? I could see the requirement quantity but not the quantity required.
    Thanks in advance...
    Yogesh

    Hi PP_HKV,
    I did as you told me  about use MB1A/261 against production order and you rigth, This not up date any quantity in production order for component only I can see this movoment in option   GOTO --> Documented goods movements, but not in component overview in field Qty withdrawn, It is the same case when I use MB1A/262 transation allow me to do the movment but the quantity in production order for component is not up date only it is show in GOTO --> Documented goods movements
    I see in standard process it is not work as I expect. Is there some way for to do that any bapi o customization?
    Thanks in advance,
    Julio Werekeitzen

  • Full BOM component qty when follow-up material is effected.

    Dear Experts,
             How to ensure discontinuation / follow-up is implemented on FULL BOM's
             component qty, and not partial.
              Example : A requires 3B, and B is follow-up with C upon discontinuation.
                             Planned order of A should only contain 3B or 3C, not mixture eg. 1B
                             and 2C etc.
              How can the control be implemented ?

    Dear Pradeep, Rajesha & all,
          Assume BOM of "A" indicates component B qty 10 is follow-up with component C qty 10.
          Material B (say, balance 1 qty) is received into Store Y (MRP Relevant). Thus to exclude material B from MRP, we have to manually transfer stock to store X (Not MRP Relevant).
          This would mean, we have to perform manual tracking such that this store transfer is done, to force SAP to direct to material C, so that we either accept 10B or 10C in planned order and nothing else.
         Not forgetting, I could have another follow-up in another bom such that 1B = 1C. Thus, the material 1B I transfered to store X (Not MRP relevant) can actually be use in this case.
    <b>    Thus, from BOM explosion, is there a way to control discontontinuation to follow-up, based on full component qty specified in BOM ?</b>
    <u><b>My Setting as follows :</b></u>
    <b>(1)</b> Material Master of "B" : MRP4 specify (a) Discontinuation Indicator "1", (b) effective-out date, (c) Follow-up material "C"
    <b>(2)</b> In Bom of "A" (parent of "B") :
    - Item "B", indicate discontinuation group "A1"
    - Create item "C" and indicate follow-up group "A1" and qty to be follow-up upon B discontinuation.
    Thank you for your guidance !

  • How to get the Calculated Component Qty  of BOM in BI

    Hi Gurus,
    I am working on a requirement where I need to get the BOM Calculated Component Qty which we see in CS11.
    The way it is getting calculated in ECC is :- If a Component has an Assembly then We take the Base quantity of that material from STKO table and Take the Component qty of its component and multiply the Component qty of The component and the component qty of the Material for which the assembly exist and divide it by the base qty of the component  of the Assembly.
    We need to put the same logic in BI. can anyone please help me how i can accomplish this.
    Thanks!

    CLOSED

  • When I open iTunes, this window pops up. "A required component is not installed. Please reinstall iTunes. (-42076)" I have not been able to sync my iPhone after restoring it. Can anyone help?

    When I open iTunes, this window pops up. "A required component is not installed. Please reinstall iTunes. (-42076)" I have not been able to sync my iPhone after restoring it. Can anyone help?

    Download iTunes 11 from the Apple site and reinstall. The error message was quite plain in telling you what to do to resolve the error.

  • HELP! How do I enforce a required field

    All
    I do hope someone can help me with this!!!
    I have a pdf where I require the person before submitting to check a check box to confirm they understand a key statement. the checkbox is called Confirm.
    I have seen some javascript here http://forums.adobe.com/thread/784322 which uses on blur - but the assumption is that the user has tabbed into the field concerned... what if they skip over it?
    So... I decided to put some Javascript into the submit button...
    the submit button currently has 3 Actions on mouse up
    first it runs the following javascript
    if (Confirmed.value.length == 0)
        {app.alert("The confirmation box must be checked. Please confirm.")
    then it performs  file>save as>pdf
    then it performs submit a form and emails the pdf
    My question is - Why if you have denoted a field as required does adobe allow you to save and email a form where these fields have not been completed??? surely this is a huge bug??
    ok... but the logic I put in with the first javascript does not get triggered, can anyone explain why not? .... more importantly... can anyone help me with some code which achieves this desired effect -
    when the form is submitted, I need to check if the checkbox has been checked and if not display the above alert AND exit out of the rest of the submit actions.
    thanks
    george

A: HELP! How do I enforce a required field

It is not at all a huge bug. Some thoughts:
1. Your script isn't working because it's not correct. If you want to check the state of a check box and do something based its state, the code could be something like:
// Get the value of the check box with the field name "Confirmed"
var v = getField("Confirmed").value;
// The field value with either be the string "Off" (if not selected) or the export value (if selected)
if (v !== "Off") {
    // Proceed with the submit here
    submitForm({cURL: "[email protected]", cSubmitAs: "PDF"});
} else {
    // Check box not selected. so alert the user
    app.alert("You must select the \'Confirmed\' check box before you can submit this form.", 3);
2. Even if a check box is set as required, it won't prevent the submit form action or JavaScript from submitting. This is because the field always has a value. This is different for a radio button group. If none in a radio button group that is makred as required is selected, then the submit won't be allowed to take place until one is. This is just how it works, so you have to use a script instead as shown above.
3. Can you explain why you want to save the form before it is submitted? It is automatically done when the entire PDF is submitted, so there normally wouldn't be a need to do this.
4. Use just a single JavaScript action. If you use multimple actions, the are independent from one another, so one can't prevent a subsequent one from being triggered.

It is not at all a huge bug. Some thoughts:
1. Your script isn't working because it's not correct. If you want to check the state of a check box and do something based its state, the code could be something like:
// Get the value of the check box with the field name "Confirmed"
var v = getField("Confirmed").value;
// The field value with either be the string "Off" (if not selected) or the export value (if selected)
if (v !== "Off") {
    // Proceed with the submit here
    submitForm({cURL: "[email protected]", cSubmitAs: "PDF"});
} else {
    // Check box not selected. so alert the user
    app.alert("You must select the \'Confirmed\' check box before you can submit this form.", 3);
2. Even if a check box is set as required, it won't prevent the submit form action or JavaScript from submitting. This is because the field always has a value. This is different for a radio button group. If none in a radio button group that is makred as required is selected, then the submit won't be allowed to take place until one is. This is just how it works, so you have to use a script instead as shown above.
3. Can you explain why you want to save the form before it is submitted? It is automatically done when the entire PDF is submitted, so there normally wouldn't be a need to do this.
4. Use just a single JavaScript action. If you use multimple actions, the are independent from one another, so one can't prevent a subsequent one from being triggered.

  • Po quantity and Component qty should be same Whildoing Subcontracting PO.

    Hello friends
    I need to do the following setting.
    While doing Subcontracting Purchase Order the Ordered Quantity  entered is to be reflect  Component Quantity.  ( Without entering component qty, automatically ordered qty should come in component qty). The reason is that user should not commit any mistake while doing po.
    Where can i control this. Is there any customization setting or Material Master setting.
    Please give me suggesition. Urgent.
    Thanks and Regards
    Sitaram

    Hi Sitaram,
    As you have maintained the BOM for that material/Plant.
    The finished material and components are maintained with the quantities,
    When you creating  the Subcontracting PO you enter the Material number in the item level
    in the material data tab you have 2 options Components and Explode BOM,
    If you click the Components the system will ask you to enter the components and their quantity.
    If you click the Explode BOM system will pick the components and their quantity from the BOM which is already maintained for that finishing material.
    So no need to maintain the quantity manually by Users, if you use explode BOM options.
    rgds
    Chidanand

  • Data entry- bom component qty in decimals

    Hi, We need to enter bom component qty with 4 decimal places like 9.0001 mm etc. as the table field structure is set as 3 for decimal places, it is not allowing to enter. Also tried with su01 as well as cuni settings. Please advise is there any way to set the bom component qty in more than 3 decimal places?

    Hi
    System will allow only upto 3 places after decimal.check in CUNI
    can u plz tell me wat is the relevance of 9.0001 mm if your planning is in Metres.it doesnt matter after 3 places of decimal.as per business process.even simple mathematics round off it to 9.0 mm
    check and revert
    Regards
    Anupam Sharma
    Edited by: anupam sharma on Nov 18, 2009 5:48 PM

  • How to set focus to required component in the application

    Hi all,
    Based on user events, I want to set focus dynamically to required component/panel in the application.
    Is this possible? is yes, pls give me api for that!

    [http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JComponent.html#requestFocusInWindow()]
    A panel is not focusable by default.
    If you want a panel to get the focus you have to use panel.setFocusable(true) first.

  • When I try to download a song I receive the following error "A required component is not installed.  Please repair or reinstall (-42404).  I have tried re-installing and it still does not work.

    When I try to download a song I receive the following error "A required component is not installed.  Please repair or reinstall (-42404).  I have tried to reinstall and still receive the same error.

    This procedure might work or might not work:
    Download the free Ccleaner and repair your Registry
    http://www.piriform.com/ccleaner/download/standard
    Uninstall iTunes according to Apple's directions here
    http://support.apple.com/kb/HT1925
    Use Ccleaner and repair your Registry again just in case.
    Then download/install iTunes again from the Apple website
    http://www.apple.com/itunes/
    Your iTunes content will not be removed,
    Please regularly backup your iTunes content to external medium (hard drive, cd/dvd's) using the File>Backup Library in iTunes. Apple will not reissue new copies of content.
    (Notice: this post is a copy/paste in a hope that a uninstall/reinstall and repair of your Registry may solve your particular issue, Windows issues are particular difficult to resolve due to multiple factors, so my advice is to be taken into advisement with others recommendations which may be more specific or experienced in resolving your issue. If it or others recommendations solve your issue, please respond back with a "Correct" or "Helpful" or not resolved responses so we can further refine our efforts in trying to successfully assist others. I receive no compensation for product mention.)

  • Patch 4247037 Required component missing  oracle.sdo.locator, 11.2.0

    Hi Hussein & Srini,
    Need you help again . After Installing 11.2.0.3 x86_64 software (files 1of7.zip and 2of7.zip of patch 10404530) & runned the Installer from Example..
    as part of part of upgrading the Vision database version from 11.1.0.7 to 11.2.0.3 in EBS 12.1.1 according to[ID 837570.1] and MOS Doc 1058763.1}
    I followed the steps mentioned in http://chavalis.blogspot.in/2012/10/upgrading-r12-11-vision-database.html#!/2012/10/upgrading-r12-11-vision-database.html
    When am trying to apply this patch 4247037 getting this Error.. Please advise ..
    [oracle@ebs ~]$ echo $ORACLE_HOME
    /oracle/VIS/db/tech_st/11.1.0
    [oracle@ebs ~]$ /oracle/VIS/db/tech_st/11.2.0.3/OPatch/opatch apply /home/oracle/4247037
    Patch 4247037: Required component(s) missing : [ oracle.sdo.locator, 11.2.0.3.0 ]
    [Apr 6, 2013 2:36:25 AM] [ Error during Prerequisite for apply phase ] Detail: OUI-67074:ApplySession failed during prerequisite checks: Prerequisite check "CheckApplicable" failed.
    [Apr 6, 2013 2:36:25 AM] OUI-67035:System intact, OPatch will not attempt to restore the system
    [Apr 6, 2013 2:36:25 AM] --------------------------------------------------------------------------------
    [Apr 6, 2013 2:36:25 AM] The following warnings have occurred during OPatch execution:
    [Apr 6, 2013 2:36:25 AM] 1) OUI-67620:Interim patch 4247037 is a superset of the patch(es) [  4247037 ] in the Oracle Home
    [Apr 6, 2013 2:36:25 AM] --------------------------------------------------------------------------------
    [Apr 6, 2013 2:36:25 AM] Finishing ApplySession at Sat Apr 06 02:36:25 GMT+05:30 2013
    [Apr 6, 2013 2:36:25 AM] Total time spent waiting for user-input is 0 seconds. Finish at Sat Apr 06 02:36:25 GMT+05:30 2013
    [Apr 6, 2013 2:36:25 AM] Log file location: /oracle/VIS/db/tech_st/11.1.0/cfgtoollogs/opatch/opatch2013-04-06_02-36-18AM.log
    [Apr 6, 2013 2:36:25 AM] Stack Description: oracle.opatch.PrereqFailedException: Prerequisite check "CheckApplicable" failed.
    [Apr 6, 2013 2:36:25 AM] StackTrace: oracle.opatch.OPatchSessionHelper.runApplyPrereqs(OPatchSessionHelper.java:4835)
    [Apr 6, 2013 2:36:25 AM] StackTrace: oracle.opatch.ApplySession.processLocal(ApplySession.java:3888)
    [Apr 6, 2013 2:36:25 AM] StackTrace: oracle.opatch.ApplySession.process(ApplySession.java:5853)
    [Apr 6, 2013 2:36:25 AM] StackTrace: oracle.opatch.OPatchSession.main(OPatchSession.java:1787)
    [Apr 6, 2013 2:36:25 AM] StackTrace: oracle.opatch.OPatch.main(OPatch.java:651)
    Couldn't understand even after going the Readme of the patch... Do i need to set the Oracle_Home to to new Oracle_home to /oracle/VIS/db/tech_st/11.2.0.3 as it not specifically mentioned
    in the readme of the Patch Or in http://chavalis.blogspot.in/2012/10/upgrading-r12-11-vision-database.html#!/2012/10/upgrading-r12-11-vision-database.html ..
    Or Perhaps i couldn't get it..... Please suggest
    Thanks
    Priya
    Edited by: 971054 on Apr 5, 2013 2:39 PM

    when i changed the Oracle_home i.e
    [oracle@ebs ~]$ export $ORACLE_HOME=/oracle/VIS/db/tech_st/11.2.0.3/
    [oracle@ebs 4247037]$ /oracle/VIS/db/tech_st/11.2.0.3/OPatch/opatch apply /home/oracle/4247037
    Invoking OPatch 11.2.0.1.7
    Oracle Interim Patch Installer version 11.2.0.1.7
    Copyright (c) 2011, Oracle Corporation. All rights reserved.
    Oracle Home : /oracle/VIS/db/tech_st/11.2.0.3
    Central Inventory : /oracle/oraInventory
    from : /etc/oraInst.loc
    OPatch version : 11.2.0.1.7
    OUI version : 11.2.0.3.0
    Log file location : /oracle/VIS/db/tech_st/11.2.0.3/cfgtoollogs/opatch/opatch2013-04-06_03-07-37AM.log
    Applying interim patch '4247037' to OH '/oracle/VIS/db/tech_st/11.2.0.3'
    Verifying environment and performing prerequisite checks...
    Do you want to proceed? y
    y
    User Responded with: Y
    All checks passed.
    Backing up files...
    Patching component oracle.sdo.locator, 11.2.0.3.0...
    Patch 4247037 successfully applied
    Log file location: /oracle/VIS/db/tech_st/11.2.0.3/cfgtoollogs/opatch/opatch2013-04-06_03-07-37AM.log
    OPatch succeeded.
    [oracle@ebs 4247037]$
    I am not sure whether this is the correct way to do it. as setting the ORACLE_HOME to the new one isn't mentioned in Readme of the Patch
    Or Surely I could NOt understand it... Please suggest
    Thanks
    Priya

  • Floating point - Component qty

    Dear S Nanda Kumar  & Chikri,
    I am tring use of CUNI for entering component qty. upto 6 decimal places.
    On CUNI Change unit of measurement screen , I have entered decimal places as 8 , decimal places rounding as 6 but still system gives error message if I enter 4 decimal places (0.1234)
    Error message - Input must be in the format _ ___ ___ __~,___V.
    Pl help. & also explain how to use exponent 0.123 * 10 (power -3)

    Hi,
    Please take help of ABAP consultant.
    Regards,
    Suhas

  • Unable to load required component 'Unicows.dll'

    英語版 Windows/Adobe Acrobat Reader を使用している外国人社員と PDF 文書を交換したく、日本語版 Windows XP Professional SP1a/Microsoft Word 2003/Adobe Acrobat 7.0 for Windows を用いて PDFMaker 経由で作成した PDF ファイルを上述英語環境(Acrobat Reader 6.0/7.0)で開くと "Unable to load required component 'Unicows.dll'" というエラーが表示され、開く事が出来ません。この障害はエクスプローラーから PDF ファイルをダブルクリックで開くと生じますが、Acrobat Reader 起動後に File -> Open によって PDF ファイルを開くと生じません。

    解決しました。
    問題は Acrobat では無く、当方の環境に有りました。
    日本語版 Windows XP を host OS とし、英語版 Windows XP を guest OS として、host OS 上の C:¥TEMP フォルダーを VMware の host share holder 機能を利用して guest OS に見せていたのですが、この folder を Exploler で参照すると、当該メッセージを出力する事が判明しました。
    推測するに、Exploler にはアクセス対象のファイルシステム属性を判断する機能があり、日本語 Windows XP 上では Unicows.dll を必要としないが、(本来 SBCS 環境である)英語 Windows XP では勘違いして Unicows.dll を読み込もうとする模様です(御承知の通り、Windows 2000 以降には Unicows.dll は存在しません)。

  • Required component home not found for component 'oracle.as.jrf'

    I am getting the above error message during unpacking a template. Below is what I have done..
    First machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed with 2 managed servers up and running fine.
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    Want to create another managed server on a second machine where the First machine has the Admin server..
    Second machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    I go to the first machine and do a ./pack.sh command to create a template with a name of test.jar and it is successful. Use the -log command to see the logs.(everything is fine)
    I copy the above created template test.jar to the second machine..
    Than on the second machine, I do the ./unpack.sh command in the $WLS_HOME/common/bin folder and I get the following error message:
    fail: read template from "/u01/app/oracle/middleware/wlserver_10.3/common/bin/test.jar"
    CFGFWK-60550:  Script execution aborted. The script may contain an error.
    Required component home not found for component 'oracle.as.jrf' version '11.1.1.6.0'
    Any ideas would really appreciate it. Both of the machines have the same weblogic installation and paths. The only difference is the amount of memory each machine has that is all.. Thank you

    I am getting the above error message during unpacking a template. Below is what I have done..
    First machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed with 2 managed servers up and running fine.
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    Want to create another managed server on a second machine where the First machine has the Admin server..
    Second machine:
    OS is Oracle Linux 64 bit version 6.4. Weblogic version 11g is installed
    echo $MW_HOME
    /u01/app/oracle/middleware
    echo $WLS_HOME
    /u01/app/oracle/middleware/wlserver_10.3
    echo $DOM_HOME
    /u01/app/oracle/middleware/user_projects/domains/ClassicDomain
    I go to the first machine and do a ./pack.sh command to create a template with a name of test.jar and it is successful. Use the -log command to see the logs.(everything is fine)
    I copy the above created template test.jar to the second machine..
    Than on the second machine, I do the ./unpack.sh command in the $WLS_HOME/common/bin folder and I get the following error message:
    fail: read template from "/u01/app/oracle/middleware/wlserver_10.3/common/bin/test.jar"
    CFGFWK-60550:  Script execution aborted. The script may contain an error.
    Required component home not found for component 'oracle.as.jrf' version '11.1.1.6.0'
    Any ideas would really appreciate it. Both of the machines have the same weblogic installation and paths. The only difference is the amount of memory each machine has that is all.. Thank you

  • ITunes 11.04 errors (-42404, -50, required component not installed)

    Help! Following a prompt from Apple SOftware update I just installed the iTunes 11.0.4.4 onto my Windows 7 laptop. SInce then, everything I want to do on iTunes, I can't. I can't connect to my iTunes library stored on my Mac, I can't log into my iTunes account and every time I open iTunes I am told that a required component is not installed and I have to reinstall iTunes. No matter how many times I do this, the problems persist. HAs anyone else had any experience of this and worked out how to fix it?

    Hello prawnboy,
    An repetitive error like that would definitely get frustrating.  I understand that you have already tried reinstalling iTunes, but I recommend uninstalling the iTunes following the steps in the following article and then trying to reinstall iTunes:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/ht1923
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Maybe you are looking for