Advice for the implementation of Test Modules (HRMS, AR, AP) in R12

Hello

I am pretty new to Oracle Financials and R12 recently installed on my linux machine to try and test. My question may sound silly in a lot but please bear with me. After Installation I could login with SYSADMIN account and I can see Oracle E Business Suite, Oracle Applications Home Page.

On the left side, I see the following options.
Application developer
The application Diagnostics
Audit Manager
HTML of CRM Management
HTML CRM Developer
Integrated SOA gateway
Preferences SSWA
The system administration
System administrator
Users management
The administration of the process Web applications
Workflow user Web Applications

Now my question is how can I go to the screens of HRMS or account receivables etc I can customize the module. For example, if I want to set the chart, form where I will start from the options listed above do mention not everything related to accounts or HR or inventory etc..

Any help will be appreciated.
Please note that I chose, so almost all the options during installation time I'm 100% sure that these modules must have been installed.

Thank you in advance.

On the left side, I see the following options.
Application developer
The application Diagnostics
Audit Manager
HTML of CRM Management
HTML CRM Developer
Integrated SOA gateway
Preferences SSWA
The system administration
System administrator
Users management
The administration of the process Web applications
Workflow user Web Applications

Now my question is how can I go to the screens of HRMS or account receivables etc I can customize the module. For example, if I want to set the chart, form where I will start from the options listed above do mention not everything related to accounts or HR or inventory etc..

Click on these responsibilities to see their screens. If you do not have the responsibility added to your account, go to (responsibility of the system administrator > Security > set), ask your username and add responsibility.

Any help will be appreciated.
Please note that I chose, so almost all the options during installation time I'm 100% sure that these modules must have been installed.

Thank you in advance.

You can find docs EBS R12 to http://docs.oracle.com/cd/E18727_01/index.htm

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • Advice for the real world test device

    I keep running into problems of developing applications of BB where my code works perfectly well on all simulators, but as soon as I do the direct product of dozens of reports to be "unable to connect" is from (or another bug) flood from a random set of devices (the last wave is of Tower owners on Sprint and of course the app works fine on the tower for the Sprint Simulator using the same operating system) I am not able to go out and buy a Blackberry for all models on the carrier, and the labor to do these tests is beyond what my company can manage anyway.

    I'm looking for is advice of some experienced developers.  What do you do to get around this?  How do you verify that your code will run on real devices?  When you get hit by a real single bug, how to solve it?

    Thank you

    ~ NN

    Agree with Simon.

    deviceAnywhere is one that comes to mind, there are at least another company that was in the penultimate a DevCon, but I don't remember his name.

    Each new customer has a new experience with networking and you slowly build your code to handle the case.  Have to say that we are lucky, because we mainly deal with businesses, so use BES connections for most.  And the United Kingdom, there are only 5 carriers, so it is easy to code a quick test and determine what APN settings to use for each.

    Debug object, a method I would recommend is to write your own journal and provide your users with an easy way to email it to you.  Indeed, offer to send when you know you have a problem.

  • Advice for the implementation of FCPX to be used on two computers

    Hi all

    I really hope that you can give me some good tips to help me implement FCPX for use on my two computers.

    In a Word, my challenge is that I have my data (music, photos, video clips, etc.) stored on my iMac (saved regularly!), however as a still more frequent business traveler, I bought a macbook pro so that I can continue my hobby of projects in the long evenings to watch the hotel walls.

    What is the ideal way to manage my entire upward? I would be pleased to be able to synchronize my macbook with my iMac and just take what I need with me, work on him and then when arriving home sync back changes. Is this possible?

    More than happy to hear other recommendations anyone can have to handle these scenarios.

    Thanks, Chris

    Hello Chris,

    One method would be to have FCP X installed on Mac and use a fast external disk to store your libraries.

    The libraries will open and be usable on Mac.

    Just make sure that the media is stored as managed and not external.

    This means that all media will in the library.

    Al

  • Reset the State of the permissions for the BBM integration tests

    For the purposes of testing, I want to cancel my BBM surveys application registration and clear all permissions for this.

    Now when I remove and redeploy the application, he recorded again but do so without up permissions dialog window to ask if I want to allow it to access BBM or not.

    What should I do to get that back? If I go to the window of permissions of Applications in the settings (which is extremely buggy, incidentally) and disable the authorization of BBM, it does nothing but block the application to use BBM.

    Try to change your application id then. (The in the bar descriptor). That * has * to work, by definition. If it isn't, then you're doing something wrong, I think. If you change the id app, it's actually a different application.

  • Advice on the implementation of a server HTTP for APEX

    Hi Experts,

    I am very busy to configure an application in the APEX, and we are about to deploy it on our production servers.

    Side database is fine, but I have a few questions on the HTTP server.
    (I just trained as an engineer, working with databases for a few years but the world of HTTP is fairly new for me).


    -What is the best option for the HTTP Server?
    I tested autonomous apex_listener now and under Server GlassFish.


    When we move to production, I'm looking at:
    -max 10 concurrent users
    -windows 2003-based Web server
    -APEX 4.1
    -oracle 10.2


    -Once we have installed the APEX on the database server, we keep the apex available files, or can I just remove?
    (I know I need the file apex\images on the Web server).

    Hi JP,

    -What is the best option for the HTTP Server?
    I tested autonomous apex_listener now and under Server GlassFish.

    The stand-alone mode is intended to be used for development/testing purposes only. If you are considering a production deployment, use a server JEE 'full share '. GlassFish is an option. If it is the one that you want depends on your production and your previous experiences with JEE servers scenario. You will get a complete list of all the servers JEE with support in the section of the Setup Guide requirements.

    -Once we have installed the APEX on the database server, we keep the apex available files, or can I just remove?
    (I know I need the file apex\images on the Web server).

    You can simply delete the installation package, but you might want to keep some files for the tasks of maintenance and development, for example apxchpwd.sql in order to reset the password for the internal ADMIN of the APEX and the content apex\utilities if you need to reset the image prefix or use APEX based on java to export to export the line of command/script function (multiple) APEX applications.

    -Udo

  • I need some advice for the Satellite L630/03

    Hi all

    I just bought my first Toshiba L630/037 (http://www.mytoshiba.com.au/products/notebooks/satellite/l630/psk04a-037001/specifications#details) and I'm really excited that I'm waiting to load for hours first 2 or if, after perform you a unboxing conversion it!
    He looks bloody awesome and I can't wait to start using it!

    You have a few questions:
    1. when I received it, the sticker that keeps the top down was already torn (as in a person already open).
    The clerk said that everything is fine with it, so we opened it to check that the main seal for the laptop has not been broken and that the adapter and cable was there. Now that I'm home and I have everything out, I noticed that I have no CD.
    Is that suppose to be right? I'm a bit confused because the last laptop that I bought a few of the installation CD and the drivers that came with it. In addition, is there something else I should be aware of that should have been in the box?
    All I have is the power cord, power adapter, manual, portable with battery already in it.

    2. in the purchase, there are already standard warranty 1 year that comes with the laptop. I noticed on the Toshiba site, you can buy an extended warranty. Should I buy now? Or can I get, say 1 week before the end of year 1?

    If anyone has useful tips or advice that would be greatly appreciated!

    See you soon!

    > I took everything out, I noticed that I have no CD.
    Yes, that's right. No CD is delivered pre-installed Toshiba Software is on the HARD drive and you can create a clean recovery disk! Please see the operating manual!

    > Should I buy now? Or can I get, say 1 week before the end of year 1?
    Well, as far as I know you don t need to buy the extended warranty immediately after the laptop was purchased

    I found this info:
    > Q: When can I buy the extended warranty?
    > A: the extended warranty is eligible to purchase, during the period of warranty the laptop
    http://www.MyToshiba.com.au/support/warranty/extended/FAQ

  • 15 ab231na: advice on the upgrade of WLAN module

    I had to think to upgrade the WLAN module in my laptop and would like any recommendations you might have. The current module is the Realtek 87323BE. Ideally, the new module would have supported for the 5 GHz band and ac 802.11.

    Thanks in advance for any recommendation.

    Here you are updated.

    http://h10032.www1.HP.com/CTG/manual/c04642845

    page 26-27 for wifi

    The best seems to be the:

    Intel Dual Band Wireless-AC 7265 802.11 ac 2 x 2 WiFi + BT Combo Adapter (no vPRO) 4.0
    784644 005

    Since it has antenna 2 x 2 connections do not get 1 x 1, those who are not good.

  • soapUI for the SOAP connection test

    Hello everyone,

    I created my use of "stub" JSR 172. I tested it. But he showed me, the action failed. I was told that I can use soapUI before application BB test connection to the test server.

    At all ideal with soapUI?

    Thank you in advance!

    I'm certainly not a specialist using soap ui, but it allows to check the requests and responses.
    usually I just read the wsdl file and let soapui do the rest, you have a list of all the functions available for the Web service.

    to test Web services, another tip would be to encapsulate platform of your code (use no specific classes of bb) independent and test your webservice with junit. If you need classes specific suppy with a reminder (transport and transportSE, for example)

  • Do I need a CUCM for the implementation of a telepresence system 1300?

    can I install a telepresence system in an office with a UC560 or simply not use any appeals officer in the implementation of a telepresence system 1300?

    Hello

    With CTS endpoints you MUST use cucm to save the endpoints and callmanager will manage the firmware of endpoints, road marking, speed disls, midlet and all the other options and to let the CTS human access to these endpoints for control of booking and call for calls point to point and multipoint

    On the use of VPN recently it is authorized by cisco, according to me, especially for the endpoints one screen you can search for telepresence on wide band for a few cisco whitepapers

    Hope this helps

    If useful rates

    Sent by Cisco Support technique iPhone App

  • Any advice for the creation of delicate design, must I spend DW CS6?

    I bought DW CS6 years previously and have not yet upgraded to CC, but will do so if it will help me.

    I am wanting to be able to create tailored Web sites. Here is the information of sites (a dozen pages in the site), no ecommerce.

    All I need is a header with banner (eventually the banner image); 3 columns (left side navigation, main body/content and contact on the right form); footer. Other than the banner image, it is unlikely that I will use all the other images.

    My skills are limited, but I can use essentially CS6 to change a model that has the same structure.

    I want to increase my skills and be able to create a sensitive site that works well on all devices.

    Where should I start?

    1 should I upgrade to DW CC? If so, do I need to learn the "bootstrap" framework that comes with it then?

    2. should I learn how to create such a site from scratch in DW, or should I continue to buy templates and edit them-if so is there any where I can buy good quality reactive DW models with a GI provision after?

    3. any other advice, for example online resources or books that could be useful with a responsive design and DW.

    Thank you!

    1. no need to upgrade. Unless you need the extras for your web development company, I would not pay for CC.

    2. the easiest way is to use a framework. No need of haven't purchased models, there are plenty of free to use Bootstrap models available.

    3. use the following to get started

  • Best practices for the implementation of environment laboratory in ESX 3.5

    Hi all

    I currently have two systems ESX 3.5 in a dmz on a network for a lab environment. The place has a few other external servers such as dc, servers, exchange, ect, so even if it is in a demilitarized zone and a controlled DMZ network I want to ensure that the ESX 3.5 systems are in a sandbox environment. They need 1 external network adapter so that the virtual machine can download patches ect but the rest of the communication, I would like to be established between the VM internally. In other words, in a world of VM Workstation 6 I would have only 1 bridged network adapter but all others would be articulate under internal network cards.   This lab will be available for a lot of people like someone not running a DHCP server or a new domain controller which could knock out the other test environments in the demilitarized zone.

    How would you put this together with the vswitches? is Director of the laboratory, the best way to do this?

    To my knowledge there is no way "internal" to do. Workstation is by design the use of test/development and not the production-oriented and therefore the set of features is different from ESX (i).

  • Best practices for the implementation of META tags for content items?

    Hello
    The portal site, I am responsible for the management of our content (www.sers.state.pa.us) runs on the following WebCenter products:

    WebCenter Interaction 10.3.0.1
    WebCenter Publisher 6.5
    WebCenter Studio 2.2 MP1
    10gR 3 content services

    The I work for the Agency is one of many for the commonwealth of PA, who use this product suite, and I meet some confusion on how to implement META tags for content of our site, so we can have effective search results. According to the [explanation of META tag standards W3C website | http://www.w3schools.com/tags/tag_meta.asp], description tags, keywords, etc., should be between the cephalic region of the HTML document. However, with the configuration of the suite WebCenter is implemented, how the head section of the HTML is closed at the end of the model code to a common header portlet. I was advised to add fields to our entry presentation models and data for the content to add these meta fields, however, since they are then placed in the body section of the HTML accordingly, these tags fail to have a positive impact on search results. Instead, a lot of our content points, when searched, the description in the search results displays only the text that appears in the header and the left navigation of our model, which arrived earlier in the body section of the HTML.

    Please advise possible or methods that would be best to implement the use of META tags so that we can our pages containing content to come to the top in the search results with relevant data.

    Thanks in advance,
    Brian

    Basically, you want to add tags portals in the presentation model to move the meta tags of the element of the header of the actual document content. Check out http://download.oracle.com/docs/cd/E13158_01/alui/wci/docs103/devguide/apidocs/tagdocs/common/includeinhead.html

    email me if you have problems with thezmobiegroup.com andrewm

  • advice for the preloading and classes?

    Hi all on the forum.

    I did a class that is responsible for a Web site (fairly ordinary...), but because the entire site is generated as Childobjects and the code for the class, I was trying to make a preloader, but it won't work. Seems that the class load first, and then generates the entire site before loading the first image (where my charger is)...

    If the advice?

    use a preloader swf that loads your main swf.

  • Advice for the development of the ADF.

    Hello

    We have an internal application made in forms and reports. As today product of strategic importance for the future development of Oracle's ADF. If we intend to migrate the application internal even on ADF. We have 2 options:

    1. we should start developing the application from scratch in ADF? Or
    2. we should be using Jheadstart to migrate to the ADF, but then also re - write the features of PL/SQL.

    Please advice.

    Thank you.

    I think you need to read this article (again)
    The key is what makes a 'good' Forms application is still not a 'good' Apex, ADF, Java, .net, or whatever application (and vice versa). So if you want to do things good sense in your new technology so you think redesign to make the most of this technology.

    What you choose technology depends on many factors - your skills of developers, architects, clients, type of application template, business goals... I don't think someone can answer that but you or your team who know it.

Maybe you are looking for

  • Disable 3G

    The Defy + is my first smartphone, so forgive me if this is a stupid question... I only want to use internet (or apps going online) when I have a WiFi connection. I downloaded an app 'switch APN' to turn off the 3G and it works well. But I find it a

  • I have 4 GB of RAM, but only 3.75 GB are usable/available: why?

    I bought a desktop computer Dell Inspiron 400 in 2010. It has a processor AMD Athlon 2650c installed with a captivity of memory RAM of 4 GB but only 3.75 GB is usable or available, why? Where's the other Go.25?

  • Acer Aspire E14 display adapters

    Hello I recently bought an acer aspre e14, noticed that there is 2 graphics card is nvidia geforce 820 m & intel HD 5500. what I disabled the intel hd 5500? If so, how can I do? I try disabled intel hd 5500 in ther Device Manager, after that I always

  • finish by updating the user interface...

    IM create screen with pagination... Load button to add more data, it is normal on os 6 and 7 os... but in the os 5 process completed... I haved create to update the user interface of the thread to invoke later...This is my code to call later: UiAppli

  • Server 2003 Firewall blocks my windows 7 pro file sharing

    I have a small home network with a Server 2003 machine, 2 wired xp machines, 2 machines xp wireless and a machine of windows 7, which can be wired or wireless. (Currently hard-wired). My problem is the windows 7 machine cannot connect to 2003 server