FSG Row set Definition

Hi ,
In FSG Report Row set Definition,
we have assigned the one parent account and choose expand for the Natural account . But the requirement is to fetch from multiple set of books , so we copied the same account assignment and assigned different set of books also ... Now my question here is ,
when i run the report , it shows different row for each set of books .
is it possible to combine all the rows of the different set of books?
We are in release 11.5.10.2
Thanks
Regards
Muthu

Hello Muthu.
On the query bellow, change the period name, the SOB id and the currency to your needs, run it, and let me know what other info you will need.
SELECT cc.segment1, cc.segment2, nvl(sum(b.period_net_dr - b.period_net_cr),0) "Period Balance"
FROM gl_balances b, gl_code_combinations cc
WHERE cc.code_combination_id = b.code_combination_id
AND b.set_of_books_id = 52
AND b.period_name = 'Abril-2011'
AND b.actual_flag = 'A'
AND b.currency_code = 'EUR'
GROUP BY cc.segment1, cc.segment2
ORDER BY cc.segment2
Octavio

Similar Messages

  • No reprin work in request FSG - Row Set Detail Listing

    Oracle General Leadger.
    Actuall we submit the above mentioned request on test server,it's wokring fine but on prodction server is not wokring re-print option in toll Menu.we print by output tool and copy in explore and manually printing.
    so,please help me how can we do in production..

    Hi guys coould you please help me out ??
    BR
    ANA

  • FSG Reports : Row Set Account assignments (Display Type to show Account nar

    I have an FSG related issue. I've defined a report using a basic row set and a column set. In my row set, I've used account assignments and the display type as 'Expand' to my natural account. Is it possible to show the narration of the account in the report instead of the natural account number?
    For example, My report now displays '1401' - which is the natural account number. I want to display its narration which reads 'Revenue'
    Miranga

    Hi Miranga,
    it is possible to display the Account code description .. infact you can display both account code and description ... for which you need to create a ROW ORDER and attach it to your FSG Report ...
    Perform the below steps :
    1) Switch responsibility to General Ledger
    2) Navigate to Reports > Define > Order
    3) Enter a name for the ROW ORDER field
    4) In the Account Display section, enter SEQ as 1, Segment as ACCOUNT, order by as VALUE and DISPLAY as VALUE AND DESCRIPTION and Width as 15 ..
    You can increase/decrease the width based on the how the data is appearing in your report output ...
    5) Save the record ..
    6) Navigate to Reports > Define > Report
    7) Query your report ....
    8) In the optional Components section, click on the Row Order field and select the row order you have configured above from List of values ..
    9) Save the changes made to the report ...
    10) Run the FSG report afresh and see the output ...
    Regards,
    Ivruksha

  • FSG Row / Column Settings

    Can display setting be used to show 1 column for a certain range of rows and another column for a second range of rows in the same report?
    For example, Col 1 Col 2 Col 3
    Actual % 1 % 2
    Row 1 Mdse Revenue $1,000 4% 10%
    Row 2 Svc Revenue $2,000 5% 8%
    Row 3 Total Revenue $3,000 6% 5%
    Row 4 Cost of Goods $ 500 5% 15%
    Row 5 Gross Margin $2,500 4% 16%
    Row 6 Operating Expense $1,000 3% 17%
    Row 7 Operating Income $1,500 2% 18%
    For Rows 1 - 3, display Column 3
    For Rows 4 - 7, display Column 2
    All in the same report.

    Hi,
    You can define a rowset without account assignments or with a wide range, then you assign accounts in the column set definition, you can do it for each column, it works as rowsets do.
    If need help e-mail me [email protected]

  • SQL to read with the DISABLE STORAGE IN ROW set

    I am having problems inserting a clob > 4k. I have changed my default setting to DISABLE STORAGE IN ROW. The problem is, when my clob
    4k, I get a null pointer exception on my read. THE INSERT:
    insert into XML_W_BOOKING (WORKCONVERSATIONID, FREQUENTFLYERNUMBER, XMLSTRING)values(WORKCONVERSATIONID_SEQ.NEXTVAL, pCntr.frequentFlyerNumber, EMPTY_CLOB());
    THE UPDATE:
    PreparedStatement pstmt = this.connection.prepareStatement("update XML_W_BOOKING set XMLSTRING = ? where WORKCONVERSATIONID = ?");
    pstmt.setAsciiStream(1, new StringBufferInputStream(pCntr.xmlString), pCntr.xmlString.length());
    pstmt.setLong(2, pCntr.workConversationId);
    pstmt.executeQuery();
    pstmt.close();
    THE READ:
    myContainer.workConversationId= pRset.getLong(1);
    myContainer.frequentFlyerNumber=pRset.getLong(2);
    java.sql.Clob clob = pRset.getClob(3);
    int c;
    int length = new Long(clob.length()).intValue();
    StringBuffer strBuf = new StringBuffer(length);
    BufferedInputStream bin = new BufferedInputStream(pRset.getAsciiStream(3));
    while((c = bin.read()) != -1){
    strBuf.append((char)c);
    String str = strBuf.toString();
    System.out.println("str: " + str);
    myContainer.xmlString = str;
    Any suggestions? Is there a special sql statement I should be using to read when the "DISABLE STORAGE IN ROW" setting? I am using Oracle 8i and wls 5.1.
    IP: Logged
    null

    Enable/Disable storage in row is used for LOB columns. If enable storage in row is specified and the length of the LOB field is less than 4K then the LOB is stored along with other table data, else it is stored in a seperate segment. If disable storage in row is specified then LOB data is stored always in a seperate segment. When the LOB is stored in a seperate segment the storage parameters are determined by the values specified for CHUNKS and PCTVERSION. One chunk stores only one LOB data even if enough space is aavailable in the chunk. If the size of LOB data is small then enable storage.
    To calculate the space used by the tables use the query below
    For Table Data
    select segment_name, sum(bytes) from user_segments where segment_name in ('TABLE', 'TABLE1', 'TABLE2') group by segment_name;
    For LOB's
    select segment_name, sum(bytes) from user_segments where segment_name in (select segment_name from user_lobs where table_name in('TABLE', 'TABLE1', 'TABLE2'))
    group by segment_name;
    Jayant

  • How to Handle Multiple row sets in BPEL

    Hi,
    I'm going to return list of records from a stored procedure, and try to catch it using BPEL and then those records should be insert to
    another stored procedure to insert those values to a Table.
    (Second Stored Procedure will do the INSERT function)
    Using ref cursor i can get row set. Is it possible to use Ref Cursor as IN parameter to next procedure??
    or else how can i handle this???
    thank you...

    Is your data model right? If you are adding in one and deleting in another it sounds to me more like a process that an entity, in which case you may revisit your data model and simplify it, add in a session bean with the process method to co-ordinate between the two.
    However, if you want to map multiple different tables within a single entity bean it is possible and just part of the mapping. How you actualyl specify it depends on which implementation you are working with.
    Cheers,
    Peter.

  • Can't insert new row in last position in row set

    I am trying to programmatically insert a new row into the last slot of a View Object's default row set.
    I normally can do this:
    Row newRow = vo.createRow();
    // set stuff on the row
    vo.last();
    vo.next();
    vo.insert(newRow);and, voila, the row is in the last position.
    But on this particualr view object, when I do the above, the row is inserted in the first slot.
    There doesn't seem to be anything unusual about the View object. it is a child Vo in the data model, but that shouldn't matter.
    When I debug with vo.getCurrentRowSlot(), even after performing last(); next();, vo.getCurrentRowSlot() returns 0, never 3.
    Has anyone else run into this behavior and if so, any resolution or explanation?
    FYI, I was able to use the following workaround:
    Row lastRow = vo.last();
    if (lastRow != null){
        int indx = vo.getRangeIndexOf(lastRow) + 1;
        vo.insertRowAtRangeIndex(indx, newRow);
    } else {
       vo.insertRow(newRow);
    }   

    would this solve your problem
    http://kohlivikram.blogspot.com/2008/10/add-new-row-in-adf-table-on-button.html

  • How to use open Row set in sql server 2014

    Hello All,
    How to open the row set using sql server 2014 using link server connection.

    Hi  denyy,
    Are you referring to the OPENROWSET function in SQL Server 2014?
    The OPENROWSET method is an alternative to accessing tables in a linked server and is a one-time, ad hoc method of connecting and accessing remote data by using OLE DB. The examples below demonstrate how to use the OPENROWSET function:
    A. Using OPENROWSET with SELECT and the SQL Server Native Client OLE DB Provider
    SELECT a.*
    FROM OPENROWSET('SQLNCLI', 'Server=Seattle1;Trusted_Connection=yes;',
    'SELECT GroupName, Name, DepartmentID
    FROM AdventureWorks2012.HumanResources.Department
    ORDER BY GroupName, Name') AS a;
    B. Using the Microsoft OLE DB Provider for Jet
    SELECT CustomerID, CompanyName
    FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
    'C:\Program Files\Microsoft Office\OFFICE11\SAMPLES\Northwind.mdb';
    'admin';'',Customers);
    GO
    C. Using OPENROWSET to bulk insert file data into a varbinary(max) column
    USE AdventureWorks2012;
    GO
    CREATE TABLE myTable(FileName nvarchar(60),
    FileType nvarchar(60), Document varbinary(max));
    GO
    INSERT INTO myTable(FileName, FileType, Document)
    SELECT 'Text1.txt' AS FileName,
    '.txt' AS FileType,
    * FROM OPENROWSET(BULK N'C:\Text1.txt', SINGLE_BLOB) AS Document;
    GO
    D. Using the OPENROWSET BULK provider with a format file to retrieve rows from a text file
    SELECT a.* FROM OPENROWSET( BULK 'c:\test\values.txt',
    FORMATFILE = 'c:\test\values.fmt') AS a;
    Reference:
    OPENROWSET (Transact-SQL)
    Using the OPENROWSET function in SQL Server
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.

  • FSG Column Sets for Trial Balance

    I am trying to duplicate the FSG Column Set that will give me the same data as the Detail Trial Balance.
    I can get the Opening Balance - Bal-Actual (FY START)as the amount type in the Column Set
    I can get the Ending Balance YTD-Actual
    But how do I get the Period Activity figure?

    Have you tried setting the Period Activity column with the PTD-Actual amount type?

  • Working Set definition location?

    What file contains Working Set definitions in 10.1.3? I have a set of files that I want to define as a Working Set in the System Navigator, but there are enough of them spread out throughout my project that I don't want to have to add them to the Working Set one at a time - I was hoping to define them via a config file or such w/ JDev closed (I have the list of files in a text file). I cannot for the life of me find a file that contains the name of a Working Set that I've created, however - not in my .jws, not in my .jpr, not in my source tree and not anywhere in my JDev installation directory (I'm still using 10.1.3 EA at the moment). This info has to live somewhere...
    Thanks!
    Jim

    What file contains Working Set definitions in 10.1.3? I have a set of files that I want to define as a Working Set in the System Navigator, but there are enough of them spread out throughout my project that I don't want to have to add them to the Working Set one at a time - I was hoping to define them via a config file or such w/ JDev closed (I have the list of files in a text file). I cannot for the life of me find a file that contains the name of a Working Set that I've created, however - not in my .jws, not in my .jpr, not in my source tree and not anywhere in my JDev installation directory (I'm still using 10.1.3 EA at the moment). This info has to live somewhere...
    Thanks!
    Jim

  • Default and secondary row sets not working as expected

    I am trying the following code to understand how the default and secondary row sets work in ADF. However, the implementation doesn't seem straightforward.
    public void testRowSets(){
      CountryVOImpl vo = (CountryVOImpl)findViewObject("Countries");
      vo.setApplyViewCriteriaName("CountryVOSearchByRegionIdVC");
      vo.setbindRegionId(new Integer(4));
      vo.executeQuery();
      RowSetIterator iter1 = vo.getRowSetIterator();
      while (iter1.hasNext()){
      System.out.println("default iterator, for region id 4, has countries="+iter1.next().getAttribute("CountryName")); //prints Zimbabwe,Nigeria,Israel
      RowSet rowSet = vo.createRowSet("secondaryRowSet");
      vo.setbindRegionId(new Integer(4)); 
      vo.setQueryMode(ViewObject.QUERY_MODE_SCAN_VIEW_ROWS);
      rowSet.executeQuery();
      while (rowSet.hasNext()){
      System.out.println("secondary row set, for region id 4, has countries="+rowSet.next().getAttribute("CountryName")); //prints nothing
      rowSet.closeRowSet();      
      RowSetIterator iter = vo.getRowSetIterator();
      System.out.println("default row set iterator row count="+iter.getEstimatedRangePageCount());
      iter.reset();
      while (iter.hasNext()){
      System.out.println("default row set iterator, for region id 4, has countries="+iter.next().getAttribute("CountryName"));
    Now, iter1 prints X, Y, and Z country names (line #9).The secondary row set prints no countries (line #17). After executeQuery() on the secondary row set, the default row set iterator also prints nothing (line #25). Believe the secondary row set has a different query collection only as long as the row filter is different, and in the case above it's the same. But if that's the case then when we perform rowSet.executeQuery in QUERY_MODE_SCAN_VIEW_ROWS, why does it not see the records in the default row set which have already been placed in the cache by iteration over the default row set?
    NOTE: Changed the subject in the hope to get more suggestions/answers

    have you tried resetting the rowset after the first iteration - my guess its pointing to the end after the first iteration. So perhaps try closing the rowsetitertor first
    iter1 .closeRowSetIterator();
    and then
    RowSetIterator iter=vo.createRowSetIterator('secondaryRowSetIterator')

  • No row set iterator in transactionvo1

    if any error occurs in my code
    in my catch block i am doing getdbtransaction.rollback()
    but when i go to ui and try to perform the next transaction ... i am getting error as no row set iterator in transactionvo1
    how can i handle this to perform next transaction.

    User, you need to give more information about your environment like jdev version and use case to get a good answer.
    What I can tell you is that a rollback also rests the state of the current iterator so that you don't have a current row in the UI.
    This will cause the error you see.
    Timo

  • How can I learn about Row Set Navigator

    I would like to learn about Row Set Navigator and all DataWebBeans classes. Where do I find these informations.

    jdeveloepr has online documentation for all of this
    also review the tutorials ... provided there .

  • Fndload command to download concurrent program without value set definition

    Hi All,
    Please let me know if you know fndload command to download concurrent program without value set definition.
    Thanks,
    Viaswas
    Edited by: 873477 on Mar 8, 2012 1:55 AM

    I agree with Sandeep -- The only option is editing the ldt file after the download and before you upload it.
    Thanks,
    Hussein

  • FSG - Row Line Item Location

    Is there a way to change the Column location of the Row Set Line Item description? It defaults to the first column, but I would like each Row's description to be in the middle of the reports, say column 4, instead of column 1
    Thanks

    Maybe you can try XML PUBLISHER.

Maybe you are looking for