New g.l reports

Hi,
New GL reporting (currently using classic GL reports) what could be the possibility of having NEW GL features with single company having 2 different grouping (for different type of reporting).
Can SAP provide feature of having multiple grouping in single company.
Regards,
Bhaskar.K

yes it is available.

Similar Messages

  • Can we add a new column in report which is not in table.

    Hi All,
    Can we create a new column in report which is not in table.
    I have two columns in my table completion_date, manufacture_date. If the difference between the completion_date and manufacture_date is 0, -1, 1 then the new column of the report will say on time against each record or else will display late. Any suggestion how to proceed on this
    Regards
    Edited by: User_Apex on May 16, 2011 5:54 AM

    Standard report then, NOT an interactive report (which if you were using, you could build a computation and report on that)..
    Then the adding a column in the query would be your best best...
    Thank you,
    Tony Miller
    Webster, TX
    There are two kinds of pedestrians -- the quick and the dead.
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Problem with adding a new InfoProvider in Report Designer

    Hey experts,
    I have a problem to add a new Infoprovider in Report Designer. I get the following message:
    Query consists variables. Please use a query view (variables are filled).
    Can anyone tell me what the problem is.
    Thanks in advance.
    Best Regards
    Ali

    Hi Ali,
    Note 931838 describes this issue.
    Best regards,
    Janine

  • How to create new Custom XML Report without using Form Builder

    Hi,
    What are the steps to create new Custom XML Report without using Report Builder ?
    Thanks and Regards,
    Abhi

    Hi,
    Steps we now follow
    1)Create Data Model in Reports Builder
    2)Create xml
    3)Insert xml in Publisher to build Fomat
    4)FTp rdf
    5)Create Data Definition and Template
    6)Create executable and Concurrent Program
    Is there any way we can build reports without use of Report Builder ? By writing PL SQL Package for Before Report and After Report etc ...
    Thanks and Regards,
    Abhijit Rode

  • Cannot save Crystal report layout or view new layout of report

    I am trying to make a change to a system crystal report (cust. recievables detailed aging). I had to make the date feild a little wider, so I edited the "system layout" that came with SAP (in my test DB of course), and I go to add-ins>sap business one>save. I get the following error "current user has no permissions for this operation". I am logged in as a superuser and full perm.
    If I "save-as" and save it to a layout in sap....when I go to open the aging with my newly created layout it freezes and asks for DB logon info to connect to my server from crystal. I do not normally have to do this when I preview my reports in the out of the box layouts. WHat am I doing wrong? I am new to crystal.

    The system will not allow me to export the system crystal report....it is grayed out, and it IS a crystal report. HOwever I can open it in crystal, then save it to my desktop, then from INSIDE of SAP in the report and layout manager I import the crystal report I made the changes to from my desktop into SAP and it saves and imports no problems. However when I go to view the report (and this is only the ones I import), it prompts me with the db login for our server to connect, and it is only with that report, once I enter sa credentials it is fine and shows up from there on in, but not if I log out of SAP and back in...then I have to put in my credentials again. Is this something having to do with the report when I make changes to it? I cant have users entering login info each time they run the new aging details report. Please advise what I may be doing wrong when I make changes to a crystal report. It was a very minor change....just moved a feild width.

  • New to oracle report builder

    Dear all;
    Please pardon me. I am new to oracle report builder and I am trying to accomplish the following. First and foremost please find my pl/sql queries below. Kindly note, all the queries have been tested and I just need to be able to input those queries into the report builder. Thank you.
    create or replace package test1 is
    type r_cursor is ref cursor;
    function report(company_name in varchar2) return r_cursor;
    end test1;
    create or replace package body test1 is
    function report(company_name in varchar2) return r_cursor as
    my_r_cursor r_cursor;
    begin
    if(company_name = 'ALL COMPANIES') THEN
    open my_r_cursor for
    select t.t_id, t.t_description from t1 t;
    return my_r_cursor;
    elsif(company_name != 'ALL COMPANIES') THEN
    open my_r_cursor for
    select t.t_id, t.t_description from t1 t
    where t.t_id = company_name;
    return my_r_cursor;
    end if;
    end;
    end test1;
    create table t1
    t_id varchar2(200) not null,
    t_description varchar2(250),
    primary key(t_id)
    insert into t1
      (t_id, t_description)
    values
      ('CITI', 'PROFIT: 2.2Billion');
    insert into t1
      (t_id, t_description)
    values
      ('GE', 'PROFIT: 1Billion');
    insert into t1
      (t_id, t_description)
    values
      ('JPMORGAN','PROFIT: 0');Now, I am trying to create a simple report in oracle report builder. The interface for generating for this report is basically, there is a dropdownlist where by the user picks a company name from the dropdownlist and clicks on the go button, this should then generate a report with the above query shown in the package. How can this be achieved? All help will greatly be appreciated.

    Hi,
    first of all you need strong typed ref cursor, oracle reports need to detect witch are the columns returned by your cursor.
    so first you create your package
    create or replace package test1
    as
    TYPE t_record IS RECORD ( company_number PLS_INTEGER--TABLE_NAME.COLUMN_NAME%TYPE
    , company_desc VARCHAR2(150)--TABLE_NAME.COLUMN_NAME%TYPE
    TYPE T_REF_CURSOR IS REF CURSOR RETURN t_record;
    procedure report(company_name in varchar2 ,cur_out OUT t_ref_cursor) ;
    end test1;
    show errors
    create or replace package body test1
    is
    procedure report(company_name in varchar2 ,cur_out OUT t_ref_cursor)
    is
    my_r_cursor T_REF_CURSOR;
    begin
    if(company_name = '1')
    THEN
    open my_r_cursor for
    select 1 as t_id, 'description' ast_description from dual
    else
    open my_r_cursor for
    select 2 as t_id, 'description2' as t_description from dual
    end if;
    end;
    end test1;
    show errors
    then, in your report you create a ref cursor query :
    function QR_1RefCurDS
    return test1.t_ref_cursor
    is
    C_return test1.t_ref_cursor;
    begin
         test1.report(1,C_return);
    RETURN(C_return) ;
    end;
    hope this helps you !
    E

  • Creation of new conditions in reports

    hi,
    plz tell me the steps in creating new conditions in reports.what is the difference b/n conditions and new conditions?
    thanks ,
    jack

    Hi Jack,
    You can formulate conditions in the query designer to make data analysis more efficient. In the results area of the query, the data is filtered according to the conditions so that only the part of the results area that you are interested in is displayed.
    Procedure
    Choose New Condition. (You can find this menu entry in the Query Designer toolbar under This graphic is explained in the accompanying text to the right of This graphic is explained in the accompanying text Condition). The Define Condition dialog box appears.
    Specify a name for the condition in the Description field.
    Note:If you only want to define the condition and not execute it actively in the query, remove the check from the active, which was set by default.
    You now have the following options:
    If the condition lines below are to be evaluated independent of one another for all of the characteristics in the drilldown and you want to use the same condition for multiple characteristics of the query, select Evaluate Conditions Below for All Characteristics in the Drilldown Independently.
    You can choose from the following operators for threshold conditions:
       Is equal to
    -         Is not equal to
    -         Is less than
    -         Is greater than
    -         Is less than or equal to
    -         Is greater than or equal to
    -         Is between (is in the interval)
    -         Is not between (is not in the interval)
    These operators demand a floating point number as a value. For the operators is in interval and is not in interval, you must enter a value area, that is, a lower and an upper threshold value.
    You can choose from the following operators for ranked list functions:
    ¡        Top N
    ¡        Bottom N
    ¡        Top percent
    ¡        Bottom percent
    ¡        Top sum
    ¡        Bottom sum
    You can find additional information about using operators for range lists under Conditions.
    http://help.sap.com/saphelp_erp2004/helpdata/en/43/b57138c1afbd20e10000009b38f889/frameset.htm
    Regards
    Hari

  • How to add new fields in report painter without library

    Hi,.
    I have to add new fields in report painter(std one) which is not in any library and so I am not able to add the fields in characteristics. Though I have added zfields in CCR1S but I am not able to add these fileds in characteristics in report painter(say - CJe3 t-code)
    How to procedd for this.
    Thanks,
    MOhan

    hi,
    first i copied the report 12KST1G in my Y12KST1G with form. In CJE2 when i Click this report then in the whatever fields coming in the characteristics we can put it in 'variables' tab and these will be the fields which is displayed on the selecton screen. So after doing the wbove changes in the exit , I am not able to get the fields in characteristics vale so that I can put it in variable. or do we have to do some chnages in the screen for this z report which is like std. one.
    FYI..The display of the fields was done in z-report with library but this is like a report without library and we did some chnages in the exit.
    Pls Suggest

  • How to add new column in report painter

    Hi Experts,
    I want to add new column in report painter which as to calculate the previous column . value in the new column should be the precentage of previous column existing on left side...

    HI  Pradeep,
    Goto the transaction code (Change Report) GR32.
    Give you library name and report name
    And click on the column (application tool bar or F7) button then place the curser on the screen where you want column (please note you have to keep curser on the header section u2013Red column text) right click and insert element. Then you select formula as selection element  and enter. You will get the enter formula box. Then you can type your formula and continue. This will add new column to the report.
    How to enter formula: you can see the formula components in that id and description.
    Id is columns that are present and description indicates explanation of that column.
    Enter formula according your requirement.
    Examples:
    Enter formula screen:
    ID :    des
    X001  amount
    X002  pt000
    X003  test
    1. Enter formula as: ( X001 u2013 X002)
    The above formula is for fist column u2013 second column.
    2. ( ( X001 u2013 X002) / X003) * 100
    First column u2013 second column and devide by third column after that multiple with 100.
    Hope this will help you
    Regards
    Manohar

  • At New in OOABAP Report

    Hi,
    Could anyone post solution for the given below issue.
    I have to handle control break command 'AT NEW' in ALV Reports using Global Classes(OOABAP), If possible with a small sample code which is more relative.

    Read first this documentation [ALV Grid Control (BC-SRV-ALE)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf] and then elaborate a little more on your actual requirement.
    Also perform some [search at sdn|https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&query=%22atNEW%22OO+ALV&adv=false&sortby=cm_rnd_rankvalue#] and please don't post too many threads.
    Regards

  • Problem in transporting new version of report

    Hi,
    i am trying to transport a report which i had modified and there is a problem that when i generate the request to transport from QLTY to PRD Server the new version of report is not coming i.e. i am trying to transport the includes of the program .but it is not transporting the new version .
    Plzz provide me guidelines how to solve this problem.

    Hi
    The includes must be added to the same request which is having MAIN of the report.
    If you dont make any changes to any of the includes or Main, then the objects in the requests will be released not all the objects.
    If you wish to transport all the Includes  and MAIN program, then  make some changes in each program
    Regards
    Shiva

  • How to add new row in report

    Hi,
    I need to add a new record through report, I have a Add new button clicking on which report should add and editable row with textboxes to add new column values.
    Please help. Thanks.

    Hello User.
    Please change your name from the default #'s to your name, or a nickname etc.
    It makes things easier for everyone to communicate.
    Can you please provide some more details of your problem?
    Can you rewrite your question. I don't understand what your problem is...
    Which version of Apex are you using?
    Have you read and looked at the online instruction manuals?
    Here's a link.
    http://www.oracle.com/technology/products/database/application_express/index.html
    http://download-west.oracle.com/docs/cd/B31036_01/doc/nav/portal_booklist.htm

  • New set for Report Writer

    Hello,
    I am new to the Report Writer.  My understanding is that Report Writer makes use of pre-defined sets of financial objects.  My user wants to create new report group in Report Writer and add some new data which are currently in Z-table. Is this possible? Do we create a new set based on Z-table and then incorporate it in the new report?
    Please advise,
    Thanks
    Galina

    Hi Galina,
    No were SAP released document Z tables is support for report writer.
    moreever SAP recomonded to create reports by using report writer / painter for specific Tables only not for all standared tables.
    as i know not possible to use Z tables for report writer.
    still your business want A table data report, you can able to develop through ABAPer help.
    Refer: http://www.virtuosollc.com/PDF/Get_Reporter.pdf
    Regards,
    Viswa

  • Insert new Column in Reporting Cockpit (Portfolio Management)

    Dear colleagues;
    Any of you could change and insert a new column in Reporting Cockpit for BCV consult?
    I need to insert a new column with a formula (operation with more than two other column).
    How yo can activate this BCV Consult?
    Best regards.
    Mariano

    Dear Guru's;
    I have the solution.
    I solve this problem with the BRF Plus application.
    Watch this site --> Business Rule Framework plus [original link is broken]
    And go to the BCP Admin link in SAP PPM in Business Context Viewer -> Configuration center -> BCV Consult.
    Best regards.

  • New bank reconciliation report in 8.8.1

    Hi,
    I'm trying to find details about the new bank reconciliation report in 8.8.1 ( a screenshot or detailed description of contents).
    Banking - Banking reports - Bank Statement Information. I believe it is a crystal report.
    I can't find any detailed information on the 8.8.1 landing page.
    Can someone who has a 8.8.1 install send me a screenshot or detailed description?
    Thanks

    Hello Maeve Cahillane ,
    If you got it is good otherwise i have maual for configuration and execution.
    Thanks
    Manvendra
    Edited by: Manvendra Singh Niranjan on Apr 30, 2011 12:35 PM

  • HT4528 On the TV news was a report about Apple iPhones and iPads that they were unsecure. What does applet recommend

    On the TV news was a report about Apple iPhones and iPads  were unsecure.  Has apple adressed this? What does apple recommend?
    to fix this problem.
    I get email from Contacts in my address book. The email is not really from them.  Is this the issue at hand?

    Tee Man wrote:
    On the TV news was a report about Apple iPhones and iPads  were unsecure.  Has apple adressed this? What does apple recommend?
    to fix this problem.
    The latest version of iOS (7.0.6) fixes the problem. Update your phone if you're not already running 7.0.6.
    I get email from Contacts in my address book. The email is not really from them.  Is this the issue at hand?
    No. That has nothing to do with it. That's called "spam".

Maybe you are looking for

  • Lightroom 5 Beta – Upright | What's New in Lightroom 5 Beta | Adobe TV

    Discover how to automatically fix common problems such as tilted horizons as well as converging verticals in buildings using Lightroom's new Upright controls for perspective correction. http://adobe.ly/Yrv9Of

  • Dual screen over HDMI

    I'm running arch on my HP mini 311. It has nvidia ion graphics and I'm using the nvidia driver package. I would like to set it up to use dual screen over the hdmi port. I am having trouble getting my xorg.conf setup. I tried configuration that I thou

  • Report painter Multiple selection criteria

    Hi all, i am facing problem that how to provide multiple selection 'exculde' options in report painters.can anyone help me in this? thank you, Anil.

  • Firefox randomly crashes every 5 to 10 minutes (mswsock.ddl)

    As the title says, Firefox has been crashing every few minutes for the last couple days. It doesn't seem to matter how many tabs I have open or what websites I'm on either. I've tried updating, running in Safe Mode, and re-installing with no effect.

  • Password for pc synch

    i can't synch my blackberry to my pc because i need a password, but i haven't set one and trying to contact blackberry to sort it out is impossible. any ideas?