Two cash flow hierarchy in one application

Hi,
We are running BPC version 7.0 .Currently we are running cash flow hierarchy as per indirect method . We need Cash flow as per direct method.Can we have two cash flow methods hierarchy in one application?
Regards
Chandan

Hi Chanda,
I believe you are maintaining the cash flows in your account dimension. You can maintain 2 hierarchies in the account dimension for different purpose.
Hope this helps.

Similar Messages

  • Open two GUI( JFrame) simultaneously for one application

    Can we open two GUI( JFrame) simultaneously for one application at tha same time.if yes why ?and if no why?

    OK, its really simple, basically, you need a desktop frame to stor all the other frames and then you just pop them in, from a new class each time.
    Here's the code from the demo I learnt it from:
    (The demo itself)
    import javax.swing.JInternalFrame;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    * InternalFrameDemo.java requires:
    * MyInternalFrame.java
    public class InternalFrameDemo extends JFrame
    implements ActionListener {
    JDesktopPane desktop;
    public InternalFrameDemo() {
    super("InternalFrameDemo");
    //Make the big window be indented 50 pixels from each edge
    //of the screen.
    int inset = 50;
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    setBounds(inset, inset,
    screenSize.width - inset*2,
    screenSize.height - inset*2);
    //Set up the GUI.
    desktop = new JDesktopPane(); //a specialized layered pane
    createFrame(); //create first "window"
    setContentPane(desktop);
    setJMenuBar(createMenuBar());
    //Make dragging a little faster but perhaps uglier.
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    protected JMenuBar createMenuBar() {
    JMenuBar menuBar = new JMenuBar();
    //Set up the lone menu.
    JMenu menu = new JMenu("File");
    menu.setMnemonic(KeyEvent.VK_D);
    menuBar.add(menu);
    //Set up the first menu item.
    JMenuItem menuItem = new JMenuItem("New");
    menuItem.setMnemonic(KeyEvent.VK_N);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("New");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    //Set up the second menu item.
    menuItem = new JMenuItem("Quit");
    menuItem.setMnemonic(KeyEvent.VK_Q);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("Quit");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    return menuBar;
    //React to menu selections.
    public void actionPerformed(ActionEvent e) {
    if ("New".equals(e.getActionCommand())) { //new
    createFrame();
    } else { //quit
    quit();
    //Create a new internal frame.
    protected void createFrame() {
    MyInternalFrame frame = new MyInternalFrame();
    frame.setVisible(true); //necessary as of 1.3
    desktop.add(frame);
    try {
    frame.setSelected(true);
    } catch (java.beans.PropertyVetoException e) {}
    //Quit the application.
    protected void quit() {
    System.exit(0);
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    InternalFrameDemo frame = new InternalFrameDemo();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Display the window.
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    Myinternalframe.java:
    import javax.swing.JInternalFrame;
    import java.awt.event.*;
    import java.awt.*;
    public class MyInternalFrame extends JInternalFrame {
    static int openFrameCount = 0;
    static final int xOffset = 30, yOffset = 30;
    public MyInternalFrame() {
    super("Document #" + (++openFrameCount),
    true, //resizable
    true, //closable
    true, //maximizable
    true);//iconifiable
    //...Create the GUI and put it in the window...
    //...Then set the window size or call pack...
    setSize(300,300);
    //Set the window's location.
    setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
    You should be able to tell from that

  • How to use two different database Drivers in one application ????

    I want to select datas in a result set of a query on a ms access database table and insert these into a mysql table of a mysql database in one application.
    Now my problem is that only on database driver is acceptet in the same application even it`s instanciatet in a completely different class !!!
    Here's the structure of my program:
    class one:
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database += filename.trim() + ";DriverID=22;READONLY=false}";
    java.sql.Driver driver0=new sun.jdbc.odbc.JdbcOdbcDriver();
    DriverManager.registerDriver(driver0);
    DriverManager.getDriver(database);
    con2=DriverManager.getConnection(database,"","");
    DatabaseMetaData dmd2;
    dmd2=con2.getMetaData();
    stmt2=con2.createStatement();
    rs2=("SELECT (.........
    until here all values can be selected correctly from ms access
    class2.get_gas_id(fla_gas);
    Now I want to insert these values into mysql.
    By despair i created a second class with another jdbc-method:
    class2:
    public class gas_select{
    public static int fla_gas_id;
    public static void get_gas_id(String fla_gas)
    java.sql.Statement stmt3;
    java.sql.Connection con3;
    java.sql.ResultSet rs3;
    FileWriter fout1;
    try
    java.sql.Driver driver1=new org.gjt.mm.mysql.Driver();
    DriverManager.registerDriver(driver1);
    DriverManager.getDriver(config.db_rge_stoffe); ==>
    config.rge_stoffe="jdbc:mysql://192.168.10.101:3306/rge_stoffe?user=<user>";
    con3=DriverManager.getConnection(config.db_rge_stoffe);
    java.sql.DatabaseMetaData dmd3;
    dmd3=con3.getMetaData();
    stmt3=con3.createStatement();
    rs3=stmt3.executeQuery("SELECT (Nr) from tblgaseliste where Gasart like "+"\'"+fla_gas+"\'");
    while(rs3.next())
    fla_gas_id=rs3.getInt("Nr");
    fout1.write(fla_gas_id);
    stmt3.close();
    con3.close();
    fout1.close();
    There's no result and no error message. Idon't know what to do !
    Has anyone an idea ???
    Edited by: goberger on Mar 27, 2008 3:35 PM

    Hi!
    If I understand your problem correctly, you can create connections to as many databases as you want in one class. In one of my programs I have connection to 3 separate databases, but here is an example:
    Connection mysql_con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbmysql", "root", "12345");
    Connection pg_con    = DriverManager.getConnection("jdbc:postgresql://127.0.0.1:5433/dbpgsql", "postgres", "12345");Then from mysql_con and pg_con create PreparedStatement or Statement then load selections into ResultSet and then use getString() to get a basic String type result that you want and so update table from each database.
    HTH
    Victor.
    BTW Here I use port 5433 for PostgreSQL connection because I SSH tunnel it from 5432 to 5433
    Edited by: vic_sk on Mar 27, 2008 4:23 PM

  • Can we run two while loops independently in one application?

    I am acquiring two channels using PCI-6052.both channels to be read at 2ks/s,but I want to scans read at a time different for each channel,So I put two AI-read vi's in two different while loops.but the second while loop waits until the first is completed.Can we run independently both while loops?

    Dear Haider Abbas,
    you can scan two different channels at the same time with the same AI Read if your hardware device is cabable of it, e.g. you must have one A/D converter for each channel. If you have one A/D converter only and your channels are multiplexed then it won't work.
    You can try running both loops indepentendly by using delays but in this case the data acquisition will not be at the same time. You have also to consider that every time you call for AI Read the DAQ card will be initialised with takes some time
    Hope this will help you.
    Stephan

  • Webservice and UI codes in one application

    Hi,
    We have two applications, one for the UI and one for web services. Both of them have Model project. Hence, we are thinking of merging then into one application which contains three projects: UI, Web services and Model so that both UI and Web services share the same Model project, no redundant codes. Just wondering is that a good design, will there be any issues? So can it be generated two deployment EARs files within one application?
    Please advise.
    Thanks
    -Mina

    you can have your approach itself.. but.. both webservice and the UI project will be have a dependency on the model project.. but you cannot reuse the model project any where else..
    the suggestion given by shay, helps you to use the model library in both UI and webservice.. and can also extend to any other project which needs to access the model project..
    in this case you are refering only the libraries of model project.. so no direct depenedency..

  • Why is my through put better with two applications than one application?

    I have two functions, acquire data and write date to database.  If I divide these two functions into two applications run under one project, my through put is 100 Hz; but if put both function into one application my through put 10 Hz.

    Code woudl help. Without it we would be shooting in the dark as to what your issue is.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • How to make data flow from one application to other in BPEL.

    Hi All,
    I am designing work-flow of my application through BPEL(JDeveloper), I am making different BPEL projects for different functions, like sales manager got the order from sales person and sales manager either approve it or reject it, if he approve it it goes to Production manager and he ships the goods, now I want to keep sales person, sales manger,production manager in seperate BPEL files and want to get the output of sales person to sales manager and sales manager to production manager please help me in dong this.
    I was trying to make partner link in Sales manager of sales person and getting the input from there. I dont know this is right even or not, if it is right I dont know how to make data flow from one application to other.
    Experience people please guide.
    Sales Person -----> Sales Manager ----> Production Manager
    Thanks
    Yatan

    Yes you can do this.
    If you each integration point to be in different process, you have to create three BPEL process.
    1. Create a Async BPEL process 'A' which will be initiated when sales person creates the order.
    2. From BPEL process 'A' call a ASync BPEL process 'B' which has the approval flow. Depending on the input from process 'A' the sales manager will review the order in workflow and approve or reject and send the result back to process 'A'.
    3. Based on the result from workflow, invoke the Sync BPEL process 'C', where you can implement the shipping logic.
    -Ramana.

  • I have CS4 installed on two computers however none of the applications will now open on one machine and I get the error message 150:30

    I have CS4 installed on two computers however none of the applications will now open on one machine and I get the error message 150:30

    Your best bet is probably to start over by cleaning off the old software with the Adobe Cleaner tool:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Then reinstall from your original media, or download it here:
    http://www.adobe.com/downloads/other-downloads.edu.html

  • Two different themes in one application

    Hello,
    I am quite new to Apex and currently I have a problem which g**gle can't answer :-)
    I want to set two different themes on some pages in the same application. When trying to change the theme on one page this can only be done for all pages in this application. Is there a possibility to reach my goal?
    Thanks for your support
    cheers, sebastian

    Hi Sebastian,
    It isn't possible to apply multiple APEX themes to one application, but the same effect can be achieved by applying one set of templates with multiple styles.
    What you need is a theme that separates the style (CSS and images) from the structure (templates) so that multiple colour schemes can be applied to the same template set. Unfortunately the themes supplied with APEX weren't designed this way.
    The general idea, that Matt mentioned, is to have multiple CSS style sheets and sets of images that can be applied to the same template set. This way, you can create two pages in the same application, with the same template set, but apply a different style/colour scheme/look and feel to each page by setting different paths to the CSS files and images at page level.
    All of my themes work this way for exactly this reason. This article on dynamic theme switching might help explain the concept. Although the switching mechanism is presented to the user as a select list, this doesn't have to be the case. The "switch" could be made internally based on page number or some other condition.
    -Stephen
    APEX Themes

  • Cash Flow  IN ORACLE APPLICATION

    dear Brother's
    What is the meaning of "CASH Flow"?
    How can handle it in oracle?
    Is a cash flow like any other report like balance sheet?

    Hi
    Cash Flow statement in Oracle refers to the summary of projected Cash position after certain period.It is like Cash Forecasting. This is handled through Oracle Cash Management Module
    Suppose you would like to know the cash position after 30 days from now
    A sample could be as follows
    Opening Cash Balance as of Now
    Add
    Sales Orders
    Sales Invoices
    Receivables
    Project Orders
    Less
    Purchase requisition
    Purchase orders
    Suppliers Invoices
    Closing Cash Balance after 30 Days
    You can choose the components to add and remove the functions according to your Business Requirement
    It is not the Cash and Funds Flow statement as required by Auditors. You can prepare the same with a Customized Report.
    Hope this helps
    Regards
    Sivakumar

  • Cash flow start date and first posting date in REFX-RECN contract

    Hi,
    While reviewing old contracts, I have noticed that in contracts where first posting date is mentioned,  the cash flow start date is not editable in contract change screen.  In contracts where first posting date is not mentioned, the cash flow start date is editable in the change screen.
    Is this standard system behaviour?  Because i have read in the forum that cash flow start date is not editable after first posting of the conditions.
    I tried to change the field status of cash flow start date through RECACUST,  but despite keeping the field status as display,  the cash flow start date remains editable.
    Please help on how to make the field status not editable.
    sadhana

    Hi Sidhharth,
    Thanks a lot for your immediate reply.
    I still have one query.  You have written that
    Where First posting date is not updated it indicates that posting of the contract is yet to be done,not a single posting has been performed hence Cashflow date is editable.
    This means first posting date is always filled up after condition is posted.  but in our system i find that the date is blank and greyed out even after the 1st posting.
    Could it be due to having several conditions in the contract - some with one time posting, some with monthly posting?  eg.most of our contracts have atleast two contions - one for deposit which is one time payment, one for rent.  the first posting date is updated in individual condition for rent in conditions tab  but first posting date in terms tab is blank.     But even in single condition contracts, the first posting date is not getting updated in term tab (the field gets greyout out once contract is activated)
    Thanks once again.
    Sadhana.

  • Regarding Cash Flow report

    Hi all,
            one of my clients has asked for the cash flow report to be modified. They are making incoming payment and outgoing payments with different series for cash and cheque. However, in the PLD of the cash flow report they want the title to be as " Cash Book" in case they select cash and " Bank Book" when they select the cheques. Is this possible in pld or is there any other way to achieve this?? Please suggest.
    Thanks in advance,
    Joseph

    Hi JOseph,
    Either u have to create  two templates or u have to go for development like crystal .
    Rgds,
    Premraj

  • How To Assign FSV to Cash Flow Report/Form

    I am working on Standard cash flow statement report - S_ALR_87012273/S_ALR_87012272 (can someone also tell me the difference between the two reports). can you please tell me what needs to be configured in order for this report to run and display data. I believe I need to change assign the FSV to Cash Flow form in Report Painter. AmI right, if this is the case where do I assign it. Because the cash flow report that I ran has FSV "INT" not the one which is configured.
    Please reply as soon as possible
    thanx

    Already replied. Try it and revert back
    Cheers
    V.Krishnan

  • How to create a Cash Flow Statement?

    Dear all:
    I am trying to create a Cash Flow Statement, and my approach is to use Dimension formula to calculate on the fly. Is my approach the best practice, or should I use script logic instead?
    Based on my understanding, if I use Dimension formula, I won't need to create new set Dim members to store the calculated values (such as Increase (Decrease) in A/R = A/R this month - A/R last month). However, I am having problem constructing the formula in FORMULAH1 column.
    Given above A/R example, I tried to use [NetAR] - ([NetAR],[Time].[PRIOR]) to get the difference in value between this month and last month, but I received error message saying that "The hierarchy '[PRIOR]' was not found in the cube when the string, [TIME].[PRIOR], was parsed". Is there anyway to retrieve Next or Prior months data in MDX?
    If my approach is not correct, please advise correct way.
    P.S. I have searched the forum and someone mentioned using Account Transformation logic. I looked up Administration Help file but didn't grasp the concept of Account Transformation logic. Can someone explain in detail for me?
    Thank you for your help!
    Brian

    Try not to use DIMENSION LOGIC, unless it is really simple.
    This is a set of ideas from the BPC 5 demo that I often use for Cash Flow Statements.  This may be modified for your use, but the idea is consistent. Just remember to prep the customer to understand that 1 time charges and 1 off changes to CF statements are more often added and managed manually since it they would always impact a CF report.
    Logic from version 5 BPC Demo- Finance App
    *INCLUDE SYSTEM_CONSTANTS.LGL
    *SYSLIB CONSOLIDATION_LIBRARY.LGL
    // MOVE INCOME STATEMENT ITEMS TO CASH FLOW STATEMENT
    RUNSUMMARIZE(ThisApp,CF_SUMM,%CATEGORY_SET%,%LC_RPT_CURR%)
    //CALCULATE BALANCE SHEET MOVEMENTS AND POST TO CASH FLOW STATEMENT
    *SELECT(%FROM_ACCOUNT%, "[ID]", "ACCOUNT", "[CF_TO_ACCT] <> ''")
    *XDIM_MEMBERSET ACCOUNT = %FROM_ACCOUNT%
    *XDIM_ADDMEMBERSET TIME = PRIOR
    *XDIM_MEMBERSET RPTCURRENCY=%LC_RPT_CURR%
    *WHEN TIME
          *IS %TIME_SET%
                *REC(ACCOUNT=ACCOUNT.CF_TO_ACCT)
          *IS PRIOR
                *REC(FACTOR=-1,ACCOUNT=ACCOUNT.CF_TO_ACCT,TIME=NEXT)
    *ENDWHEN
    *COMMIT
    Changes to above:
    Dependencies (libraries, properties, etc.)
    - SYSTEM_CONSTANTS.LGL
    - CONSOLIDATION_LIBRARY.LGL u2013 to run the Business Rules section
    - The following dimensions, members and properties are assumed
              Account
                   CF_TO_ACCT property which is on all base level accounts which are part of the cash flow statement. The value should be the cash flow account that they map to. The dimension values are the IDs so they are all assumed as names
                   CF_SUMM property used to move the income statement items to the cash flow statement. Contains the formulas on the destination cash flow accounts that map the Income statement accounts.
              Time u2013 just the dimension name
              RptCurrency
              CURRENCY_TYPE property with a value of  L or R
    What does it do?
    Step 1 - MOVE INCOME STATEMENT ITEMS TO CASH FLOW STATEMENT
    Use the formulas in the CF_SUMM accounts to move income statement values to the cash flow statement for all currencies based on the Currency_Type property
    Step 2 - CALCULATE BALANCE SHEET MOVEMENTS AND POST TO CASH FLOW STATEMENT
    ·        Select all accounts that have values in the CF_TO_ACCT property
    ·        Add the Prior time period to the time memberset
    ·        Run this process for all currencies based on the Currency_Type property
    ·        Take the value in the current period and the negative value of the prior period to calculate the periodic cash flow amount and write to the account designated in the CF_TO_ACCT property
    IMPORTANT NOTE: this step does have an issue that will be corrected in future versions of the sales demo. The issue is that if you run this logic for 2007.MAR, the negative balance for 2007.MAR will be written to 2007.APR as well as 2007.FEB being written to 2007.MAR. The logic needs to be changed as follows to work
    First create two members in the DataSrc dimension that both consolidate to PreAdj member of the DataSrc dimension named CF_Current and CF_Prior
    Add the following statement after the *XDIM_MEMBERSET RPTCURRENCY=%LC_RPT_CURR%
    *XDIM_MEMBERSET DATASRC=
    Change the REC statements as follows
    *REC(ACCOUNT=ACCOUNT.CF_TO_ACCT,DATASRC=u201CCF_Currentu201D)
    *REC(FACTOR=-1,ACCOUNT=ACCOUNT.CF_TO_ACCT,TIME=NEXT,DATASRC=u201CCF_Prioru201D)
    Hope this helps somewhat.  It is really hard to send this detailed stuff usingthe FORUM.
    Edited by: Petar Daniel on Dec 11, 2008 8:39 PM

  • Multiple xml files in one application?

    Is it possible to split up the xml code
    and let different session info objects
    use different xml files in one application?
    null

    Krasimir,
    Actually, my last reply might have been a little misleading. If you use ADF libraries then your task flows should be packaged correctly and should just work. I created a very simple test as follows:
    1. Created a new project. In adfc-config added two view activities, pageb1 and pageb2, and some navigation between them. Created the .jspx files for these view activities.
    2. Deployed my project as an ADF library and exposed the library in the resource palette (using a file system connection).
    3. Created a new application containing a project (project1). In project1, created a simple flow in adfc-config.xml with pagea1 and pagea2.
    4. Added my ADF library to project1.
    5. Now, by expanding the ADF library in the navigator (select Show Libraries from the dropdown menu on the Projects toolbar) I can see the adfc-config file in my library, and see that it is now under META-INF.
    6. I can run the adfc-config in my library and the adfc-config in my project - both work fine. I can also access any of the view activities in either flow by accessing the URL directly.
    Do these basic steps work for you? Let me know if any of it is not clear.
    Blaise

Maybe you are looking for

  • BPM - Simple integration process

    Hi guys, I'm new at BPM and I've created a simple process. Looking at the weblog "Walkthrough with BPM" by Krishna, i was able to create the simple scenario: Source System -(File Adapter)->BPM-(File Adapter)->Target System. Now imagine I wanted to in

  • Import Lang. part of support package

    Hi all!!! I tried import language part for support package. In SMLT->Other Tools->Import Language part of support package. choose language. and i see table of supp.packages First position of support package is SAPKINBB9A PI_BASIS 2005_1_700. Where I

  • SmartcardIO and PKCS15

    Hello, I'm not sure if this is the correct forum to place my question, but it's the closest I found. I'm using javax.smartcardio to connecto to a card, select the applet, read files and certificates, perform digital signatures, etc. However, for thes

  • I need iphoto for my Mac Powerbook G4 10.5.8 where can I find a free download?

    I need a free download for iphoto for my Mac Powerbook G4 10.5.8 laptop anyone from a site that I can download it for free?

  • Find symbol "#" and delete.

    HI All, I am getting the sting itext as "abcd#efgh#ijkl#mn" in my field "SGTXT" i want to remove the # symbol in my report for the particular field i am just wondering that do i have any instruction in so that i could find the symbol "#" and delete i