ADF Bindings are corrupted when non-ADF Bound resource is referenced first

I have an application that uses ADF BC binding on JSF pages. I recently wrote an image servlet which pulls an image out of the DB and writes it back to the response (so that it can be referenced in an <img> tag, for example). I wrote it to use BC4J to fetch the image BLOB, but it does not reference any page bindings. I use the following to get the app module:
        ImageAmImpl imageAm = (ImageAmImpl) Configuration
          .createRootApplicationModule( "myTestPackage.ImageAm",
                                        "ImageAmLocal" );and the following in a finally block at the end to release it:
        Configuration.releaseRootApplicationModule( imageAm, true );In debugging the image servlet I found that if I hit the image servlet before anything else, my data bindings for other pages appeared to be corrupted.
For example:
Server starts
Then I go to http://127.0.0.1:7101/myApp/imageServlet?imageId=760
Then I go to http://127.0.0.1:7101/myApp/faces/testListPage.jspx which contains an ADF data bound table, and the table is empty.
Similarly:
Server starts
Then I go to http://127.0.0.1:7101/myApp/faces/testListPage.jspx and the table is populated fine.
Then I go to http://127.0.0.1:7101/myApp/imageServlet?imageId=760
I then go back to the table, it’s still populated, but I then have an edit button allowing me to edit an item in the table and my LOV drop down lists (based on ADF bindings) are not populated.
After doing some poking around in web.xml, I realized that only the faces servlet was behind the oracle.adf.model.servlet.ADFBindingFilter. I put the imageServlet behind this filter and everything is working fine now. I’m at a bit of a loss, though, as to why this works. I would expect the binding filter to only be required for resources that access ADF bindings, and the image servlet does not … it operates directly on a checked out app module. While the problem appears to be resolved, I'd like to have a better understanding of why it was broken in the first place and why putting the image servlet behind the ADF Binding filter fixed it.

As far as I can understand, Configuration.createRootApplicationModule() should not be used. This method call is intended for use in an unmanaged mode, i.e. Java client.
Check-out some of the following:
Check Your App for Misuse of Configuration.createRootApplicationModule()
When should I use Configuration.createRootApplicationModule(), and when not?
Regards,
Nick
Edited by: Nick Haralabidis on May 18, 2010 12:15 PM

Similar Messages

  • ADF bindings are not working with inheritance heirarchy.

    ADF bindings are not working with inheritance heirarchy. I am using embedded OC4J in JDeveloper 10.1.3.2.
    For the data model I have the following objects\attributes.
    1) User (abstract EJB 3.0 POJO)
    - Id
    - userId
    - userName
    2) Employee -> extends User (EJB 3.0 POJO)
    - enabled
    - password
    3) Manager -> extends Employee (EJB 3.0 POJO)
    - numOfEmployees
    4) UserSessionBean (Stateless Session Bean)
    - public User findUserByUserId(String userId)
    - public List<User> queryUserFindAll()
    - Object mergeEntity(Object entity)
    I created 2 JSF pages using ADF.
    1) ListUsers.jspx - Lists all the users of type Employee and Manager in a table. You can select an user and chose to modify the user details using a modify button.
    2) ModifyUser.jspx - Modify the selected user and persist the modified user details.
    I implemented ListUsers.jspx by dragging and dropping queryUserFindAll() method from the ADF datacontrol on to the JSF page and selected ADF Table format with selection enabled.
    Similarly for the ModifyUser.jspx page I dragged and dropped the User object returned by findUserByUserId(String userId) and selected ADF Form format. I selected OutputText field types for userId and userName.
    I then created a navigation case from ListUsers.jspx to ModifyUser.jspx and pass the selected user.
    Now when I try to run the web application, ListUsers.jspx correctly displays all the users. Then I select a user of type Employee and click on the modify button. This brings up the ModifyUser.jspx page. However, the UserId text field displays the value for "Id" field rather than "userId".
    Question that I have is:
    - Why is ADF framework not able to retrieve the appropriate user attribute value for a Employee based on the binding information in case of inheritance ?
    Thanks,
    Piyush

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • Large files are corrupting when copying to a network share

    Hi,
    I have a Mac running 10.5 and whenever I copy a file 50MB or over to a network location the file will corrupt. I've tested with a number of files (zip, movie etc) and all seem to be corrupt when I try to run them from the network.
    I've swapped the ethernet cable, tried the second network port and I have been moved to a new port on the switch in the server room.
    Does anyone have any ideas?
    Thank you in advance

    Hmmm, open Network Utility in Applications>Utilities>Info tab, select the Interface you're using, copy a big file & see if there are any errors or collisions on the right, or if it always happen after a certain number of packets.
    Also, what Link speed & packet size is it using? What Format is the Network Drive?

  • Some PDF attachments are corrupted when emailed using javamail

    I have a java class that takes a file name, 'To' email, and 'From' email as parameters, and then emails the named file to the specified address as a Multipart email.
    The problem that I am facing is that sometimes the PDF cannot be opened when it arrives because it is corrupt. I know that prior to sending, the PDF opens without issue, so the problem is in the code somewhere.
    There are a couple of oddities here:
    1) PDFs that get corrupted and PDFs that do not get corrupted are generated from the same source (Oracle Report), so I believe that rules out a problem with malformed emails?
    2) If I compare the PDF before it gets sent to the PDF that arrives in my inbox using a hex editor (XVI32), the files are identical except that an extra character is getting added to the corrupt PDFs at the end of each line - hex '0A', which corresponds to ASCII linefeed. This indicates to me that maybe there is a problem with the way that the file is getting encoded when it is read. If I remove all of the 0A characters, the file opens correctly.
    I believe that the code I am using is set up correctly, as I have looked at countless examples of this online to try to find my problem. Hopefully someone can point me in the right direction. Code is included below.
    Thanks,
    Nick
    import java.util.*;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class test {
        public static void main(String args[]) {
            System.out.println("entered TEST email class");
            if (args.length < 3) {
                System.out.println("Invalid number of arguments. Syntax is 'java test <fileName> <fromEmail> <toEmail>'");
            } else {
                System.out.println("Correct number of arguments.");
                send(args[0], args[1], args[2]);
        public static void send(String fileName, String fromEmail, String toEmail) {
            System.out.println("Made it to SEND method");
            try {
                Properties props = new Properties();
                props.put("mail.smtp.host", "email.host");
                Session session = Session.getDefaultInstance(props, null);
                MimeMessage msg = new MimeMessage(session);
                //set from/to email addresses
                System.out.println("Setting email addresses...");
                msg.setFrom(new InternetAddress(fromEmail));
                msg.setRecipients(javax.mail.Message.RecipientType.TO, toEmail);
                //set email subject
                System.out.println("Setting subject...");
                msg.setSubject("email from TEST class");
                //define a body part for the email text and add text to it
                System.out.println("Setting body...");
                MimeBodyPart messageBodyPart = new MimeBodyPart();
                messageBodyPart.setContent("This is the email body. Here is some more body.", "text/html");
                //add code for attachment here!!
                System.out.println("Setting attachment...");
                MimeBodyPart attachFilePart = new MimeBodyPart();
                FileDataSource fds =
                        new FileDataSource(fileName);
                attachFilePart.setDataHandler(new DataHandler(fds));
                attachFilePart.setFileName(fds.getName());
                //define a multipart, and add the text body part and the attachment body part to it
                System.out.println("Building message...");
                Multipart mp = new MimeMultipart();
                mp.addBodyPart(messageBodyPart);
                mp.addBodyPart(attachFilePart);
                //add the multipart to the message
                msg.setContent(mp);
                //send the email
                System.out.println("Sending message...");
                Transport.send(msg);
                System.out.println("Email has been sent!");
            } catch (Exception e) {
                System.out.println("Error in test.send method: " + e.getMessage());
    }Edited by: nbacon on Sep 2, 2010 12:12 PM

    Normally pdf files are text, with any binary data represented as encoded text. If your pdf files
    include raw binary data, JavaMail can be confused. JavaMail will try to guess what encoding
    is appropriate for your data. If the data is mostly text, JavaMail will use quoted-printable encoding,
    and will canonicalize the text lines to end with CRLF (0x0D, 0x0A). A 0x0D in the binary will look
    like an end of line and will turn into 0x0D, 0x0A.
    You can force JavaMail to use base64 encoding for your data, which will preserve the binary
    data exactly, by using
    attachFilePart.setHeader("Content-Transfer-Encoding", "base64");
    after setting the content for the part.
    Alternatively, you could figure out how to generate pdf files that don't include raw binary data.

  • DVDSP 4.1.2 - Assets not refreshing or are corrupt when changed

    I've been frustrated with this time and again. I burn a test project built in DVDSP then make a change to either the main "feature" or to a menu video in FCP. I export it using compressor, using the same name (overwriting the old version). When I open DVDSP I'm asked if I want to refresh assets since some have changed. I click on refresh. When I simulate the project there is a blank (or green) screen - no video. When I try to delete the asset I can't - says it's in use. I can try re-importing the asset but same results. The only way I've found around this is to delete the "Feature", delete the menu used by the asset then delete the asset. Essentially, start over again.
    So, what's up here? Am I missing something?
    Carl

    The parsed files are the problem (at least they were for me)
    In the same directory as where your asset is, you should find a PAR folder. Trash the parsing file that matches the name of your asset. When you relaunch the DSP project, it will reparse the assets and everything should be honky dory. It does seem like the asset does not reparse well when updated/relinked etc.
    I was getting blank tracks after recompressing (keeping the original file name) and this fixed it/
    Good luck

  • Onlocation captured  mpg 's are corrupted when import in premiere pro

    Oke, yesterday i made this really sweet time lapse recording in Adobe Onlocation CS3. In Adobe Onlocation I can view the recordings 30sec each and there really good. Now I followed the instructions and ejected the clips, but now that I've imported them into Premier Pro CS4, they cant play and there only 1 frame long? How can I fix this?

    Are you recording HDV in .mpeg format? If so, On Location CS3 never recorded HDV .mpegs correctly for me. I had to use .m2t instead. I have no idea why (especially since Premiere's HDV capture is *.mpeg) but it just is...
    JP

  • ADF Bindings Servlet/Filter  not invoking  Faces Servlet

    I'm getting ADF Faces and Facelets working properly with pages written in jspx format, but the Faces Servlet being mapped to jsf format.
    The problem I'm getting is while displaying ADF Tables with data retrieved from the database using Toplink and bindings provided by ADF Databindings.
    The following is the Web.xml mappings for Faces Servlet and ADF bindings filter:
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    I'm getting the ADF tables displayed using ADF Bindings, if the faces servlet is mapped for jspx format;but, at the cost of losing Facelets...Facelets is not working with Faces Servlet mapped to jspx format(though written in jspx format, the faces servlet mappping has to be made for jsf format.On the other hand, if I use faces servlet mapping for jsf pages I'm getting Facelets working but ADF Databindings are not working ,(I guess) and hence ADF Faces Tables are not being displayed(I'm getting Access Denied message).
    I even tried to change the ADF binding filter mappings
    ---- from ---- jsp &jspx---- to ----- jsp and jsf ----
    But I got the same Access denied message.
    I read a similar post on this forum by Mr.Ashish Kumar who said he is using java script and automatic form submission, to refresh the page and that gave him the table working.
    as quoted in the post:
    af:table displays Access Denied
    Why should the page be refreshed at all. I Guess , the Faces Servlet is not being invoked by the ADF Bindings Filter/Servlet, and for this , I suppose , Mr.Ashish is using java script to provide the action required.
    And one more thing which that Automatic Refreshing of page using JavaScript cannot do.
    Suppose,
    I need customised display, rather than just a Table or Form,like:
    public String getEmp() {
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding =
    bindings.getOperationBinding("findAllEmp");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    List<Emp> res=(List<Emp>)result;
    for(int i=0;i<res.size();i++)
    Emp myrec=res.get(i);
    System.out.println("Employee ["+myrec.getEname()+"], Salary ["+myrec.getSal()+"]");
    return "";
    where I do some customisation in the backing bean.
    and I call that method binded to a button as below:
    <af:commandButton
    text="findAllEmp"
    disabled="#{!bindings.findAllEmp.enabled}"
    binding="#{backing_Success.commandButton1}"
    id="commandButton1"
    action="#{backing_Success.getEmp}"/>
    What I'm getting is a disabled button.
    Why doesn't ADF bindings servlet invoke the faces Servlet?
    Can't we make ADF Bindings Servlet invoke Faces Servlet by configuring in the web.xml?
    Can't we get ADF Bindings filter mapped to work with jsf pages?
    Won't ADF Bindings work with jsf pages, will they work only with jspx pages?
    ADF Team,
    Please Help me.
    Thanking you,
    Samba

    Hi! Frank,
    Thankyou for your Reply.
    Yes, Mr.Adam Winer has contributed that library, I guess.
    But I already have that adf-facelets.jar in my lib folder ; and with out that the Facelets won't work with ADF faces , in the first place.
    I'm getting Facelets working excellently with ADF Faces but I'm not getting ADF Bindings working with Faceletpages.
    The thing is even in another application which does not have facelets in it, if we use mapping for jsf pages, ADF Bindings are not working.
    I think the ADF bindings filter is configured some where to work with jspx pages only.Could you tell me where to change that entry to make ADF Bindings work with jsf extension?
    Thanking you,
    Samba.

  • PSDs are occassionally corrupting when saving.

    OS 10.4.11 / G5 Tower
    Every so often this particular Mac will save PSD files (CS 3) which we find are corrupt when trying to open again. Maybe 1 out of 10 files. And since we are a photoshop-heavy shop - 1 out of 10 is a lot.
    Any suggestions why this might be happening/how to fix?
    Thanks!

    Boot off your Install Disk while holding down the *d key*, (not c key), then run the extended Apple Hardware Test. Some disks require you to use the Option key at bootup to select AHT. Some models have a separate AHT CD.
    "Try Disk Utility
    1. Insert the Mac OS X Tiger Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • Lftp-3.5.4-2 : files are corrupted

    It seems that some files are corrupted when transferring them with this latest release of lftp.
    I had to use gftp to make my transfers...
    Narcisse

    kird wrote:
    Quote
    I have a 2.8 to, what did you get with DOT and CC
    I have not had much luck with D.O.T. so I always have it on slow. I was just reading this thread and it sounds promising. But my system runs so stable now I hate to change anything and mess it up.
    I have looked but have lost my list of acronyms, what is CC again?

  • Copied MP3s are corrupt

    I'm having a problem with MP3 files becoming corrupted when I copy them to an external device.  The MP3s reside on my 15" MBP retina's internal flash drive. When I copy them to a microSD card in the MBP's SD card slot using an SD to microSD card adapter the files become corrupt. I've tried different SD cards, different adapters, and I've even tried copying directly to an external device (MP3 player) using a USB cable. No matter what I do the files are corrupt.
    Another clue could be that the first 10 or so files copy fine, and the rest are corrupt.
    I'd like to try copying in safe mode, but in safe mode the MBP's SD card slot is unavailable.
    Does anyone have any ideas what could be going on, and how to resolve this issue?
    Thanks!

    Guys, I'm sorry for being AWL on this. I'm in Venezuela with limited internet access and limited time. I will get back with more answers soon.
    Let me answer what I can now.
    Q. Were the MP3s created in iTunes? Or something else?
    A. Something else. I picked up these files from varous sources. I acquired them as MP3s
    Q. Has this process ever worked in the past, or is this something you've never tried before?
    A. It worked in the past. I'm not sure what changed.
    Q. And the MP3s play correctly on your Mac? And they are definitely MP3s, not m4a or aac...?
    A. They play fine on my Mac, and they are MP3s.
    Q. Does it matter which files are the first 10? Or not? (i.e. if you copy 10 files at a time, does that work?) How many files are you copying in one go?
    A. I'll need to research that and get back to you. I'll try to do that soon.

  • 1ds MK III images corrupt when viewed at 100%

    Hi using Aperture 2.1 all my 1ds MK III images are corrupt when viewed at 100% even when viewed with the loupe but display fine when seen in preview mode and at reduced size and they export ok.
    I have reinstalled aperture, 10.5.2 and the graphics update. Im using 2 X 2.8 Quad with 2600 xt card.
    Any ideas?

    I am having the same trouble! All of my Canon 1Ds MarkIII raw file has the problem.
    Tested on my Mac Pro 2.8 Radeon 2600, and iMac 24 Radeon card. Both have the same problem. When I hit zoom, I see exactly the same problem: http://gallery.mac.com/krux#100170
    I have all the updates 10.5.2, aperture 2.0.1. Now I'm doesn't able to work with Aperture...
    Please download my Canon 1Ds Mark III Raw file, and test it in Aperture 2:
    http://www.handras.hu/stuff/0G7J6343CR2.zip (20.6 MB, 16 bit uncompressed Raw file)
    If U have a Ati radeon card, and make straighten crop, or zoom, the picture should messed up
    If U have nVidia, everything will be perfect.
    (sorry for my bad english, I come from Hungary)

  • Files corrupting when sending email attachments from Mail & Thunderbird

    Hi All
    I'm hoping that someone will be able to help here as this problem is driving me crazy!
    Most if not all of my email attachments are corrupting when sending from Apple Mail and Thunderbird.  I'm also having issues with publishing files via FTP from Rapidweaver 5!  I have spoken to BT about the issue but they have tested the line and say everything is OK.
    The strange thing is, it's happening on my MacBook Pro (Mountain Lion) and my Mac Pro (Lion). The problem's also happen when I'm using a friends high speed internet connection so that only leaves the server. I'm really out of my depth with the server side of things though. I did have a reply from Servage (my hosting company) who said I may have been the subject of a hack and an upload script!! Not sure what this means or how to check if this is the case. One question though, would this corrupt email attachments as well as uploading to the server?
    Many thanks
    Mark

    Further to the above:  I have now found that the same corruption happens when I email attachments and FTP from my PC laptop, so this rules out a computer issue.  I have also swapped wireless routers and exactly the same problem.  As mentioned above, I don't get the corruption when using another internet connection.
    Also, I have an iPhone which I've restored to factory default settings and when I take a photo with the phone and email it (using my home wireless network), the file corrupts, everytime.
    Using services such as YouSendIt and WeTransfer, gives the same problems!
    I'm desperate for help on this one and I'd even pay someone to resolve it!

  • Files corrupted when written to external Firewire drive

    I recently discovered that files transferred from my internal ATA drives to my external Firewire drives have been getting corrupted.
    The corruption is most noticable in Quicktime movies where I can see individual video frames with pixelated blocks of color and short noise bursts in the audio. My concern, however, is that it is happening to any file type and the corruption may not be noticed until it is too late.
    I read a few posts from the end of last year that stated the Firewire ports of the B & W G3s have problems. The general solution appeared to be the use a dedicated PCI card.
    Here are my questions:
    (1) Is there a formal aritcle discussing this problem? (I didn't find one)
    (2) Copying files is a VERY basic function of an operating system. Shouldn't there be some kind of error generated if a copied file doesn't match the source? (like a checksum error).
    (3) If a PCI Firewire card is the answer, is there anything to watch out for when selecting one?
    (4) I'd like a better way to compare souce and destination files after a copy. What application can I use to do a low-level comparison of two files?
    Thanks,
    John

    John,
    My reference to RAM was by way of example. Another example of error opportunities is in rebuilding the desktop. I have had files lost because of the desktop changing when the removable media or external hard drive is changed to a computer with a different OS. Rebuilding the desktop restored the files.
    The guys that wrote Disk Warrior could give the brutal full on why files appear, disappear and get corrupted. I choose to not trust any one medium so I backup my backups. Sometimes a reliable routine is better than an explaination.
    No one has responded to my inquiry about why jpeg files are corrupted when copied from the B&W to a PC zip disk but not to an external HDD. I should try that with a PC formatted HDD. The odd thing is that quicktime will read the corrupted file but jpegview will not. Or the otherway around. I have forgotten the details because I gave up on trying to get an answer.
    I would be interested in reading more about file transfers during the process of burning a CD and how buffer underun technology works. As you said, the answer may be so detailed that the explanation wouldnot be understandable without becoming a text book!
    Jim

  • Textbox corrupted when dublicating page or using paste in place

    As is visible below some of the text boxes are corrupted, when dublicating page (or using paste in place)
    All settings on the text-boxes remain the same - however, the text is repositioned so that it is no longer inside the text box.

    Very sorry to hear you're encountering some very unusual (and bad) behavior working with Muse. What you're describing doesn't sound like anything I've heard reported before, but it sounds more like a bug than anything you're doing wrong. If it is a bug, it's probably specific to the one composition widget in your file. Could you send us the .muse file so we can take a closer look?
    Please send us the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. (If you use a service, please include your return e-mail address in the body of the message, since not all services include it in the sharing invite they send.) Thanks.

  • ADF Bindings CRUD with either JDBC or Hibernate

    Does anyone know of an example CRUD application that uses ADF Bindings and either Hibernate or JDBC.
    The site...
    http://technology.amis.nl/blog/index.php?p=765
    uses ADF Bindings and Hibernate, but does not update a database.
    I have attempted to do this myself, but when my add/edit page loads, all of my af:inputtext controls display labels instead of input boxes.
    There are several ADF Biding examples for both Toplink and ADF BC, but if anyone can point me in the direction of examples for JDBC and/or Hibernate, I would appreciate it.

    I have created the target datacontrol for ADF Binding.
    In my DataContorls.dcx file, my datacontrol (a JavaBeanDataControl, not an AdapterDataControl) has its SupportsUpdates attribute = "false".
    When I create a form, the #{bindings.<my_property>.updateable} expression returns false, making it so my af:inputText controls cannot take input data. If I manually set SupportUpdates="true", my #{bindings.<my_property>.updateable} expression still returns false.
    If anyone knows how to set it so I can make it so I can update my java objects, I think I will be set.
    Any help would be appreciated.

Maybe you are looking for

  • Inventory Management and WBS?

    Hi there, We want to show an inventory management report which contains WBS Hierarchy. It shall look like the following style: Dimension     Fact Stock Value FKSTL ->PROJECT  ->WBS   ->MATNR    xxx,xxx,xxx I have activate two InfoCubes, 0IC_C03 and 0

  • What to do with that kind of email - comes weekly

    Dear Customer,  To update your Apple ID, simply click the link below. That will take you to a web page where you can update your account. Please note that the link will expire three hours after this email was sent. https://appleid.apple.com/confirm/O

  • Is there any possible way to run PPC applications on Mountain Lion?

    THrough any kind of emulation or something?

  • Keeping control over large service POs

    Hi everybody, In our organization, we are implementing a shared service center, and I was wondering if you had any ideas about the handling of large service POs. We are using a three way match for almost all purchasing. The order and receipts are boo

  • Production Order - relese rejected

    Hi SAP Gurus while releasing production order it shows the following error due to which i can not release the order "Object ACT 1000921 0010 has system status WCRE (Work center until release).  According to this status, transaction 'Release operation