PO modification even if it is finalized ?  :-(

Hi,
I have a big problem in my prod.environment...  We noticed that EBP can modify a PO document always !!! I mean, even if the PO has a confirmation and invoice in R3 (completely finalized).
I made a test and I can modify the PO (increase the quantity requested for example) and it doesnt show any warning nor error message.    So, it is a big inconsistency issue !  =(
What should I do in order to "avoid" these modification once a PO is completely finalized ?
Thanks for your help !
Regards,
Diego

Hi Bertrand,
yes.. In backend I have these 2 situations:
1. The completely finalized PO have a check indicating that.
2.- If I try to decrease the item's quantity requested, R3 shows an error's message to avoid this change.
3.- If I try to increase the item's quantity requested, R3 permits this action...BUT, the checkbox completely finalized is cleared... With EBP, the completely finalized checkbox is not cleared even with modifications in the PO  =(
What I want to accomplish is: to restrict changes in PO once it is completely finalized (confirmation, invoice).   If the users want to change something, they would need to "reverse" the confirmation and the invoice, and then make the changes to the PO.
Is it possible ?
Regards!
Diego

Similar Messages

  • HELP!  Capture quits even after buying new Final Cut Express HD 3.5

    Had a problem with the quiting of the application upon trying to capture. Thought it was some sort of incompatability with the OS 10.4.9 and my old Final Cut Express program. Accordingly, I upgraded to FCEHD 3.5, thinking everything would be cool.
    Same problem! X?X?X?X??!!
    Anyone with any ideas? I try to capture, and the program immediately quits without any type of error message.
    I Movie captures perfectly.
    George Paul
    G 5   Mac OS X (10.4.9)   power mac dual

    DARN it
    These were two very helpful suggestions. I tried both of them. I could not find any Quick Time receipts, and I trashed the permissions and other files, and repaired the permissions, as indicated on the website.
    HOWEVER, stilll having the same problem. Computers are complex ecosystems, I suppose.
    I am leaving to go visit a couple of nature recording friends, for a week, and will be away from my computer.
    I hope others will read about this problem, and if the spirit moves them, help me solve the mystery. I am sure that all of us have experienced that feeling of frustration when you try to buy the best, and use the best protocols, and the darn thing just won't work.
    Thanks for helping, Community of Final Cut Express Users, especially in the wee hours of the morning.

  • Trackpad Failing even with Multiple "Repairs"

    Hello! I just spend about 25 minutes typing out a detailed email to the apple contact who gave me his contact info personally to follow up with him, but the email failed and said the user did not exist, so I suppose he was either terminated or left the business. Instead of re-hashing everything I am going to literally paste the email I sent him as I don't have much time and i need to finish some class work. Here's the email. (PS. I have tried pretty much everything. and this post is completely sincere and it should fall within apple support guidelines.) This is more of my "story" than anything else.
    Hello Mr. Hartly. I know it has been some time since we last spoke, (5 months to be exact), but I wanted to give you an update on my situation. My Macbook Pro SN: C2*****RJ7 was purchased from you several years ago as a refurbished machine and a Christmas present to me from my parents. I cried. It was the best gift I had ever received. Since that day, the laptop has been the car industry's equivalent of a "lemon". Within the first 2 months of having it, the logic board died. This is before I knew anything of computers (I now am very educated in the subject) and I was glad that I could just get it fixed by replacing it. Once this was done, I almost immediately started having issues with my trackpad on the device. When I would use it for any prolonged period of time it seemed the mouse would freeze somewhere on screen and I couldnt move it. Fastforward a year or so after using a magic mouse, and I am starting college. I would like to have a laptop I can actually use in class without toting a separate mouse that defeats the purpose and convenience of having a laptop, so I take it in again to be worked on. They tell me at Computers Plus in Corridor G in West Virginia ********, the nearest "certified apple repair store" that it is almost definitely a bad trackpad. I fork over more cash to get it replaced. The issue happens within 20 minutes of getting home. I call them back and they say to bring it back in and they would fix it for free, after a week of having my laptop they replace my hard drive and charge me 50 dollars for it and said they "didnt charge me for the labor." like i should be thankful. Fed up at this point, I contact your support team via phone. They were very helpful and I ended up speaking to you ( you can look up my old repair ID: ********.) after speaking to you, you told me to send it to you and you would fix it free of charge. I was so excited at this point. ECSTATIC even. I'm finally going to have an apple macbook pro! I love editing videos and I couldnt wait to install my software onto the laptop and get to work. The fixing process happened extremely quickly. I had it back in less than 2 days which made me nervous considering the fact that the local shop had it for a week. I read what the note in the box said. "1 Replaced Trackpad". So thats 2 trackpads now. I test it out and it still freezes after a couple hours of use. After emailing you, you suggest that I completely reinstall OS X onto the device. Frustrated and put out by the run around and lack of fixes, I put it aside for a while as classes started. About a month and a half ago, I was bored and wanted to do some tinkering, so I made an OS X usb bootable and reinstalled the OS. So excited to see if it worked, I started going through the initial setup and initial menus. about an hour after installing the os and doing some classwork/watching some media, guess what. Freeze. Unresponsive. Frustration. Defeat. I sit the machine aside and tried to forget about everything. No one was going to help me, and I have already spent so much money, that I could have just gotten a NEW MAC TO BEGIN WITH. I could honestly cry when I think about it. Fast-forward a month or so to last week.
    Just the other day, I pull out the machine to let my girlfriend do some classwork on, and she complains that the trackpad is unresponsive and asks for a mouse. Frustrated, I give it to her the magic mouse. With the frustrations and disappointment fresh in my mind, I make a note to find your email address and tell you my whole story from beginning to end. I don't want other people to have the same experience as me. I truly do not want this to be taken as a disgruntled and frustrated boy; I haven't spoken negatively to anyone about the incident and I haven't raged about or talked about it on social media. I WANT apple to succeed. I think you're one of the greatest, if not THE greatest producer of technology on the planet. But right now I'm just a young man taking college classes from his bedroom in need of a working laptop. Thanks for your time and for reading this,
    With all my respect,
    Lukas
    <Personal Information Edited by Host>

    An Iterator.delete() has the spec:
    public void remove()
    Removes from the underlying collection the last element returned by the iterator (optional operation). This method can be called only once per call to next. The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method.
    So when in your example the second iterator modifies the underlying collection it breaks the first instance iterator behavior which has then an unpredictable result.
    Using a List.iterator() seems to change nothing :
    public Iterator iterator()
    Returns an iterator over the elements in this list in proper sequence.
    Specified by:
    iterator in interface Collection
    Returns:
    an iterator over the elements in this list in proper sequence.
    So you code isn't garanty to run as you quote it running. The i2 is safe not i1 if you use i2.remove().
    I did this test:
         List v1 = new Vector();
         v1.add("1");
         v1.add("2");
         v1.add("3");
         Iterator i1 = v1.iterator();
         while (i1.hasNext()) {
              Object o1 = i1.next(); // At second iteration I got a ConcurrentModificationException here.
              Iterator i2 = v1.iterator();
              while (i2.hasNext()) {
                   i2.next();
                   i2.remove();
              System.out.println(o1);
    That's a typical unexpected results because hasNext() answered true but next() failed.
    Now if your question is why this spec, I dunno, I could only guess that the purpose of Iterator generic interface is to allow to have efficient implementation at price of non concurent modification access.

  • Final Cut, Quicktime, and Pro Tools conflicts

    Hi there,
    I'm working on a "situation" I recently encountered, and wonder if anybody else has had this problem.
    I'm trying to upgrade Pro Tools LE to version 6.9.2 with the install discs that were sent to me from Digidesign, and it's wreaking havoc with Final Cut Pro and Quicktime.
    Initially when I installed the upgrade, I was running OSX 10.4.2, FCP 5.0.3 and QT 7.0.2. The Pro Tools upgrade worked fine, as did FCP when I launched it, but Quicktime wouldn't launch- spinning beachball forevermore.
    So after doing all the basics- trashing pref's and render files, repairing permissions, etc.- and finding QT still wouldn't work, I tried upgrading to QT 7.0.3.
    Once I did that, QT still wouldn't work, and Final Cut Pro would no longer launch. It just hung on the application startup screen, at no particular point each time.
    I then upgraded to FCP 5.0.4, and as well OS 10.4.3. No luck. I installed the Pro Application Support updates 2005-02 1.0, and 3.1, and still no luck.
    Since there is not yet a downgrade from QT 7.0.3 to 7.0.2, I ran the 7.0.2 to 7.0.1 installer, and downgraded to QT 7.0.1. QT still wouldn't launch, and FCP still hung on launch but this time it hung at the point where it was loading audio filters.
    I tried removing the audio filters from their folders to see if it would launch then, but that didn't work. At this point, the only thing I could think to do was to uninstall Pro Tools altogether (safe uninstall, not clean uninstall) and this is what finally brought Quicktime and Final Cut back to life. Great, because I use FCP and QT everday, but I no longer have the use of Pro Tools.
    Throughout this process I made sure to diligenty repair permissions, trash prefs, and restart whenever I made a change.
    So I'm not sure at this point how to get Pro Tools LE 6.9.2, Final Cut Pro 5.0.4, and Quicktime (any version above 7.0) to work harmoniously, and I'm unable to spare any more troubleshooting time for a week or so because there are of course, projects due.
    Has anybody else encountered these oddities?
    Thanks a lot,
    Joni

    Hi, Joni C
    I'm Bump,
    I'm having the same trouble, I have FCP I'm running it on a G5 power Mac dual 2.5 ghz with 2.5 gb of memory, my os is 10.4.4. I also have Quicktime pro 7.0.3 and I have Pro Tools LE 7.0, every time I try to use FCP it starts and about five sec. later it shuts back down. I also have a Universal Audio UAD pci card that runs audio plugins and I also have fxpansion program it converts my vst & Au plugins to rtas for pro tools le. IBefore I installed FCP I wiped my hard drive and re installed a fresh version of tiger 10.4 and then I installed FCP studio, then Pro Tools, then all plugin and kept checking to make sure every thing was working correctly and then the U audio stuff with the Vst to rtas wrapper and it all was working fine. I even did the full final cut tutorial still worked fine. Yesterday out of no where final cut just stop working and still all the other programs work fine like dvd studios, soundtrack, motion, pro tools. If you can shead any light on this I would be very greatful
    Bump

  • How can an Interaction Activity be locked out from further edits once final

    Not sure if this is the right forum for this.  I am trying to understand if there is an easy config handle to prevent Interaction Activities created in CRM from being edited once they have been Finalized or Completed and appear in Interaction History.  For Email Activity this is not an issue but for Interaction Activities, the Edit option can still be used to modify the content even after the status=final.  Would very much appreciate any advice.

    In user status shema double click on user status Completed and in new window add business transaction "Change document" and set it to "Forbidden".

  • All final cut events, projects disappeared from external hard drive

    I had a re-start this morning and the event I was working on lost its purple box and its white star. Can't find the project, can't find the event.
    Even more troubling, the Final Cut Events and Library folders on my external hard drive is also gone. Really need some help here. Any ideas?

    It almost looks like all of the original media is gone.

  • How do I create or export a logo in Illustrator CS5 with an alpha channel to use in Final Cut Pro 6?

    To anyone who can help:
    I have created a logo using Illustrator CS5 and need to import it into a video sequence in Final Cut Pro 6.  The logo has a transparent background.  It seems FCP 6 will import both native .ai files as well as .tiff files, but when I open them in FCP 6, the alpha channel (transparent background) is no longer there; there is just the logo over a white background.  Is there a setting or step I am missing?
    Shaun MacLellan

    I have to insert AI images into Final Cut Pro and Motion quite frequently.
    The most effective way I've found to get an AI image into Final Cut is to:
    1. Select/copy all the objects in the AI doc.
    2. Create a new file with a transparent background in Photoshop and paste.
    3. Merge the layers and make sure the mode is RGB.
    4. Save out as a .PNG or .PSD.
    5. Drag the result into Final Cut (or Motion).
    6. Resize and position the result to taste.
    Attempting to export directly from AI to .PSD or .PNG is a wasted effort  and the results may not even be recognized by Final Cut.
    Yes, it requires Photoshop and it is a few extra steps...but it works like a charm.
    Additionally, when creating a new file in Photoshop, you may want to initially set its size to match the aspect ratio of your video. For example, if you're making an HD video, you might set the size to 1280x720 and position the AI elements where they are supposed to be in frame. You can set the AI elements in accurately by cutting and pasting a frame from your video into Photoshop and positioning the AI elements in place on another layer above the video layer. Delete the video layer before saving out as a .PNG or .PSD and it will appear in Final Cut exactly where it should be.

  • Exporting .Mov files at 24fps for Final Cut Pro 5

    I work at an animation production house and we're trying to export .mov files from QT 7.1.2 at 24fps so they won't have to be rendered in a FCP project which is a 720p project with a frame size of 1280x720, we're experimenting with two codecs. We're using Motion Jpeg A and Photo Jpeg, selecting 24fps but for some reason they import into FCP 5 at 10fps. It's as though QT isn't outputting accurate 24fps .mov files. When I export .mov files from FCP they import back into FCP without having to be rendered. What's the difference between the ones exported from QT vs. the .mov files exported from FCP. We're using the exact same settings and files....? The reason we need to use QT to do this is because it needs to be a somewhat automated process (lots of stills to work with) and our PA's are working on Windows with QT only.

    You should post your inquiry at Final Cut Pro section for better support. Anyway, Final Cut Pro does not always recognize the frame rate correctly, depending on which application (and possibly which codec) you used to compress video. For example, Snapz Pro X and Adobe After Effects don't get along with Final Cut Pro in this respect. Furthermore, compressing video in H.264 will be a bad idea. So simply adjust the size of Canvas so that it won't cover the whole screen. In this way, you can even replay video on Canvas and even send it for final production.

  • 2 Questions about final cut pro 5

    My first question is quite simple, I know that previously final cut pro could only use up to 2.5GBs of memory, now I'm just a bit curious if it can use more since leopard is a 64-bit OS. Right now I'm using Final Cut Studio 1. I'm just asking this question since I intend to get an additional 4GB of ram (Right now I only have 2GB) I'm going to get Muskin's MacPro memory. I generally run my system down to about 200MB of free memory and sometimes down to 10MB when I'm using photoshop in conjunction to FCP. What does everyone think about getting an additional 4GB?
    Thanks for the answers.
    Okay, to not make two posts I'm give me final question/Problem. Ever since I've upgraded to Leapord I noticed that the playback quality in the canvas and viewer is poor. There is bad gamma. What I mean by that is that i'm getting extremes in color, I have areas that look normal followed by areas of over saturated color. It's more on the over saturated side though. Besides that the play back quality is poor, even though my sequence settings are at "Best" for video processing. I also seem to get jagged lines on things like railings, people's shoulders, and on other edges. My picture quality is grainy, however there are no artifacts. Even on the FX transistions I get the jagged lines on edges of oh say page peels and what not.
    Now when using DVD player or watching my MPEG2's on DVD Studio, they play poorly too. The image is clear however I get the horizontal lines when there is motion. Now when I put one of my DVD's in my DVD player (not computer) the problem goes away and everything looks fine. This is less of a problem (the horizontal lines), but I don't understand the poor playback quality.
    The video looks fine on my external NTSC video monitor.
    I have the GeForce 7300 graphics card, with the 24" samsung 245BW. I upgraded to 10.5 on a clean install.
    Thanks a lot everyone!!

    Thanks for my memory question!
    However I'm still getting poor looking footage. Even when I open up my source clips and play them they look poor in quality. I'm getting the horizontal lines on everything that moves and corners are not sharp, they look distorted and jagged. I never had this problem before I'm not sure whats the cause or the solution. Even the footage from Final Cut Studio's tutorial looks bad (grainy, strange contrast, jagged corners and lots of horizontal lines). However the edges on my footage look a little more jagged. I think i mentioned it already but the FX transitions that are page peels, cube spins...etc give me jagged edges too.
    I removed flip4mac and all other non-apple codecs too.
    ugh i hate computers sometimes
    -Tom

  • Modification in PR after release

    Hi ,
    We have value based release strategy applicable for all Purchase requisitions and (as per the config settings) there is no modification allowed in PR after final release of PR.
    Now we wanted to give Released PR modification access to some certain users only. How can we do it .... pls let me know in case u hv ever faced such business requirement.
    Regards/-
    Shrey

    Hi,
    1. Go to SPRO > MM > Purchasing > Authorization Management > Define Function Authorizations for Buyers > Function Authorizations: Purchase Order > Here "New Entries" and define Function Authorization Key as "01" and give description.
    OR use T. Code - OMET
    Here under "General parameters" subscreen,
    Enter field selection key as "ME52" or whatever you want for PR modification
    2. Now go to SU01 > Enter User ID (user for which you want PR should be modifiable) > Parameters Tab > Here for Parameter ID EFB i.e. Function Authorization: Purchase Order, maintain value "01" and check in PR will become modifiable for those users.

  • AUC Final Capitalisation Error

    Dear Team,
    With reference to above mentioned subject, We have source structure in place and the same has been maintained in WBS element and Automatic settlement have been done and cost in P&L transferred to Balance sheet GL subsequently based on the source structure assignment in the settlement rule.
    Now we are in the procees of final capitalisation, therefore we have create fixed asset.
    Now while maintaining the same in settlement rule, getting below mentioned error.
    Total = 200.00%, ( Set.Type FUL / Version / Actual settlement ), period 004/2011, source assignment 010
    Message no. KD041.
    Requesting to kindly suggest to proceed further.
    Regards,
    Dilipkumar T
    9902097359

    Dear Waman Shirwaicar ,
    As per the trailing mail getting the error during settlement rule maintainence for final assets with Green indicators, but even after maintaining the final asset in  settlement rule it is not getting settled from AUC a/c to Final Asset.
    Kindly suggest.
    Regards,
    Dilipkumar T

  • MIRO referred to a PO is showing all position, even if completely invoiced

    Hi gurus,
    when I execute MIRO referred to a PO, the system shows me all the position of the PO, even if they are already invoiced.
    The system doesn't let me elaborate them but my Client doesn't want to see them.
    If I click CTRL+F5 the open positions disappear.
    How can I customize MIRO in order to show only open positions?
    Thanks in advance for your help.
    BR
    Anna

    Thanks,
    but the situation is the same and I confirm what the other user answered:
    "Even if I set Final Invoice Indicator in MIRO and booked invoice against the PO systems is showing blank line items (Amt & Qty are blank) in MIRO agaisnt the PO."
    I don't understand how i can customize the system to avoid that.
    With tha Tcode suggested I analize my PO and it results incomplete...but I don't understand where and what missing.
    Thank you for your help.
    BR

  • How to allow prices update even if the SO is invoiced

    In our solution we have the below sales & distribution process:
    One Sales document (ZLVC) ->N Deliveries (ZRL1) -> N invoices (ZF02)
    Item category type: Z12L => the related “Billing relevance” is defined as "A" (delivery related billing document). Mean that Billing is based on the sales document. The billing status depends on the requested delivery quantity
    Specific design :
    For these Sales order we create a multiples schedule lines with unlimited quantities (lines are created through a specific enhancement).
    This means that we can create a multiple outbound deliveries and by consequence we create a multiple invoices.
    Each delivery (schedule line item) is done and billed separately with some frequency (One by month)
    Now, when the Sales order is not invoiced (0 invoices) it is possible to modify the price conditions (manual prices conditions). But if the sales order is invoiced (one or more than one invoice) it is not possible to modify the prices.
    Could you please let me know how can bypass this behavior and allow the price’s modification even if the sales order is invoiced?
    Regards,
    Aymen

    Dear MILADI
    hen the Sales order is not invoiced (0 invoices) it is possible to modify the price conditions (manual prices conditions). But if the sales order is invoiced (one or more than one invoice) it is not possible to modify the prices.
    Dear ,, Yes Your understanding is correct But one way is there to achieve after creation of invoice also  Ex: i have created one sales order 100 rs ..and invoice also 100 rs
    Now company decided i mean 100 rs is not correct price so it would be 110 it means 10 rs extra company will take from the customer ,if customer accepts ..... that is Retro active billing
    Further information please look into this ... Jp sir explained very well
    Retro-Billing SD (VFRB)
    If you have any  doubts please let me know
    venu

  • Final Issue Check box ticked still PR does no get deleted

    Even after ticking the Final Issue check box for a material whose Procurement Parameter is (Requisition + reservation for WBS element ) the requisition does not get deleted. It is still showing up in Md04 transaction. Can anyone let me know the reason. Waiting for your feedback.
    Harsh

    Hi Harsh,
    If the PR is already created, Please go to the PR and in the line item Quantity/dates tab, please tick "Closed". then the requirement should go off from MD04.
    warm regards,
    Srinivas Potluri

  • My G4 (OS 10.5.8) is gradually going slower (getting a lot of rainbow balls) and finally freezes.

    My G4 (OS 10.5.8) keeps going slower and slower after boot-up and eventually start getting beach balls after every action, even scrolling until it finally freezes. The CPU is constantly grinding.

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto *but not including the Serial#*...
    Hardware Overview:
    Machine Name: Power Mac G5 Quad
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 4
    CPU Speed: 2.5 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 10 GB
    Bus Speed: 1.25 GHz
    Boot ROM Version: 5.2.7f1
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    In the Memory tab, are there a lot of Pageouts?

Maybe you are looking for

  • WBS element budget-PO linkage

    Dear All, Kindly let me know how to link purchase order with WBS element. My query is that, client has make Rs.1000 as an approved budget. but while making PO against WBS element, system is allowing to create PO for more than Rs.1000 also. Kindly let

  • JDeveloper 11 Running OC4J + EJB

    Folks I´m having this problem . C:\Java\jdevstudio1111\jdk\bin\javaw.exe -client -classpath C:\Java\jdevstudio1111\j2ee\home\oc4j.jar -javaagent:lib/java/internal/toplink-agent.jar -Xverify:none -XX:MaxPermSize=256m -DcheckForUpdates=adminClientOnly

  • I tried to download Photoshop CS2 but it said the installation failed... What do I do?

    I downloaded a Photoshop CS2, I have a new computer, so I requested a new download. Adobe gave me a new download, but in the process, it said that the installation failed, and that I needed to contact the software  manufacture for assistance. The guy

  • Include in java

    can anyone please tell me the syntax if we want to include a class that we have made into another class like when we use the "#include" keyword in C++?

  • HT3180 Factory Reset Apple TV 3rd gen

    I have Apple TV 3rd gen. Have been trying to restore to factory settings and it has downloaded. Gets to the point of verifying with apple and thencan not be restored because Apple TV update server can't be contacted. Using Windows 7 with latest Itune