Disable customer change of AR Receipts entry after cleared

HI
I am user Oracle EBS 12. can anyone tell me how we can disable customer change of AR Receipts when the status is "Cleared"

I got the mistake. user did not apply the receipt with any invoice. thanks anyway.

Similar Messages

  • How to change the order of entries on the podcast or blog pages?

    Hi,
    I tried to move entries in the entry area on the podcast page to change the existing order but it seems they stay in the way they were created. Is there any opportunity to change the order of entries after they were created?
    Thank you,
    Vlad

    I'm having the same problem. How do I do this? I just
    hit delete entries. So the blog doesn't show up on
    iWeb, but it shows up on my website.
    This is NOT the same problem.
    Clear your browser cache.

  • Change Conf.Ctrl (ekpo-bstae) after goods receipt on ME22N

    Hi all,
    we have the following issue:
    is it possible to change the field  "confirmation control key" (ekpo-bstae) after goods receipt on transaction ME22N?
    Thanks in advance and best regards.

    Hi
    Let me explain in details about your requirement
    It is not possible to change the confirmation control key after a goods
    receipt because it is very complicated or impossible to calculate the
    MRP-relevant quantities or the reduced quantities for MRP new when
    there exist some confirmations yet. With the confirmation control key
    ou fix the rules for the calculation of the MRP-relevant quantities.
    If you then change the confirmation control key (and before you had
    some confirmations) and with this change you get completely new rules
    it's impossible to get the correct MRP-relevant quantities.
    Note 451060 discusses potential problems that may occur when the
    customization of an existing confirmation control key is changed.
    The reason why after a partial good receipt the field confirmation
    key is greyed, and the reason is that there is a link between the
    confirmations and the GRs. If you change the confirmation control key
    this link can get lost (the link is the field ETENS in tables EKES and
    EKBE). If this would be possible you would get a lot of inconsistencies
    in the system.
    Note 451060 contains the changing of the customizing of the
    confirmation control key, which is nearly the same as if you would be
    able to change the control key in the purchase order after a goods
    receipt.
    regards,
    Ramana

  • Changing env-entry after deployment

    Hi,
    I was wondering how I can change the value of an env-entry after deployment? Do I have to change the value in the ejb-jar.xml, redeploy the application, or is there a utility I can use?
    thanks
    Steve

    Okay gentlemen, I dug around and couldn't find anything on this concept of defining an env-entry after deployment using Sun Java System Application Server 8.1 - so I just came up with my own hack. Thought I'd share it in case others have the same question and can't find the answer.
    Just to restate the problem: In SJAS you can't seem to define an environment entry that you can just look up via JNDI (you can do this in Tomcat pretty easy though using the context.xml file and an env-entry like syntax) - the benefit of this being of course that you can easily define deployment-time variables which a system administrator can set based on his setup. There seems to be no way to do this is SJAS 8.1
    As a workaround, you can create your own custom JNDI resource which will expose the properties that you set in the Admin Console as a simple java.util.Map that you can use from your app.
    Here's the blow by blow:
    2. Create a JNDIProperties object that implements java.util.Map but does NOT implement java.io.Serializable:
    package helpers.jndi;
    import java.util.Collection;
    import java.util.Map;
    import java.util.Set;
    public final class JNDIProperties implements Map {
        private Map map;
        public JNDIProperties(Map aMap) { map = aMap; }
        public boolean containsKey(Object key) { return map.containsKey(key); }
        public void clear() { map.clear(); }
        public Object get(Object key) { return map.get(key); }
        public boolean containsValue(Object value) { return map.containsValue(value); }
        public Set entrySet() { return map.entrySet(); }
        public boolean isEmpty() { return map.isEmpty(); }
        public Set keySet() { return map.keySet(); }
        public Object put(Object key, Object value) { return map.put(key, value); }
        public void putAll(Map t) { map.putAll(t); }
        public Object remove(Object key) { return map.remove(key); }
        public int size() { return map.size(); }
        public Collection values() { return map.values(); }
    }2. Create an object that implements javax.naming.spi.ObjectFactory and returns an instance of JNDIProperties containing the properties defined in the container:
    package helpers.jndi;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Map;
    import javax.naming.Context;
    import javax.naming.Name;
    import javax.naming.RefAddr;
    import javax.naming.Reference;
    import javax.naming.spi.ObjectFactory;
    public class PropertyFactory implements ObjectFactory {
        public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception {
            Map myMap = new Hashtable();
            Reference myReference = (Reference)obj;
            Enumeration myEnumeration = myReference.getAll();
            while (myEnumeration.hasMoreElements()) {
                RefAddr myRefAddr = (RefAddr)myEnumeration.nextElement();
                myMap.put(myRefAddr.getType(), myRefAddr.getContent());
            JNDIProperties myJNDIProperties = new JNDIProperties(myMap);
            return myJNDIProperties;
    }3. Build this and copy the jar to $SJAS_HOME/domains/domain1/lib/ext/ (or other appropriate folder for your setup), then restart the app server to get to load the jar.
    4. Go to the admin console and go to Resources -> JNDI -> Custom Resources -> New. Give it a sensible JNDI name (I'll use "testproperties" in this example), enter java.util.Map as the resource type and the name of your factory class for the "factory class" field, e.g. "helpers.jndi.PropertyFactory". Below that under "Additional Properties", add in each of the properties that you want to expose, for example enter a property named "testproperty1" with the value of "my test".
    5. You can now get a java.util.Map that contains the properties that you set for your custom JNDI resource by doing something like the following (example in JSP):
    <%
    Context myContext = new InitialContext();
    Context myEnvContext = (Context)myContext.lookup("java:comp/env");
    Map myMap = (Map)myEnvContext.lookup("testproperties");
    %>
    <%=myMap.get("testproperty1")%>Output is:
    my testNOTE: If this sounds convoluted - I agree, it is. If anyone's got a better idea, please post it; as I could not find another solution to this seemingly simple problem.

  • Transaction type selection Blank after customizing change of TxnDescription

    Dear Community,
    I worked with Anja on this PCUI project, who has since left this project.
    We had to change the transaction customizing to rectify the descriptions and after transporting this into the master data client, we now have the transaction pop up (crm 4.0 obviously) blank.
    there is no dump, and the pop up opens, but has not values at all, not even the column headings.
    This happens in the Portal but also launching the oppty, lead or activitiy application without the portal.
    Any ideas what can be done to fix this? Re-Generate the layout, despite no changes?
    Thanks in advance
    Holger

    Hello Holger,
    please provide the OSS Note Number so this Topic can help others stumbling around the same problem.
    Regards
    Gregor

  • How to get the only the changed or newly added entries in AFTER SAVE.

    I have created table maintenance generated for a table,I want to get the newly added or changed entries while saving thats why im using AFTER SAVE event for the same,can anyone please tell me how to get the only the changed or newly added entries in AFTER SAVE.

    Hi,
    Welcome you post on the forum.
    I have moved your thread here because it is in English and should not in the language specific forum. What is your system version?
    Thanks,
    Gordon

  • Jserv.properties   custom changes are gone after  running autoconfig in 11i

    Hi,
    jserv.properties custom changes are gone after running autoconfigh in 11.5.10.
    Please let me know do we have any way to keep the changers after running autoconfigh also.
    Thanks,
    Venkat.

    Please see (Customizing an AutoConfig Environment [ID 270519.1]).
    Thanks,
    Hussein

  • How to Hide/Disable custom ribbon button on infopath form!

    Is it possible to hide/disable custom ribbon button on specific infopath form library or list????
    I just want to hide/disable custom ribbon button for specific form library and show/enable these buttons on the other form library!
    Any suggessions??
    Thanks in advance!

    Hi Tahir,
    Using javascript you can show/hide ribbon on particualr page.
    Open your SharePoint master page
    Locate this line: <div
    id="s4-ribbonrow"
    class="s4-pr s4-ribbonrowhidetitle">
    Change it to: <div
    id="s4-ribbonrow"
    class="s4-pr s4-ribbonrowhidetitle"
    style="display:none">
    Now find the end of the “s4-ribbonrow” tag and add following
    block right after it: <Sharepoint:SPSecurityTrimmedControl
    ID="SPSecurityTrimmedControl2"
    runat="server"
    PermissionsString="AddAndCustomizePages">
        <script
    type="text/javascript">
            document.getElementById("s4-ribbonrow").style.display =
    "block";     </script> </Sharepoint:SPSecurityTrimmedControl>
    Save the new master page and publish it.
    Or try this feature.
    http://spribbonvisibility.codeplex.com/
    Best regards,
    Avinash.

  • Issue in change tracking table on subscriber after reinitialization the subscriber

    Hi All,
    We have enabled change tracking on the subscriber tables and its getting dropped during a reinitialization.we are running an ETL on the subscriber tables basing on change Tracking.Our Initial ETL runs once and incremental ETL runs after that but
    after reinitialization i am getting fresh data and my initial ETL has already run.So how can i resolve this issue.Can't renireinitialization be done without disabling the Change Tracking.
    Kindly provide your feedback.
    Thanks

    The article property Action if name is in use correlates to the
    @pre_creation_cmd property of
    sp_addmergearticle.
    [ @pre_creation_cmd= ] 'pre_creation_cmd'
    Specifies what the system is to do if the table exists at the subscriber when applying the snapshot.
    pre_creation_cmd is nvarchar(10), and can be one of the following values.
    Value
    Description
    none
    If the table already exists at the Subscriber, no action is taken.
    delete
    Issues a delete based on the WHERE clause in the subset filter.
    drop (default)
    Drops the table before re-creating it. Required to support Microsoft SQL Server Compact Subscribers.
    truncate
    Truncates the destination table.
    Brandon Williams (blog |
    linkedin)

  • Changing the document page size after the fact.

    Does anyone know of a way to change the page size globally after the fact?
    I have sent a 200 page book created with Pages '08 to my printer. The work has a full bleed watermark in the background on a custom 7" X 11" document. I've just been informed that he needs to increase the paper size to 7.25 X 11.25 and have me increase the watermark so it can be trimmed down.
    Is there a way to change all 200 pages or do I need to set-up a new document and do a whole lot of cut and paste?
    Thanks in advance everyone.

    Your problem is that the change is not proportional.
    However it is not a great change, 6.66% at most. If you don't mind a subtle change in height vs width, just create a pdf of the entire document and tell the printer to change the size on going to plate.
    Alternatively you can simply scale it up the 6.66% which will make the height about 0.5" too high and trim away the excess.
    The other way is only scale it up 2.27% which gives you the right height but leaves you with 0.1" less width.
    Or you can go in between and have a compromise for both directions by scaling up 4.4%.
    It depends if you have white margins in either direction that can take up the slack and also how much bleed you have on the watermark. You only need 1/8" to cover any trimming errors.
    As this appears to be quite a long book and would need to be imposed up in signatures, I would imagine the printer must have the necessary imposition software to allow for creep etc, which should also allow for non-symmetrical scaling.
    Don't you Americans ever feel at moments like these that you wish you weren't the last people in the world to not use metrics and rational paper sizes?

  • My status change to pass from fail after 40 days. Microsoft Exam 74-409 Score

    Microsoft update 74-409 exam.
    My status change to pass from fail after 40 days..
    Recived below email. is this possible ?
    Dear Valued Customer,
    You recently took Microsoft Exam 74-409: Server Virtualization with Windows Server Hyper-V and System Center. After close evaluation of the exam, we have made some revisions that resulted in a change to your exam results. We are pleased to inform you that your
    status has been changed to ‘PASS’. This update will be reflected in your official transcript within two weeks. A new score report will be mailed to you within two weeks.
    Thank you for taking this exam and for your support of our program.

    Yes its possible, but its also possible that its a scam trying to entice you to provide information that could be used for identity theft.  I would wait a couple weeks and then check your transcript on the MCP site.  If the exam shows then it was
    for real.  If it doesn't then it was probably a fake message.
    The reason it might be for real could be that someone challenged the clarity of one of the questions in their comments and Microsoft decided after looking into it that some question was misleading.  This might have lead them to accept more than one
    answer or to throw the question out.  That could have modified your score in some way and promoted you above the Pass line.  It is possible, but not likely.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Custom Change Process

    we plan to realize a custom Change process (pharmaceutical area).
    The requirement is to have a "workflow", where planing, realization, etc is done in phases, signed by qa and cant be changed easily later on.
    f.i.
    the requestor creates a request insert some data and "signs" it, then it will be planned, activities are created....
    now the whole Thing should be "signed" by qa and the data entered earlier are not allowed to Change after that...
    next Phase is realisation, over here the Prior created Tasks are completed....
    Has anyone done something like that?
    p.s. if yes and willing to Train please pm me
    best regards
    Chris

    well, it sounds like you've got a fairly standard change process, except for a sepcial notification rule. that should be relatively easy to do. no C# required, but you will need to finagle the XML a bit. 
    personally, what i would do is create notification rules that look for changes that you outlaw, and notifies the QA team. you'll probably want to do this by creating the notificaation rule using the UI, exporting the management pack and editing the XML for
    the Criteria so it looks like what you want it to. 
    you'll still want to use the Signature state property from above. here's an example enum, from earliest to latest:
    Unsigned
    Requirements Signed
    Risk Vaidation Signed
    Implementation Plan signed
    Implemented
    you're criteria is probably going to start something like this: 
    Change is in signature state "Requirements Signed"
    Property "Reason" changed
    Property "Description" changed
    Property "title" changed
    etc...
    the first one should be easy, just set that as the post condition on the notification. the rest are where you need to XML a bit. create a dummy criteria for each of those in either the Pre or Post tab of the notification UI. it doesn't really matter what
    you look at here, since we're going to overwrite it. Save the notification rule, and export the MP. 
    open the exported MP XML with your favorite text editor <cough>Notepad2</cough> and find the Criteria segment of your notification rule. you're going to use
    this Trick to set the criteria to compare the Pre value of the property to the Post value of the property, and activate if they are NotEqual. 

  • Error while opening the receipt entry form in AR module.

    Error while opening the receipt entry form in AR module. We have created one new responsibility of Receivables for new operating unit . When we open the corresponding
    forms , we are getting the error message as :
    NO_DATA_FOUND
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-20002.
    Kindly help in resolving.
    We have ERP version of 11.5.10.2

    Please also see the following docs.
    Transactions Workbench Error: Listing of ORA Errors [ID 1336495.1]
    FRM-40735 ERROR OPENING LIFE EVENT REASONS FORM BENLEVRS [ID 1517593.1]
    APP-AR-96996: The Defined Sales Representatives Have Incorrect Id'S [ID 437107.1]
    ARXSUDRC Receipt Classes Errors With APP-AR-96994: Please Define Sales Representatives [ID 357454.1]
    Thanks,
    Hussein

  • Email address change not showing on ipad after sync

    iTunes email address change not showing on ipad after sync

    So change it.
    Open iTunes, scroll to the bottom of the main page, tap your account name, log out then sign in with the correct name.

  • I have tried everything, but still I can't locate the photos tab in iTunes...I have tried changing the resolution, started iTunes after connecting with the ipad2, nothing seems to work! please advise!

    I have tried everything, but still I can't locate the photos tab in iTunes...I have tried changing the resolution, started iTunes after connecting with the ipad2, nothing seems to work! please advise!
    I am also providing you with a screenshot of what appears! I need photos on my iPad2
    Message was edited by: angana

    You don't see it on the left-hand side of iTunes - you need to connect and select the iPad on the left-hand side, and then one of the tabs on the right-hand side that you use to select which content to sync to the iPad should be Photos : http://support.apple.com/kb/HT4236
    You will need to select and sync all the photos that you want on the iPad together in one go as only the most recent sync remains on the iPad, not including photos in a subsequent sync is how you delete them from it.

Maybe you are looking for

  • 2 problems in iWeb - file name & unwanted folder at server.

    I've been using RapidWeaver but now want to use iWeb for a new site for the first time and have encountered 2 problems. (1) I need to change the index file of the site to index.php from index.html. How can I do that? It can be done easily in RW in th

  • Buy an iphone from another country

    Can I usa an Iphone here in Colombia if I buy it from this page? Additionally, can I purchase it without any service provided by an USA mobile company? thanks...

  • Navigation in iweb

    Hi. Please can someone tell me how I can create a hyperlink to the top of the page. I can hyperlink to other pages but not to a word on a page. Thank you

  • Wwv_flow_meta_data fails with ora-6502

    Hi, A simple question... Is it possible to run HTMLDB V2.0 run with nls_char_semantics=CHAR in a utf8 database? I know i must install HTMLDB V2.0 with nls_semantics=BYTE and it is what I did. Thank you for your answer. Michel

  • Photomerge slows down Mac

    Hello all, I am a Photoshop newbie, I use it mainly for processing landscapes/HDR enhancing my everyday photos and panoramas. I have a MBP i5 mid 2010 with 4GB of ram, 2.15GB used when photoshop is processing photos. I have PS CS5 Extended running on