MRP - How to set PR to be firmed after released?

Dear SAP Experts,
I have a question related to MRP.
In my client, the MRP run will create PR directly without Planned Order.
The problem is, the MRP will delete the PR if the reservation is cancelled;
even if the PR is already released.
Is there any possible way to automatically set the PR to be firmed/fixed after it is released?
The purpose is so that the MRP will not delete the PR, even if the reservation is cancelled.
I really need your advice for this matter.
Thank you very much.
Regards,
Rumata

He,
in the costomizing of the realse code you detrmin if the requsition will be firmd or not.
in IMG go to :Purchasing->Purchase Requisition->Release Procedure->Procedure with Classification-> Set Up Procedure with Classification
click on :Release indicator
click on the finel release indicator and set the V for:
Fixed for requirements planning
good luck
Shachar

Similar Messages

  • After shirring Blu-ray does not want to read disk. If it's setting, how to setting correctly. This happened after update.  Final Cut Pro X 10.1.1

    After shirring Blu-ray does not want to read disk. If it's setting, how to setting correctly.
    This happened after update.
    Final Cut Pro X 10.1.1 & Mac Pro 10.9.2

    Just refuse to open.
    Player show me first page (background) & refuse to open.
    Thanks. Greg.

  • How to set current row in table after use tab key on inputText

    Hello all,
    My first post .., I'm newbie in ADF and I will try to explain my problem.
    For the moment we use ADF 11g (11.1.1.4), in a jsff page I have a table with an inputText column.
    On the valueChangeListener of the inputText, I invoke a method in a viewScope bean which call an EJB method, make some services in the EJB on the line modified. After that I refresh the VO and the table (because others values on the line have been modified) and reset the focus on the same inputText modified by the user with javaScript because focus was lost after refresh.
    So far, everything works fine.
    When I use the arrow keys to change the selected row in the table, it's work fine (focus is still in the next or previous inputText), but if user try to use tab key to change the current line, the inputText on the next line have the focus but the current row of the table is not changed (I think it's normal).
    My question : how can I change the current row after tab key pressed in this case ?
    I don't know if it's really clear, not easy to explain, don't hesitate to ask more details.
    Thanks in advance.

    Frank Nimphius wrote:
    Hi,
    My question : how can I change the current row after tab key pressed in this case ?
    Use a client event to listen for the keyboard entry and intercept the tab. The use af:serverListener to call the server to set the rowKey on the table and issue a PPR for the table to re-paint
    See sample 11 on http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples
    to learn about how to use the client listener and server listener
    FrankHi,
    Thanks a lot for your advices, I used the client and server listener
    I used this code on the method call in order to change the selection after key tab pressed, I don't know if it can be easier, but it works.
              if (LOGGER.isDebugEnabled()) {
              LOGGER.debug("START changeSelectedRow");
              RowKeySet oldRowKeySet = myTable.getSelectedRowKeys(); // get oldRowKeySet
              if (oldRowKeySet == null) {
                   if (LOGGER.isDebugEnabled()) {
                        LOGGER.debug("oldRowKeySet is null");
                   return;
              RowKeySetImpl newRowKeySet = new RowKeySetImpl(); // The new RowKeySet use to change the selectedRow
              DCIteratorBinding bindingIterator = ADFUtils.findIterator(MY_ITERATOR);
              bindingIterator.setRangeSize(-1);
              // set the new index of the current row.
              int index = bindingIterator.getCurrentRowIndexInRange();
              if (index < bindingIterator.getAllRowsInRange().length - 1) {
                   index++;
              bindingIterator.setCurrentRowIndexInRange(index);
              // get the current row after changed the index
              Row currentRow = bindingIterator.getCurrentRow();
              if (currentRow != null) {
                   ArrayList nextLst = new ArrayList(1);
                   nextLst.add(currentRow.getKey());
                   newRowKeySet.add(nextLst);
                   // set the new selectedRow
                   myTable.setSelectedRowKeys(newRowKeySet);
                   SelectionEvent selectionEvent = new SelectionEvent(oldRowKeySet, newRowKeySet, myTable);
                   selectionEvent.queue();
                   AdfFacesContext.getCurrentInstance().addPartialTarget(myTable);
              if (LOGGER.isDebugEnabled()) {
                   LOGGER.debug("END changeSelectedRow");
    Best Regards
    Benjamin

  • How to set up iCloud on iPad after having mobile me

    I followed the steps to set up iCloud on my iPad. But everytime I go to icloud.com, all i get are the steps to set up iclod. How do I get it to work?

    Login to MobileMe with Safarai and it will prompt you to convert to iCloud.

  • How to set iPod to eject automatically after sync?

    Hi!
    My mother's iPod "ejects" automatically after syncing. Mine, I have to click the eject button. Mine is 8 GB hers is 4 GB, but both are third generation. How can I set it up to eject my iPod automatically after sync, like my mother's?
    Thank you!

    Do you have your 8 GB iPod set to Enable Disk Mode? If so, that would explain it since doing that requires you to manually eject the iPod.

  • How to set textfield.text on frame after goto

    This seems a little ridiculous to be asking this question coz
    it seems like it should be so simple but here goes anyway.
    STEPS TO RECREATE:
    Step 1 - create a class called simpleButt(see attached)
    Step 2 - create a MovieClip with two frame labels on
    different keyframes- ROLLOVER and ROLLOUT. on these different
    keyframes place a dynamic textfield with instance name -
    'buttonTitle'. give it different styling attributes on the ROLLOVER
    frame such as text colour, bold or even a glow filter.
    Step 3 - In the movie clip's linkage properties, give it the
    'simpleButt' class.
    Step 4 - With nothing on the stage, add the following two
    lines to frame actions:
    var newButt:simpleButt=new simpleButt("hello");
    this.addChild(newButt);
    Step 5 - compile!
    this should add a simple button to the stage and set the
    button's textfield's text property.
    However, after going to another frame on rollover, we lose
    the dynamic text - i assume because we have another instance of the
    textfield on a different keyframe because it has new styling
    properties on rollover. but if i try to set the text after going to
    the new frame, it doesn't seem to recognise the textfield yet.
    (uncomment lines in simpleButt to see what i mean)
    through trial and error i've found that if i wait two
    ENTERFRAMEs, the textfield object becomes available, but by this
    time the textfield flickers. is there an event i'm missing or
    function i could override where i could set the properties of an
    object on a frame after a gotoAndStop before it is rendered?
    cheers
    Craig

    STEP 2(where the textfield was created) is all done manually
    within the authoring environment - no actionscript. This is usually
    done by the design team here so to save time i'm trying to avoid
    replicating every style change they've made in code.

  • How to set opportunity under more option after saving activity.

    Hi,
    After creating activity  i want to make opportunity under more option in over view page button. but we have here follow up one facility is there under this opportunity transaction is there but i need to show opportunity in more option it self not in under follow up. i need to create for this Action profile first then i need to show in web ui. how can i show in web ui under more option.
    please guide me.
    rose.

    Hi,
    to get the button in the button list you have to redefine the method IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS in the implementation class of your overview view.
    example for a new button:
    CLEAR ls_button.
          ls_button-type     = cl_thtmlb_util=>gc_separator.
          ls_button-enabled  = abap_true.
          APPEND ls_button TO rt_buttons.
          CLEAR ls_button.
          ls_button-type     = cl_thtmlb_util=>gc_icon_nav_forward.
          ls_button-text     = '60 Tage verschieben'(001).
          ls_button-tooltip  = 'Fälligkeitstermine um 60 Tage verschieben'(002).
          ls_button-on_click = 'SHIFT60'.                         "#EC NOTEXT
          ls_button-page_id  = me->component_id.
          ls_button-enabled  = abap_true.
          APPEND ls_button TO rt_buttons.
          CLEAR ls_button.
    The first part is the separator, the second part is the button itself. Here the ls_button-on_click is important. This is the name of the eventhandler you call by clicking the button. Just create the eventhanlder with the same name for your view. Inside the eventhanlder you could code whatever is required.
    I hope this helps.
    Kind regards
    Manfred

  • How to set paths for  bc4j Project in release 2

    Hi
    I have a workspace with 2 projects 1 bc4j and the other contains my jsps etc
    They were created in JDev9i RC
    I have recreated my connections in release 2
    I have opened the projects in Release 2 I am trying to run the bc4j Project to test if all is working in release 2 and I got a whole host of errors like:
    -jsp files must reside in the server root directory or a subdirectory beneath it
    -cannot access directory javax\servlet\jsp : verify that directory is reachable from classpath and \or sourcepath
    -cannot access class oracle.jsp.runtime.HttpJsp : file oracle\jsp\runtime\Http.Class not found
    It seems like there is something I need to specify in the classpath /path
    but I am not sure what
    Any one know?
    thanks

    Hi
    Thanks for your response
    The bc4j project compiles and runs fine now
    but I am still getting a runtime error
    when I run the jsp project
    the error is
    JBO-33001: Cannot find the configuration file /IntranetPackage2/common/bc4j.xcfg in the classpath
    I have tried including that path in the java source path but still no effect
    It appears there is a little snag at each step of the way

  • System Staus not set as REL in PD after releasing the project

    Hi All,
    I am new in SAP PS.Please help me in this issue.
    I am working on the IDES System( Sand box).
    Issue is as follows:-
    Before booking actual cost in activities we need to release the project first.
    But i am not able to release the Project definition directly. It is giving error as E:ZSTAT:000.
    But i am able to release the WBS Elements underneath that and after that i can confirm the activities and book costs.
    But when i am trying to release the PD directly, REL status is set but immediately after saving it gives E:ZSTAT:000 error and again it is in CRT status.
    KIndly help me in setting the status.
    What can be the issues?

    The error depicted is not a standard SAP error. Its a customized error that has been maintained via validation.
    Validations work at the time of 'Save', therefore the error occurs when you save and not when you release. Execute OPSI and verify the validation condition that is causing this error.
    Once you are able to determine and understand the condition that is causing the error you will be able to fulfill it or remove the validation altogether (although this is not recommended).
    Regards,
    Ammar
    Edited by: Ammar Zaheer Syed on Oct 18, 2011 2:40 PM

  • How to use Time Machine before and after installing a new hard drive

    So basically I'm buying a new hard drive for my Macbook pro and I have a lot of files on my computer that I would like to save. I have never used Time Machine before so I need help on how to set it up before AND after installing the harddrive so my files get transferred onto the new hard drive. Thanks in advance

    wjosten wrote:
    Me, I would never use Time Machine to do this. What I'd suggest you do is get an exterior enclosure for your new drive. Then use either Carbon Copy Cloner or SuperDuper to clone your existing drive to your new drive. Once done, verify your clone is bootable & all of your data present. Then swap drives & use your old drive for Time Machine backups(after erasing it). Then get another drive & exterior enclosure to regularly clone your new drive to.
    Unless he was swapping for a lower capacity HDD or to a lower capacity SSD, then the old drive would make a lousy Time Machine disk.  However, whenever I swap out a disk I do exactly what you do.  CCC to get the ol drive onto a new one.  Test by starting up to the new (but still external drive).  Then replace the internal drive.
    I usually just sell the old drive on eBay.  My Time Machine backup is always 2X the size of the internal drive, which I believe is a bit above recommendations, but works for me.  The price of large external drives is almost the same as smaller internal ones.

  • How to set MRP by MD04

    Dear
    I have Material master by setting in view MRP1 like below :
    MRP Type =  VB
    Reorder point  = 10
    rounding value = 5
    Now, my Stock on hand = 10
    When I use tCode MD04 for listing stock/ Requirement the result "MRP element" for PurRqs nothing, so I can't Create PR by MD04
    but if when my stock on hand = 9,  I found that
    Now My question : How to set for MRP, in order to "When My stock on hand = Reorder point then I can use to create PR by MD04 ?"
    thanks
    imron

    Hi,
    The system will not generate a P req until the stock has fallen BELOW the reorder point (not equal to it).
    So if you want the system to generate a P req when the stock reaches 10 you need to set the reorder point at 11.
    Steve B

  • How to set up for user's request to go through a specific module that i selected

    I am testing if it is possible all requests from users should go through a module
    that i made or not.
    For example, all most web server is setted all requests should go through the
    log module for writing log when users request a certain page.
    Like this, how to set up the configuration all request should go through a certain
    module.
    Would you tell me the answer please.

    Power on the Time Capsule for a few minutes, then hold in the reset button firmly with a ball point pen or something similar for 10 seconds and release. Allow a full minute for the Time Capsule to restart to a slow, blinking amber light.
    Connect an Ethernet cable from one of the LAN <--> Ethernet ports on the back of the Uverse router to the WAN "O" port on the Time Capsule
    On your Mac, open up Macintosh HD > Applications > Utilities > AirPort Utility
    Click on the Other WiFi Devices tab
    Click on the Time Capsule
    The setup utility will open up automatically and take a minute to analyze the connections then suggest a setup on a screen that looks like this:
    Type in a simple name that you want to use for the Wireless Network Name
    Type in a name that you want to use for the Time Capsule device
    Type in a password
    Verify the password
    Click Next
    The utility will set everything up for you in a minute or two. When you see the message of Setup Complete on the screen, click Done
    You can now log onto the wireless network that you created by selecting the name and entering the password
    Post back on your progress and we will next get backups going again

  • In Transaction code va41 how to set default sales contract start date

    Hi ,
    In Transaction code " VA41 "  how to set default sales contract start date and end date.
    Can any one tell me the correct user exit for the same.
    Thanks
    Basu

    hi,
    u have to use user exits  or badis.
    use sutable exits mentioned below.
    SDTRM001  Reschedule schedule lines without a new ATP check          
    SDVFX006  User exit: Tax line (transfer to accounting)               
    V45A0001  Determine alternative materials for product selection      
    V45A0002  Predefine sold-to party in sales document                  
    V45A0003  Collector for customer function modulpool MV45A            
    V45A0004  Copy packing proposal                                      
    V45E0001  Update the purchase order from the sales order             
    V45E0002  Data transfer in procurement elements (PRreq., assembly)   
    V45L0001  SD component supplier processing (customer enhancements)   
    V45P0001  SD customer function for cross-company code sales          
    V45S0001  Update sales document from configuration                   
    V45S0003  MRP-relevance for incomplete configuration                 
    V45S0004  Effectivity type in sales order                            
    V45W0001  SD Service Management: Forward Contract Data to Item       
    V46H0001  SD Customer functions for resource-related billing         
    V60F0001  SD Billing plan (customer enhancement) diff. to billing plan
    Edited by: katigiri linganna on Apr 28, 2009 12:19 PM

  • How to set User-field in Plan order

    Hi
    could you tell me please how to set a user-filed in plan order. when I run MRP planing, I can write some data in this filed.
    thanks
    henry

    Hi,
    Actually these user defind fields are used/assigned in the routing.
    Initially u have to define your own user defind profile through OPEC transaction.
    Assign this profile in the routing.
    So when ur executing Mfg activities, suppose if ur using some high materials like silver...etc.
    Then after executing the particular operation some amount of silver chips or silver scrap will generated .
    To keep chip/scrap qty operation and date which user defind is used.
    Once u have assigned this profile to routing, then it will be automatically copied in the planned order/production order.when ur confirming the order then u have to enter the all related data.
    Regards
    Vijay

  • How to set Confrimed quantity as 0 in the sales order line item

    hi all
    i have a requirement that my user dont want to see confirmed quantity in the sales order line item.
    scenario is make to order.
    i have set strategy group is 20 -make to order
                                            MRP Type is PD
                                           Lot size -
    EX , still its showing confirmed quantity.
    could pls any one tell me how to set 0 quantity in the sales order line item
    thnx

    Dear Sateesh,
    If the availability check is carried out and stock is not there in our plant, then it will show the confirmed quantity as Zero.
    If you don't want to carry out the availability check,
    To achieve this,
    1. Remove the availability check in the transaction OVZG against your requirement class.
    You can find the requirement type assigned to the sale order in the procurement tab.
    In OVZH transaction, you can find the requirement class assigned to your requirement type.
    2. Remove the availability check for your schedule line category in VOV6.
    In the material master MRP3 view, you ll be having Availability check, there you need to specify the availability check..
    If you specify it as KP(No check), then it will confirm the qty, though the stock is not there in our plant..
    To meet your requirement, you have to prefer user exit.(Correct me if I am wrong)
    Thanks,
    Venkatesh.S.P

Maybe you are looking for

  • Music on iPod is showing as other & will not sync or restore

    Can someone please help?? I turned on my iPod & noticed that all the music was gone. I seen the same amount of space was being used but instead of showing as music storage it is showing as other storage. I didn't think this would be such a problem si

  • Can't copy files to external hard drive

    I have had both my MacBook and external hard drive for over three years now, and have never had a problem. In the last week, my external hard drive stopped letting me copy files onto it. When you try to drag and drop it just comes up with the blocked

  • Is adobe photoshop elements network-friendly?

    Hello. I have all my pictures stored at a server (LAN), and I need to access (and also edit) a central catalog which should be located at the server, from various other PCs. Is this possible and friendly?

  • Adobe pdf objects dump

    Hi experts , Runtime Errors         UNCAUGHT_EXCEPTION                                                           Except.                CX_FP_RUNTIME_USAGE                                                          Date and Time          17.09.2010 09:

  • Can I use 2 computers with 1 Creative Cloud subscription?

    Just want to make sure I can have CS6 on my desktop and laptop with the 1 Creative Cloud sub.