Problem in creating report in report painter

Hi,
I am creating a report in Tcode GRR1 and while creating it,i am getting a error i.e. :-
CO Area must be specified -> Add in general data selections or rows/c
Please provide me guidelines how to solve this problem as i am new to the report painter.

well...As per the message did you try to Provide the CO Area..
PS: I am not infront of my system. As per message try to give the required information
PPS: I am now infront of my system, I am able to crate the report with out any issues
Edited by: Vijay Babu Dudla on Jul 24, 2009 4:41 AM

Similar Messages

  • Page size problem while creating character mode report

    Hi All,
    I've designed a report in character based layout design. The report needs to be loaded into NOTEPAD and then EXCEL sheet. I need maximum page width for this report. I kept page size of width 23" in layout design and pulled the fields so that to get maximum room. When I run the report and load it into NOTEPAD, I don't see the page width, meaning that it gives me normal 140 column size which is of course not what want.
    Please can someone provide some assistance in this scnario.
    Thanks - Zahir

    The character mode and bitmapped page sizes are different, and independant of each other.
    For character mode you need to set the width in the following places:
    1) In the appropriate layout section property palette (assuming you're on 6.0 or above).
    2) In the .prt file that you're referencing in desformat to produce the output.
    If you set the width in both these places to the size you want you should be okay.
    Alternatively, you may want to look at the delimited format to generate output for spreadsheets.
    Hope this helps,
    Danny

  • Creating Hirarchal/ Recursive report like the Balance Sheet in Quickbook in rdlc

    Hi All Experts,
    I am creating an Account Software FMS, here I facing a problem to create a Hirarchal report with drill through report in RDLC. the problem which i facing is to create a Trail Balance in the Hirarchal / Recursive form where there are Parent and more child
    accounts are oriented and I want to see it in the Parent/Child for like in Tree view. Kindly help me in this regards you can give me example on the Employees table of Northwind database where managerID and ReportsTo fields link it.
    thanks in Advance.

    Hi Afridi_ALAMDAR,
    According to your description, you want to have a hierarchy structure in your rdlc report. Right?
    In Reporting Services, if you want to have a tree view to navigate to corresponding fields, you can use a document map to achieve your goal. A document map provides a set of navigational links to report items in a rendered report. We just need to set the
    document on group level so that it will create tree nodes within this group. For more information, please see:
    Create a Document Map (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Problems after creating report object

    I am using Crystal Reports Server XI R2 SP4. I created a report object from a simple Crystal report successfully. Even the thumbnail showed the report data even though the report does not save data.
    However when I view the report object in InfoView or schedule it there is no report data even though Crystal Reports Viewer displays data when run against the same DB with the same parameters.
    I get the same results with any report object I create in CMC but I was to able to successfully create and run report objects the first few(5) times after which I have been getting this result.
    Is there any kind of report or job limit?
    I made max records to retrieve unlimited and bumped # of jobs in every server from 5 to 50 and the age of oldest report to retrieve from cache to 0 mins.
    Please help!

    I'm not sure this is a JAVA problem, but if you're getting an ACCESS_VIOLATION exception from the JVM a method that provides more detailed information is to check for exceptions after every JAVA function called from the native code with (*jenv)->ExceptionCheck(jenv) and if true get information with (*jenv)->ExceptionDescribe(jenv) Making mistakes in native code constructing JAVA objects has been my most frequent cause of ACCESS_VIOLATION exceptions. I hope this helps.

  • Creating T-Code for Report in Report Painter

    Hi Experts,
    I need to create a T-Code for a report Z22KST2 in transaction CJE0 under the report type 001.Please suggest.
    Thanks in advance.
    Anand patil

    Hi
    Go to SE93
    enter the TCODE you wants to create for this report painter report
    Select the PARAMETER trasaction radiobutton.
    Enter the description and transaction as START_REPORT
    enter the REPORT TYPE and REPORT in the down
    D_SREPOVARI-REPORTTYPE      = < Report Group>
    D_SREPOVARI-REPORT  =      <report>
    Check this -
    For Report Painter
    http://help.sap.com/saphelp_47x200/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/content.htm
    http://searchsap.techtarget.com/searchSAP/downloads/Teach_yourself_SAP_C20.pdf#search=%22CREATE%20REPORT%20USING%20SQVI%20%2C%20SAP%22
    Re: Interactive ALV
    Reward points if useful
    Regards
    Anji

  • Problem in creating text file from report file

    Hello Everybody...
    I have problem in creating text file.
    I had set System Parameter as below
    DESTYPE : File
    MODE : Character
    DESNAME : gayu.txt
    And ruler setting
    Units : Character Cells
    Character Cell Size : Horiziontal = 7
    Vertiacle =12
    GridSpacing : 1
    no of snap points per grid spacing : 1
    but when i run report it will give error
    "REP_1219 M_2 or R_2 has no size -- length or width zero"
    so is there any solution of that
    or another way to convert report into text file?....

    Hi Folks,
    Please don't go after that Error as its a very deceptive one. Please don't go for altering your design Or changing the size of items in your layout.
    Similar errors I have come across in reports. I think its due to file transfer type. You might have transferred the file in Binary and your File Mode I am seeing it as CHAR.
    This normally happens while making the Report Format as "Text". Either you change that format which I think is possible in your case as your basic requirement is making a report output of CHAR type.
    Please check for this error in Metalink and proceed accordingly. I could fix similar errors when I changed Format type to PDF(from text).
    Regards
    Shibu

  • Problem in Creating .txt report

    Hi All,
    I need to create the report, if the document having fpo, $$$, TK, 000 etc...
    OR,
    create report "No Errors found"
    My script working fine, but the problem is creating the report not as user friendly
    Coding is below:
    myDoc = app.activeDocument;
    FPOArray = new Array
    app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
    app.findChangeTextOptions.wholeWord = true
    app.findTextPreferences.findWhat = "fpo"
    var myFound = myDoc.findText()
    for (f = 0; f < myFound.length; f++) {
        var myFindFPOPage = myFound[f].parentTextFrames[0].parentPage.name
        FPOArray.push(myFindFPOPage)
    $$Array = new Array
    app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.findWhat = "\\$\\$+"
    var myFound = myDoc.findGrep()
    for (s = 0; s < myFound.length; s++) {
        var myFind$$$Page = myFound[s].parentTextFrames[0].parentPage.name
        $$Array.push(myFind$$$Page)
    var myTextFile = File("~/Desktop/abcde.txt")
    myTextFile.open("w")
    if(myFound.length>0)
        myTextFile.write("FPO: " + FPOArray + "\n\n"  + "$$ Page Number: " + $$Array + "\n\n")           //Error this line only please help
    else
        myTextFile.write("No Error")
    Could anyone please help for my request.
    Thanks in advance
    Beginner_X

    u change
    myTextFile.open("e") and than
    if(myFound.length>0)
        myTextFile.write("FPO: " + FPOArray + "\n\n" )           //Error this line only please help
    if(myFound1.length>0)
        myTextFile.write( "$$ Page Number: " + $$Array + "\n\n")           //Error this line only please help
    else
        myTextFile.write("No Error")

  • Can you create report using report painter with Tcodes:FAGLL03,FCHN

    Hi Experts,
    1.I want to create report using report painter by using tcodes FAGLL03,FCHN.Can i create with report painter?
    2.i never used report painter can anyone provide report painter pdf for ecc6.0
    3.can any oneguide me how to develop report in report painter by using this tcodes.
    4.If not possible can i do with report writer?
    Regards,
    naresh.
    Moderator: Don't mix report painter with the TCodes wyou mentioned; there is no link between them. Regarding Report Painter - search SDN. Respect the rules and don't cross-post: you asked the same unclear question in several forums!

    cross posted
    Edited by: nareshvarma on Jul 19, 2010 9:11 AM

  • Report Painter library for Classic GL for creating cost center report

    Hi,
    I am sure everyone knows what my query is.
    I have tried using library GLTO, GLT1, GLT2, CCSS, GLFUNCT but when i am trying to create/execute report using report painter for cost center but no records are selected. I have checked the settings they all are correct as i have run it for another company code, secondly for GL reports using report painter there is no such error.
    Regards,
    Mohammed Ali Khan.

    Hi Christian,
    So for the late reply... I already check the Scenario FIN_PCA in assigned to our Ledger...
    Are there other ways to generate my report on the report painter? ( Profit center as Column, And GL account and cost center on the row)
    Thanks,
    JM

  • Create new report in report painter

    Hi
    Can any body let me know the steps for creating new report in report painter.
    Thanks in advance
    Prasad

    Hi Hari,
    Please find below mentioned and overview on report painter and its usage.
    The Report Painter is similar to the Report Writer, but is simpler to use. Most of the functions in the Report Writer are also available in the Report Painter. The Report Painter is based on the WYSIWYG (What You See Is What You Get) principle.
    Report Painter Structure:
    Characteristics must be defined in your report, either as data selection criteria, report rows, or report columns. To improve processing time, you should specify all characteristics in general data selection that are not needed in the report rows or columns.
    The process flow used for creating reports using report painter can be summarised as following.
    Create set->Select library->Define report->Check report->Assign report to report group->Generate report->Execute report
    Hope i had been of help to you, please reward points.
    Rgds
    Manish

  • How to create report from report painter??

    Hi,
    how to create report from report painter?? from transaction code GRR1

    Select the library that you want report to create.  GRR1
    You select what to list in coulumns and what to lisr in rows. You could select characteristics or key figures.
    You can use variable both in defininig row and coulmn or in general selection.
    You can also use sets as variable or as constant. These sets can be your master data groups or sets in GS02.
    You can use formulas.

  • Problem creating Drill-Down report

    Hi,
    I have problem in creating a drill-down report,got confused how to do it. this is my requirement.
    The main portion that will be first displayed contains a group on match_code and has its own detail section. now when the user selects one of these match_code it should drill down to give more information about this match_code, so the Drill down should also have its own detail section that will be hide and drilldown ok.
    If this the proper way to do it. I will be creating a drill down report for the first time.
    Thanks,
    Reena

    Hello Reena,
    If I understand your situation correctly you have a group on match_code and a details and b section. You want the Group Header and Details a sections to appear on the first "page" or drilldowngrouplevel 0. When the user drills down you want the Details b section to appear.
    You can do that using the drilldowngrouplevel function.
    Set the details b section to suppress when drilldowngrouplevel = 0, this section will only appear after drilldown.
    I am not sure if you still want the details a or group sections to appear after drilldown, if you do then there is no need for conditional suppression. If you don't then use a conditional suppression formula for those sections of drilldowngrouplevel <> 0

  • Problem with creating customized report layout

    Hello,
    I want to create customized report layout. However, it doesn't work. Can somebody help me?
    I have a page 24 in apex.oracle.com(workspace: houbcm, username: apex, password: apex1). Here is the code in my .xslt.
    <?xml version="1.0"?>
    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
    <fo:simple-page-master master-name="content"
    page-width="210mm" page-height="297mm">
    <fo:region-body/>
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="content">
    <fo:flow flow-name="xsl-region-body">
    <fo:table table-layout="fixed" width="100%">
    <fo:table-body>
    <fo:table-row >
    <fo:table-cell> <fo:block text-align='right' > <fo:inline> Product Name: </fo:inline> </fo:block> </fo:table-cell>
    <fo:table-cell> <fo:block text-align='left' > <fo:inline> <xsl:value-of select='.//PRODUCT_NAME' /> </fo:inline> </fo:block> </fo:table-cell>
    </fo:table-row>
    <fo:table-row >
    <fo:table-cell> <fo:block text-align='right' > <fo:inline> Description: </fo:inline> </fo:block> </fo:table-cell>
    <fo:table-cell> <fo:block text-align='left' > <fo:inline> <xsl:value-of select='.//PRODUCT_DESCRIPTION' /> </fo:inline> </fo:block> </fo:table-cell>
    </fo:table-row>
    <fo:table-row >
    <fo:table-cell> <fo:block text-align='right' > <fo:inline> Category: </fo:inline> </fo:block> </fo:table-cell>
    <fo:table-cell> <fo:block text-align='left' > <fo:inline> <xsl:value-of select='.//CATEGORY' /> </fo:inline> </fo:block> </fo:table-cell>
    </fo:table-row>
    <fo:table-row >
    <fo:table-cell> <fo:block text-align='right' > <fo:inline> Availability: </fo:inline> </fo:block> </fo:table-cell>
    <fo:table-cell> <fo:block text-align='left' > <fo:inline> <xsl:value-of select='.//PRODUCT_AVAIL' /> </fo:inline> </fo:block> </fo:table-cell>
    </fo:table-row>
    <fo:table-row>
    <fo:table-cell> <fo:block text-align='right' > <fo:inline> List Price: </fo:inline> </fo:block> </fo:table-cell>
    <fo:table-cell> <fo:block text-align='left' > <fo:inline> <xsl:value-of select='.//LIST_PRICE' /> </fo:inline> </fo:block> </fo:table-cell>
    </fo:table-row>
    </fo:table-body>
    </fo:table>
    </fo:flow>
    </fo:page-sequence>
    </fo:root>
    Thanks,
    Jen

    Hi,
    Thanks for the reply. I have created following report definition.
    SELECT Call_Type.EnterpriseName, Call_Type.Description AS DNIS, Call_Type_Interval.CallTypeID,
    SUM(Call_Type_Interval.ServiceLevelCallsOffered) AS CallsOffered,
    SUM(Call_Type_Interval.CallsAnswered) AS CallsAnswered,
    SUM(Call_Type_Interval.TotalCallsAband) AS TotalCallsAband,
    SUM(Call_Type_Interval.ServiceLevelAband) AS ServiceLevelAband,
    SUM(Call_Type_Interval.ShortCalls) AS ShortCalls,
    SUM(Call_Type_Interval.CallDelayAbandTime) AS CallDelayAbandTime,
    SUM(Call_Type_Interval.AnswerWaitTime) AS AnswerWaitTime,
    SUM(Call_Type_Interval.AnsInterval1) AS AnsInterval1,
    SUM(Call_Type_Interval.AnsInterval2) AS AnsInterval2,
    SUM(Call_Type_Interval.AnsInterval3) AS AnsInterval3,
    SUM(Call_Type_Interval.AnsInterval4) AS AnsInterval4,
    SUM(Call_Type_Interval.AnsInterval5) AS AnsInterval5,
    SUM(Call_Type_Interval.AnsInterval6) AS AnsInterval6,
    SUM(Call_Type_Interval.AnsInterval7) AS AnsInterval7,
    SUM(Call_Type_Interval.AnsInterval8) AS AnsInterval8,
    SUM(Call_Type_Interval.AnsInterval9) AS AnsInterval9,
    SUM(Call_Type_Interval.AnsInterval10) AS AnsInterval10
    FROM        
    Call_Type (nolock),
    Call_Type_Interval (nolock)
    WHERE Call_Type.CallTypeID = Call_Type_Interval.CallTypeID
    AND Call_Type.CallTypeID in (:calltype_list)
    AND Call_Type_Interval.DateTime >= :start_date
    AND Call_Type_Interval.DateTime <= :end_date
    GROUP BY Call_Type.EnterpriseName,
    Call_Type.Description,
    Call_Type_Interval.CallTypeID
    For this definition i wanted to create a customized report which is apparently not possible.

  • No totalization in a report of report painter for row containing a set

    Hi!
    I've created a set XXXX based on the table-field  GLPCT-RACCT. One of the row of the set is a formula. The formula is the sum of the rows of the set / 2  i.e row 005 of the set XXXX is (001002003+004)/2. The set has been added as characteristic value element, as row of a report of report painter. I've take a look to the output of the report but the total of the row based on the set does not take into consideration the formula inside. why?
    i.e
    Report                                  period 1
    row 1                                          100
    row 2                                      10000
    row Z based on set XXXX:          
    001                                               20                                             
    002                                               20
    003                                               20                                              
    004                                               40
    005 (formula)                               50
    total of row Z based on set       100  (instead of 150)
    Could you help me in solving the problem?
    Thanks
    Giovanna

    There may not be any currency attached to the value derived by the formula. That could be the reason why it is not getting summed up. The total would be expecting all the items to be summed up are of same currency,
    I am not sure of how to make the total to add up the formula.
    Alternatively you may check to see if all your row requirements can be fitted in within the set , i.e. including subtotals and totals.

  • Best ways to create rpd or reports if we have data in more fact tables

    I have fact and dimensional data in one or more different tables. Then each logical table source represents one data segment.Please suggest me some methods or ways like fragmentation through which i can use them in creating rpd and report and main problem here is facts too large contains 25 million records.But adding tables in BMM layer effecting performance so can anyone other ways doing it in database side.
    Thanks in advance
    Edited by: user2989722 on Dec 3, 2009 3:09 PM

    hi,
    For the fragmentation you can create on dimension .The procedure is clearly explained in this blog
    http://108obiee.blogspot.com/2009/01/fragmentation-in-obiee.html
    http://www.rittmanmead.com/2007/06/19/obiee-data-modeling-tips-2-fragmentation/
    For the performance point of view you can create a Materialized view (based on columns that your report is using) so that it will hit that particluar view instead of hitting whole table(25million records table) please look into this post
    Re: Materialized views in OBIEE
    thanks,
    saichand.v

  • Viewing Report created in Crystal Report Designer

    <p>Hi,</p><p>I&#39;m new to CR4E and tries to work with existing report. I saw many error while trying this, please excuse me to the long email below that I explain all the errors I saw......</p><p>I have some reports that were created in Crystal Report Designer (CR XI Release 2) connecting to the Oracle Database using "Oracle Server" type connection. How can I access it from CR4E? I have the following problem (in the order I see them)</p><p>1) In the Eclipse&#39;s JSP page, I specified the full path to the report, but I get a report not found error. Must the report locate within the project? Is there any way we can open a report outside of the project?</p><p>2) I copied the report to the project, </p><p>    a) followed jrc_print_report example to print the report, get "JNDI name not found" error. </p><p>    b) then generate a viewer page, but I get the Driver "crdb_oracle.dll" is not supported error.</p><p>3) I setup the new JNDI followed the jrc_changedatasource.jsp example to change the datasource, but I still get the "JNDI name not found" error.</p><p>4) I imported the report intoEclipse and changed the connection. Then I can create a jsp page to print it to a printer (I still can&#39;t view it, but my goal is to print, so that&#39;s ok). However, </p><p>    a) the original report has a "Command" object from the Oracle database to control where to select the report&#39;s data, when I remap, this object disappear and I cannot see how to recreate it. Any suggestion?</p><p>    b) also, the report is very complex with many subreports and it will be nightmare to go in and change all of the datasource, also a maintenance nightmare to maintain two copies. Any better suggestions?</p><p>Thank you very much! Your help is very appreciated.</p><p>Celia</p>

    Hi Celia
    1. Yes the Java Reporting Component (JRC) which is the runtime component of the Crystal Reports for Eclipse can open reports outside the project.  Its often better to have the reports inside the project for deployment purposes but you are welcome to put the report where ever you need it.Â
    Note: To use absolute paths, ensure that the CRConfig.xml file does not contain a reportlocation tag.
    2. The JRC can't report off of Oracle directly, you would need to use a JDBC driver to connect your reports to Oracle. The crdb_oracle.dll will never connect because its not Java.Â
    3. When the JRC finds that the report is not using a supported database driver it will do a lookup to find the name of the report datasource. When it finds the datasource name it will then do a JNDI lookup for a JDBC datasource with the same name. If your Application server doesn't have a datasource with that name it will through the error you were seeing.Â
    4. I'm not sure about losing the Command object when changing the datasource but this is probably happening because the Command is linked to the database driver.
    5. What you could try doing is creating a JDBC Datasource on your application server where this app will run with a JNDI name that matches your report datasource name. If your reports datasource name is "MyOracleDatasource" then I believe the JNDI name for new JDBC Datasource would have to be "jdbc/MyOracleDatasource".
    You could give this a try.
    Rob Horne
    http://diamond.businessobjects.com/blog/10

Maybe you are looking for

  • How to influence the rowheight in excel output

    Hello all, I am using the BI publisher desktop so I use RTF to build my template. the desired output is excel. I have in other templates some tables where cells automatically adjust to the size of the cell. But didn't know how I did this (I thought t

  • SG300: How to set up routing between VLANs?

    I have recently purchased a Cisco SG300-10.  I need it to perform routing between two VLANs on the switch. Seems like this should be quick and easy to do from the built in GUI. When I configure it according to the documentation, it does not ropute be

  • Imac incredibly slow

    hi, I have an older iMac Intel and it's been running so slow it's unsuable. After running permissions repair and hardware checks and nothing showing up as the problem. I finally just decided to completely wipe and reinstall with original Install disc

  • Problem Running App with Scripting Bridge on MAC OS X TIger

    Hi, I have an application which link with Scripting Bridge Frame work, use XCODE 3.0 and SDK 10.5. I use Scripting Bridge, to control some functionality of ITune from Objective-C. This Application run fine on Leopard and behave as expected. When I Ru

  • Some format help

    Hi, Thiis is my query.While returning data if coulmn value is single digit i need display with two decimals. For example o/p is 5 need to 5.00.Pls see the query and output. my database is 10.1.0.2.0 current o/p Mean Score     Standard Deviation 4.99