GL configuration (BI Apps vs. DBI)

We have decided not to turn on the GL/Profitability Dashboards. Through research we noticed that the gl grouping configuration should still occur as the groups drive some AP and AR dashboards....However.....Does anyone know whether the GL account/hierarchy configuation that is in DBI is ONLY for GL or impacts AR and AP? Any info would be helpful as most of the logic is in procedures/packages/etc

Dont leave the BU column blank. Although you have to repeat the same groupings for each BU, please do that. You can just copy and paste the grouping for each BU. Note that these are the GL BUs. You dont need AP, AR or other BUs here.
The trees (for chartfields) are extracted using custom mappings into W_HIERARCHY_D. Once the tree is extracted, these are not used in any outof the box reports. You may have to build custom reports to drill up and down the hierarchies.
The account groupings are mainly used in reports off of the GL Balance, such as a balance sheet report etc. There are out of the box metrics defined based on the group account codes.

Similar Messages

  • How to configure google apps in Mail 5 of lion os x not as gmail but as exchange

    Hi All,
    I have been trying hard online to find some resource to configure google apps in Mail 5 of lion os x not as gmail but as exchange.
    The reason is that I want to sync my contacts as well as calendar and email but if configured as gmail ot only takes email and may be calendar.
    I use this over all my devices and need my calendars and contacts to be synced all over
    I called the customer support in USA but they directed me to call a UK number.
    Appreciate your guide line, or feedback with an online resource.
    Best regards,
    fawzy

    think i set it up like exchange but calendars doesn't sync and AB no sure,you also can do it in system preferences in the mail,calendars pane ..

  • How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    Try going to the web based site and see if you can set up a temporary folder there. Move anything you don't want to download to that folder.

  • Configuring OBI Apps 7.9.6.3 When Using Universal Adapter Exclusively

    Hello experts,
    I have been working for a few days in trying to configure a fiscal calendar with universal adapter flat files as the only data source because Great Plains is the data source and since Oracle does not support it, we use universal adapters. We have had limited success with this but in configuring OBI Apps 7.9.6.3 and doing normal configuration things such as configuring fiscal calendars and mapping GL accounts to group accounts using the Universal Adapter in DAC, there is virtually no documentation. In fact, when I Googled the universal adapter version of the group account codes file, there were 0 Google entries for it.
    I am sending this new thread in the hope that someone out there has successfully configured OBI apps 7.9.6.3 using the Universal Adapter and can point me to documentation of any sort other than the normal Oracle OBI Apps Config Doc which only briefly mentions it and then takes file examples that are OOTB and unconfigured in any way.
    Specifically, I need assistance in getting fiscal calendars working with the Universal Adapter. I have W_MCAL_DAY_D populated and all of the Gregorian calendar tables. However, the remaining W_MCAL* tables only have one row in each of them. I have an SR open about it but no success resolving it yet. While doing the configuration work, we tried to map GL accounts to group accounts but there is no account range in the Universal Adapter source file unlike the Oracle EBS version so I am unsure on how to configure group accounts. Oracle documentation only refers to Oracle EBS, PeopleSoft, and JDEdwards. I am unable to find anything regarding the Universal Adapter.
    If anyone has done this sort of OBI apps configuration before, please respond or send me URLs for related documentation. I am completely stuck and SRs are not yet helping so I thought I would try this.
    Thanks experts and looking forward to hearing from you.

    Hi Krish,
    You will have to create 20 Application Roles matching the Responsibility Names.
    Use one of the following methods to set up application roles:
    Create application roles in the policy store with the same names as existing responsibilities or groups in the source applications. Then, add the new application roles as members of Oracle BI-specific application roles groups, and the users will inherit this membership based on their own responsibilities or roles in the OLTP application.
    Add new Oracle BI-specific responsibilities (Oracle EBS and Siebel CRM Applications) or roles (PeopleSoft Enterprise applications) in the source applications, making sure their names match the object security application roles in Oracle BI Applications, and assign OLTP users to these new groups. The users will then inherit the application role membership in the same way as described in the preceding method.
    Application Roles in 11g are the Groups of 10g (http://blogs.oracle.com/robreynolds/entry/security_in_obiee_11g_part_2)
    Cheers,
    Daan Bakboord
    http://obibb.wordpress.com

  • How to configure sun app.

    can some body help me to configure sun app. to use it in my 1st EJB
    this is it my 1st EJB.
    1-i have this homeobject
    import javax.ejb.*;
    import java.rmi.RemoteException;
    * This is the home interface for HelloBean. This interface
    * is implemented by the EJB Server - the
    * implemented object is called the Home Object, and serves
    * as a factory for EJB Objects.
    * The create() method in this Home Interface corresponds to
    * the ejbCreate() method in HelloBean.
    public interface HelloHome extends EJBHome {
    * This method creates the EJB Object.
    * then returns a reference to the newly created EJB Object.
    Hello create() throws RemoteException, CreateException;
    2- this is ojb
    import javax.ejb.*;
    import java.rmi.RemoteException;
    import java.rmi.Remote;
    * This is the HelloBean remote interface.
    * This interface is what clients use to
    * interact with EJB objects. The container
    * vendor implements this interface. The
    * implemented object is the EJB object, which
    * delegates method calls to the actual EJB.
    public interface Hello extends EJBObject {
    * The hello() method returns a greeting to the client.
    public String hello() throws RemoteException;
    3- this is the bean it self.
    import javax.ejb.*;
    import javax.naming.*;
    import javax.rmi.*;
    * Demonstration stateless session bean.
    public class HelloBean implements SessionBean {
    public String test;
    // EJB-required methods
    public void ejbCreate() {
    System.out.println("ejbCreate()");
    public void ejbRemove() {
    System.out.println("ejbRemove()");
    public void ejbActivate() {
    System.out.println("ejbActivate()");
    public void ejbPassivate() {
    System.out.println("ejbPassivate()");
    public void setSessionContext(SessionContext ctx) {
    System.out.println("setSessionContext()");
    // Business methods
    public String hello() {
    System.out.println("hello()");
    return "Hello, World!";
    4- this th client
    import javax.ejb.*;
    import javax.rmi.*;
    import javax.naming.*;
    import java.util.*;
    public class HelloClient {
    public static void main (String args[]) {
    Hashtable props = new Hashtable();
    InitialContext initCtx;
    try {
    props.put("java.naming.factory.initial", "com.sun.jndi.cosnaming.CNCtxFactory");
    props.put("java.naming.provider.url", "iiop://localhost:1050");
    initCtx = new InitialContext(props);
    Object obj = initCtx.lookup("HelloHome");
    HelloHome hh = (HelloHome) PortableRemoteObject.narrow(obj, HelloHome.class);
    Hello h = (Hello)hh.create();
    System.out.println(h.hello());
    h.remove();
    catch(Exception e) {
    e.printStackTrace();
    System.out.println(e.getMessage());
    }

    Use deploytool and follow the instructions in the J2EE tutorial.
    It's quite straightforward.

  • Configuring SharePoint Apps in Production Environment

    SharePoint 2013 Environment. We are trying to configure SharePoint APPS in production environment. It is a medium server farm with two W.F.E's load balanced. 
    We have the following two DNS entires with two different wildcards pointing to the SharePoint FQDN. 
    contoso.com 
    contosoapps.com
    Since we are planning to use https, In the DNS we have assigned a random ip address to just the apps domain. Created a new web application with no host header and assigned this IPAddress to this web application by changing the binding (for both http and
    https) on both the servers.
    When I click on the app, the redirect does not work and displays page not found error. Any help?
    V

    You said you created a new web app with no host header.  Did you also create a root level site collection in the web app?  You don't actually use the site collection but it needs to be there.  Also make sure that https is the default zone
    on that web app.  Apps normally only use the default zone for redirecting to the address and if you are using https it won't work unless that is the default zone.
    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.

  • I need to upload into configurator an app I got when it was free, however I can't PURCHASE the app as it thinks I already have it in my VPP account.

    I need to upload into configurator an app I got when it was free, however I can't PURCHASE the app as it thinks I already have it in my VPP account. I am using TWO MacBooks and TWO configurator profiles - one on each MacBook, BUT one school VPP apple ID in iTunes. I downloaded this app when it was free and put it into ONE configurator account, but I now want to put it into the other account on the other MacBook. I understand I need to pay for the app and get codes, however as it is already downloaded into my VPP iTunes, it comes up as downloaded and I don't know how to redeem codes or pay for it? Please advise. Thank you.

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the region where you are located.
    9. Tap "Done".

  • Where do I sync/back-up my iPhone3G (4.2.1) notes on my MacBookPro running 10.6.8 'WITHOUT' configuring Mail App ?

    Where do I sync/back-up my iPhone3G (4.2.1) notes on my MacBookPro running 10.6.8 'WITHOUT' configuring Mail App ?
    I use my mbp for professional audio recordings and I do not wish to configure mail cause it'll just eat up space on my internal HDD with messages.
    By the way, is there a way to configure mail to store all messages and synced notes on an External HDD ? I would be most pleased to know and do that effectively...

    Seems Apple is making things more difficult with every OS update. Back in the day you used to be able to organize your applications instead of having them all in one folder. You used to have a lot more freedom. More and more it is just easier to use a third party app. So I'm gonna install Thunderbird until Apple comes up with an easy way to fix the mail app. it seems that eveything in help says you just gotta reinstall the system from scratch. I would rather just use an open source product that I can put into any forlder I want without having to worry about it screwing itself up. Had similar experience with Safari now it seems like it is time to get rid of Mail.

  • Configure BI Apps on ODI installation

    Hi All,
    we have installed ODI 11g and BI Applications 11.1.1.8 (on Windows Server 2008) and we have need to use BI Apps (like standard mapping SDE, SIL, PLP ecc).
    Our installation works correctly, but, under “Projects” tab, we don’t have any object.
    How we can “configure” BI Apps on our ODI installation?
    Thanks in advance.
    Luca

    Hi
    I stand to be corrected but...my understanding is that Oracle wanted to move away from informatica as the etl tool and released the 7.9.5.2 fusion edition with ODI.
    Then there was a change of direction and the later 7.9.6 releases are all supplied with an oem version of informatica.
    If you going with 7.9.6.1 and you do not want to use informatica you will have to custom build your etls....
    Regards
    Nick

  • How configure mail.app with webmail, exchange 2003?

    Hi,
    I would like to configure mail.app with webmail, exchange 2003.
    I have certified file of this serverver, and the webmail used https and port 443,listener port.
    And webmail address is https://webmail.abc.com/exchange.
    How configure mail.app with webmail?
    Best regard and I'm pleased to thank you for you kind support in advance.
    nautiluzth

    For the best Mac compatibility with Exchange, I suggest you use Microsoft Entourage, part of Microsoft Office.

  • Adobe LiveCycle ES 8.2 Installation Error can't configure the App Server from Config Manager

    Hello All-
    We are trying to install the Adobe LiveCycle ES 8.2 SP2 and we are getting some issues while configuring the Application Server from the Config Manager, not sure why are those showing up, we never had these issues before when we installed 8.0, please look at the lcm log and the screenshot I provided for the errors which we are getting.
    We are trying to configure the remote Application Server WebSphere on Linux from my machine which is on Windows and i made the target Application Server as WebSphere and target platform as linux when i initially installed the livecycle media.
    The LCM logs say it failed to run the jacl scripts in the LiveCycle root directory and we wonder why is it pointing for the target Application Server to the Application Server which resides on my machine rather than it should point to the one on server. I am not sure what's going on and we did exactly what we did for 8.0.
    Below are the environment details where we are trying to install.
    Adobe LiveCycle ES: 8.2 SP2
    Database: IBM DB2 9.1 FP4.
    JVM Version and Vendor: 1.5.0 IBM Corporation
    Application server: IBM WebSphere Application Server/6.1.0.19
    Operating System: Linux
    Hardware: x86 .
    Any help will be appreciated!
    Thanks-
    Karthik.

    Hi All,
    Even i was facing the same issue but i was able to resolve it.
    Although the earlier reply from karthik_chowdary was sent way back in 2008 and i think would have got resolved till now, but still the resolution which i have found is
    The port i was using on the app server conf screen was that of application server HTTP Port.
    But here in case of WebSphere ND, we need to use port specified in WAS UI > System administrator > Deployment manager > Ports
    Try using that by default it is 8879.
    And this resolved the issue.
    ~Hkin

  • Configure Multiple App Servers to Use Same Files from Network Share?

    Application Server v10.1.2
    We're currently running Oracle Forms and Reports for a legacy application. It is served up by 8 app servers who pull the files from a single file server. We are beginning to transition pieces of this application to Java; how would we configure the OC4J instances on all 8 machines to pull the Java files from the single file server? In my experience I've always just logged into each app server, gone into the OC4J instance, pointed it to my ear file and let it install(course, I only had to manage one or two servers, never 8). That doesn't seem like that would work in this distributed configuration.
    Any suggestions?

    You can cluster your Application Servers, and then deploy your EAR to the cluster insted of deploying the EAR on a single OC4J.
    Bye,
    Andrea

  • Problems with Apple Configurator and app lock.

    Hello Folks!
    I'm using a bunch of iPod Touch of the 4th generation (iOS 6). I locked them in an app with apple configurator 1.1.2. From time to time I get a message: The guided access is not available any more, contact administrator.
    Reconnecting to the maintance laptop solves the problem.
    How can I prevent this?
    Thanks
    Nils

    I recommend posting in the iPhone or iPad for the Enterprise forums

  • Configuration in App.config for MS Excel 2002

    I want to read data from MS Excel 2002 into my List<t>
    I want to connect MS Excel using App.config.
    Assuming file name is "MyExcelFile.xls" and DataTableName is "Sheet1$", how could I make configuration string?

    Try below steps,
    In app.config file add below section
    <connectionStrings>
        <add
    name="MyConnectionString"
    connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source='C:\Temp\MyExcelFile.xls';Extended Properties='Excel 8.0;HDR=NO';"
    providerName="System.Data.OleDb"
    />
      </connectionStrings>
    Add “appSettings” section for Sheet Name Configuration,
    <appSettings>
        <add
    key="DataTableName"
    value="Sheet1$"
    />
    </appSettings>
    In code you could do something like this,
     string connection_string = System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
    string selectSQLCommand =
    string.Format("Select * from [{0}]",
    System.Configuration.ConfigurationManager.AppSettings["DataTableName"]);
    DataTable excelSheetData =
    new
    DataTable();
    using (OleDbConnection
    oledbConnection = new
    OleDbConnection(connection_string))
    using (OleDbDataAdapter
    oleDbDataAdapter = new
    OleDbDataAdapter(selectSQLCommand, oledbConnection))
                        oleDbDataAdapter.Fill(excelSheetData);
    List<DataRow>
    excelRows = excelSheetData.Rows.Cast<DataRow>().ToList();
    NOTE: you need to add “System.Configuration” assembly reference in your project. Change ‘HDR’ as per your requirement.
    If the above solution meet your requirement then you could actually make it more generic by passing dynamic excel file name in your connection string.
    Hope that helps.

  • I want to configure per-app vpn . can i get a sample mobileconfig file

    how do i configure or make a payload for per-app vpn configuration. can someonw provide me with a sample mobileconfig file please

    sorry couldnt find any way to appeand info to my qt hence adding in reply:
    my problem is similar to the one discussed in this forum https://forums.openvpn.net/topic13887.html

Maybe you are looking for

  • How do I know which workflow has been activated for my SHC in SRM

    Hi Experts , Can anyone tell me where to find which workflow has been activated to my Shopping cart in the SRM. so that it creates a PO in the backend To create a PO in the back end it should have a WF actiavted. do we can have only always one WF act

  • Jaas in 11g

    Is there any working tutorial or example on getting jaas working in 11g? The 10g jaas demo doesn't work in 11g, nor does a migrated working jaas project from 10g to 11g.. any sort of help welcome..

  • Adf input complex arrays error

    I have web service that contains array of complex type as input. I want to invoke web service from jspx page using adf. I have added web service data control and followed this guide [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/54-

  • Bash script for checking link status

    So I'm doing some SEO work I've been tasked with checking a couple hundred thousand back links for quality.  I found myself spending a lot of time navigating to sites that no longer existed.  I figured I would make a bash script that checks if the li

  • Are Student Editions available for Hong Kong?

    And are there resellers for student edition licenses in Hong Kong/China?