11i Receivable Application

Hi,
I am currently trying to see if there is a way of using Oracle 11i to apply cash across multiple organizations/SOBs. I know that as of 11.5.7 there was no supported way of doing this without using the Lockbox or some customer form/code. I heard that there is an enhancement in the works but i was wondering if anyone has accomplished this and if so how.
Thanks,
Marco J. Meirinho

Hi,
You cannot clone from OS to another if both are NOT binary compatible -- See (Note: 216664.1 - FAQ: Cloning Oracle Applications Release 11i), Can I clone from one platform to a different platform?
To clone from one OS to another you will have to follow the steps in (Note: 238276.1 - Migrating to Linux with Oracle Applications Release 11i) to migrate the application tier node(s) and for the database you will have to use export/import (export/import documents are referenced in the same migrating document).
Regards,
Hussein

Similar Messages

  • Internal candidates receive application acknowledgement email in german.

    Hi,on EHP4 Erecruiting - Internal candidates receive application acknowledgement email which was not in english . Upon checking IT0002 the language field was "ARABIC". After changing the language to ENGLISH the mail was in English. the question is, is it necessary to maintain the language as ENGLISH in IT0002 to get the correspondence in english. or is there any other setting which will affect the correspondence language.
    Client wants the mail correspondence in english but at the sametime the language in IT0002 should not be changed to english.
    Regards
    Yogaraj

    Hi Yogaraj,
    From where you are reading this language, if through workflow then you can able to make it default if it is a standard functionality then you need to follow the same by maintaining in it0002.
    Check in debug mode from where the logic is built in then accordingly you can change the same.

  • How to install and configure OIM with 11i Oracle Applications(11.5.10.2)

    Hi,
    We are currently having Oracle Applications 11i (11.5.10.2) Instance.
    I need to install Identity Management (OIM), SSO and configure these to 11i instance.
    Can you please provide me below,
    - What are the documents to be followed.
    - What are the pre-requisites to install OIM, SSO.
    - Where can i get the software of OIM, SSO and any pre-reqs.
    - What are the latest versions to be install to support 11i.
    Thanks in advance.
    Regards,
    Kishore K.

    What is the last Oracle support date of 11i (Oracle Applications 11.5.10.2) ? I mean no new patch for bug fixing, no Oracle Expert answering Customers' Questions via Metalink.
    I understand that to use Extended Support of Oracle Applications 11.5.10.2, we need to pay additional fee. What are the fees? Are we free upgrading to Oracle Applications 12g and Database 11g at anytime? Any constraints? I believe you got an answer in your other thread -- what is the Lifetime of Extended Support of Oracle E-Business Suite Release
    For the fees, no one can tell except your Oracle Sales representative.
    If we want to upgrade to Applications 12, Database 11G from Oracle Applications 11.5.10.2 and Database 10.2.0.3, what are the hardware requirements and software requirements? Check the installation manual (which I believe you can find by yourself) and old threads for similar discussion -- http://forums.oracle.com/forums/search.jspa?threadID=&q=Hardware+AND+Requirements&objID=c3&dateRange=last90days&userID=&numResults=15&rankBy=10001
    How long will it take Oracle to ship Software to us? Usually 3-5 business days.
    Atif, please read the links/docs before posting similar questions, posting questions (which we already discussed many times in the forum before) across the forums is just a waste of your and our time.
    Thanks,
    Hussein

  • Application for receiving application not working..

    Hi..experts.
    i m new to j2me programming. plese help me.
    I got an application for receiving SMS from net. i nstalled it on nokia N73. but it's not working.
    this is the code of that app...
    package receivedemo.sms;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import javax.microedition.midlet.*;
    import java.io.*;
    public final class ReceiveMidlet extends MIDlet
    //The data we expect to receive.
    private static final String TEST_DATA = "This is just a test";
    public ReceiveMidlet()
    //Signals the MIDlet that it has entered the Active state.
    public void startApp()
    //Get the display object for this MIDlet.
    Display d = Display.getDisplay(this);
    //Create and start a new WorkerThread.
    Thread t = new WorkerThread();
    t.start();
    //Create a new Alert.
    Alert alert = new Alert("Starting DynamicPushRegisry");
    //Display the alert for 2 seconds.
    alert.setTimeout(2000);
    d.setCurrent(alert);
    private class WorkerThread extends Thread
    public void run()
    //Get all connections registered with the PushRegistry
    //for the current MIDlet suite.
    String[] connections = PushRegistry.listConnections(true);
    if ( connections.length == 0 )
    //Nothing is registered, register a connection.
    try
    //Dynamically register a socket connection
    //on port 50000.
    PushRegistry.registerConnection("socket://:50000",
    "receivedemo.sms.ReceiveMidlet","*");
    } catch (ConnectionNotFoundException e)
    message(e.toString());
    } catch (ClassNotFoundException e)
    message(e.toString());
    } catch (IOException e)
    message(e.toString());
    else
    //A connection is already registered and data is arriving.
    //Fetch the incoming data.
    fetchData(connections[0]);
    //Shut down to wait for data.
    message("Done");
    System.out.println("correct till here");
    notifyDestroyed();
    //Fetches the incoming data.
    private void fetchData(String connection)
    try
    //Open the connection.
    Connection c = Connector.open(connection);
    if ( c instanceof StreamConnectionNotifier )
    //Open an InputStream.
    StreamConnectionNotifier scn = (StreamConnectionNotifier)c;
    StreamConnection sc = scn.acceptAndOpen();
    InputStream input = sc.openInputStream();
    //Extract the data from the InputStream.
    StringBuffer sb = new StringBuffer();
    byte[] data = new byte[256];
    int chunk = 0;
    while ( -1 != (chunk = input.read(data)) )
    sb.append(new String(data, 0, chunk));
    //Close the InputStream and StreamConnection.
    input.close();
    sc.close();
    String s = sb.toString();
    //Test the data for validity.
    //If invalid an exception is thrown.
    Assert.assertTrue(TEST_DATA.equals(s),
    "Failed to receive proper string: " + s);
    //Display the received data.
    message("Received: " + sb.toString());
    } catch (IOException e)
    message(e.toString());
    //Display a String message to the user.
    private void message(String msg)
    //Create a new Alert with the message.
    Alert alert = new Alert(msg);
    //Display the alert for 5 seconds.
    alert.setTimeout(5000);
    Display.getDisplay(this).setCurrent(alert);
    //Signals the MIDlet to stop and enter the Pause state.
    public void pauseApp()
    //Signals the MIDlet to terminate and enter the Destroyed state.
    //Unconditional when set to true. The MIDlet must cleanup and release
    //all resources. Otherwise, the MIDlet may throw a
    //MIDletStateChangeException to indicate it does not want to be
    //destroyed at this time.
    public void destroyApp(boolean unconditional)
    //Throws an IllegalStateException with the supplied error message.
    final class Assert
    private Assert()
    static public void assertTrue(boolean exp, String failmsg)
    if (!exp)
    throw new IllegalStateException(failmsg);
    plzz help me...it's important for me. Thanks a lot

    when i send a SMS there is no reaction from application.
    i don't know how is this failing.
    i am very troubling about this.
    i have to receive the SMS that comes to the inbox.
    if you have any working source code please give me.
    Thank you so much.
    Edited by: RavindraDiwakar on Sep 14, 2008 8:17 PM

  • How can I test a RTP(send&receive) application on the same computer?

    I an writing an application that lets one computer (A) sends a media file to another computer (B) and B receives it and play it.
    But how can I test this application on the same computer
    Eg.Transmitter: localhost 43000
    Receiver: localhost 43000
    It will retuen an error since the port number is alreeady used by another program.
    I know if I test it on different computers, it should be fine, but how can I test it on the same computer?

    JMStudio sends RTP packets from the same UDP port as the specified in the destination port, so you can't try it in the same computer. The examples provided in http://java.sun.com/products/java-media/jmf/2.1.1/solutions/index.html follow this rule aswell, but it's easy to modify it:
    rtpMgrs[streamid]=RTPManager.newInstance();
    localAddr = new SessionAddress( InetAddress.getLocalHost(),localDataPort);
    //By deafault, in the examples, they use  remote DataPort instead of localDataPort.
    //You can specify localDataPort to any different free port number, or to
    //SessionAddress.ANY_PORT if you don't mind the port number
    remoteAddr  = new SessionAddress(destIpAddr,remoteDataPort);
    rtpMgrs[streamid].initialize(localAddr);
    rtpMgrs[streamid].addTarget(remoteAddr);

  • How to build an E-mail sending and receiving application in Windows Azure?

    I am a beginner Windows Azure Developer and I am trying to build applications like Gmail, Hotmail, YahooMail, etc. However, I am unable to build such an application. I have come to know how to send e-mail using SendGrid. Even, I don't know how to configure
    to receive e-mails. Please help me on how to develop such an application in windows azure.
    Regards

    hi Yash,
    Thanks for posting!
    About how to send mail using sendgrid, I suggest you could try this tutorials firstly via smarx's blog(http://blog.smarx.com/posts/emailtheinternet-com-sending-and-receiving-email-in-windows-azure).
    It supplied the method and code sample you could download . You may need create a listener to listen on the right port on workrole always.
    Please try it.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Apps 11i Extended Application

    Hi,
    We have a project to Implement Oracle Apps 11i and to build a separte module (extended application) and intergrate with apps 11i.
    I would like to know hoe to get started. That is starting from Template form and how to go about.
    The manuals are all running to 1000 odd pages and there is no time to read the whole thing.
    Thanks
    Thiru

    You got to develop the forms and reports and register in the the application.
    And create the menu and menu associate with responsiblity that responsiblity could be able assign it to the user.
    You got to pass the parameter through api to apps schema.
    There is no support for that modules.
    Thanks and Regards
    Riyaas
    Oracle Applications DBA
    email: [email protected]
    Kuwait

  • Specific User receiving Application crash when using Remote Desktop Application

    I have a client running a server with their line of business software configured as a remote application. I have one user that when he attempts to run the line of business software as a remote application he receives a APPCRASH error.However if another user
    launches the remote application and then signs in as the problem user there is no APPCRASH.
    The following information is reported with the error:
    Faulting application name: impress.exe, version: 5.1.102.0, time stamp: 0x522f820a
    Faulting module name: impress.exe, version: 5.1.102.0, time stamp: 0x522f820a
    Exception code: 0xc0000005
    Fault offset: 0x003fe41f
    Faulting process id: 0x268
    Faulting application start time: 0x01cf11ffa8811e46
    Faulting application path: C:\data\Impress\impress.exe
    Faulting module path: C:\data\Impress\impress.exe
    Report Id: 238e8dfc-7df6-11e3-b1b6-001e678ee8f8
    After the app crash the is a warning in the event log, but its about 43 seconds later; Event 1530, user Profile Service
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-2105745629-1987324649-1874639966-1224:
    Process 328 (\Device\HarddiskVolume2\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-2105745629-1987324649-1874639966-1224\Printers\DevModePerUser
    just trying to find some sort of hint as to way the remote application would crash for just one user. it is my luck that the one user is the owner.

    It looks like the issue was resolved by deleting the problem users profile off of the terminal server.  The user can now access the RD application without suffering an APPCRASH error.

  • EBS 11i and Application Management Pack 2.0.1

    The EBS framework uses Oracle8 code. Of which, the application listener typically runs in the Oracle8i under an 8.0.4 binary release. Which is not supported by Grid Control.
    What is the AMP framework certification for EBS11i with the UNSUPPORTED binary release usage?

    Which 11i Release are you on?Any certified 11.5.10.
    The reason I ask is because Oracle Support responded in one of our SR's that the 8.0 listener was not supported. Feedback through product management is that the entire tech stack is supported.
    The two messages do not tie together.

  • When trying to open firefox receive application error message with ok to terminate and cancel to debug - window then closes & program is unusable.

    complete error message titled firefox.exe - Application Error
    The instruction at "0x10007dba" referenced memory at "0x7c90e514". The memory could not be "written".
    Click on OK to terminate the program
    Click on CANCEL to debug the program
    After clicking OK or CANCEL the program does not start
    I've tried uninstalling and reinstalling with the same problem

    Hi gfrancom-
    I do not know precisely why you are getting this error. I would suggest doing a full uninstall, and then installing the latest version.
    * Get the latest version here: http://www.mozilla.org/en-US/firefox/new/
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    I hope that helps!

  • Portlets - Adapters to 11i HR Application

    Does anyone have an information on pre-packaged portlets that allow simple integration with the 11i HR app?

    Does anyone have an information on pre-packaged portlets that allow simple integration with the 11i HR app?

  • When I "copy" text from a website and "paste" it in an email or Word document, the receiving application locks up.

    This continues my previous thread.
    jscher2000, it was my fault for the disappearance of Private Browsing. In changing the Privacy settings I inadvertantly checked the box that takes Private Browsing away. All is good now except the Copy/Paste issue.
    jbacinti

    Make sure that you haven't set set the pages as multiple home pages.
    *https://support.mozilla.org/kb/How+to+set+the+home+page
    Firefox supports multiple home pages separated by '|' symbols.
    *Tools > Options > General > Startup: Home page

  • Oracle Applications 11i Release 4 CD Pack for MS Windows

    I am about to buy Oracle Applications 11i Release 4 CD Pack for
    MS Windows 2000 for my personal training use, What I want to know
    is the requirements;
    - CPU PENTIUM III
    - size of hard drive gb
    - certified against 9i or 8i(8.1.7)
    - what is the difference from product version appluications
    11i and applications 11i cd packs
    - posibilities to be install on single machine three tier

    download all the files in to common directory named "stage".Unzip teh same ,it will create the required structure.
    Regards,
    alit
    ww.alsuminfotech.com

  • Receiving Acknowledgement error from SOAP application

    Hi Everyone,
    I am working on SAP-> PI -> SOAP scenario. The PI message shows Acknowledgment error
    with the following error text :
    "Adapter Framework caught exception: SOAP: response message contains an error
    XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: javax.xml.rpc.soap.SOAPFaultException "
    The message of the same scenario were processed successfully initially but today some of the message got
    stucked with the Acknowledgement error from the receiver application.
    I tried to resend the message from RWB but could not succeed.
    Kindly guide to troubleshoot the issue.
    Regards,
    Robinson Thomas

    Hi Robinson,
    It's mean the Web Service Provider return you unknown message format. It can be due to error happening in the provider.
    Youd should check with the provider what is the problem during that period.
    Regards
    Fernand

  • Information regarding Oracle Applications certifications

    If anybody has any idea about the certifications of Oracle Applications (Finance modules); Kindly share it across.
    With regards,
    Ribhu Kumar

    The first exam in the certification track, Oracle 11i E-Business Suite Essentials, is now available and you can attend a course for it or utilize CD based training to cover the exam content. Personally, I’d rather learn off a CD so I think I’ll be going that route. I couldn’t find much more on the Oracle site about these certification tracks and what other exams are going to be included so if you know something I don’t, please add your comments.
    The mail from the OPN reads as follows:
    Oracle University is announcing the availability of the first 11i eBusiness Applications Certified Professional Consultant programme including:
    Oracle 11i Financials Certified Professional Consultant
    Oracle 11i Supply Chain Certified Professional Consultant
    Oracle 11i Applications Technology Certified Professional Administrator
    As a valued OPN Certified partner, Oracle is pleased to invite you to participate in the pre-launch beta exam process!
    Special price
    During the beta period, all of the exams are available at a special price of US $50. Once the introductory period expires, all online exams will be available at US $90 and testing center based exams will be priced at US $200 (partner and internal discounts apply).
    No training required
    Typically Oracle requires in-class training as a part of the certification track. However, for this period of time, candidates will receive a waiver for the course attendance requirement. Those candidates who can pass the exams and finish the exam requirements without taking a training course are eligible to do so during this waiver period.
    Note: All exams for a track must be completed during the waiver period.
    Please be aware that not all of the exams are currently available.
    The first exam, 1Z0-200: Oracle 11i E-Business Essentials, is available now! This pre-requisite exam is part of the Oracle 11i Financials and Oracle 11i Supply Chain certification tracks, and is the first step in getting certified.
    Expect to see a notification as the other exams become available too.

Maybe you are looking for

  • [10.6.8]App Store Quit Unexpectedly

    I am trying to update to Mavericks. I open the App Store and it quits unexpectedly. It then gives me this error: Process:         App Store [289] Path:            /Applications/App Store.app/Contents/MacOS/App Store Identifier:      com.apple.appstor

  • How to determine total rows updated in a day

    I want to get the count for total rows updated in a table in a day. There is only two coulmns in the table. One is for EMP_ID & other for EMP_NAME. ( I want to do it without altering table or creating another column for storing updated date). Is ther

  • SYSTEM ADMINISTRATOR ERROR IN NOTIFICATION PAGE

    Hi all, I Have a customization where need to validate the notification respond attribute values using post notification. In this particular case there are used two respond attributes, one with type as Lookup and other as text. The second respond attr

  • Raw Material Sales

    Dear Expert, Scenario : Raw Material is Imported from Local/ Outside vendor in Factory. Here Excise duty additional Duty is also Captured in RG23A Part1&2. Now i need to sell the goods to Customer , here i need to passon Excise duty and additional du

  • Balanced Scorecard : Reversal of sign before showing value

    hi Experts, We want to multiply measure value coming from query by -1 before displaying in the scorecard. So in the attribute tab of measure definition for that measure for planning attribute in Reverse +/- signs we have put -1 as in F1 help its give