Format in BEx report???

Hi all,
I have the following <b>KFs in my report-sale price, sale qty, and sale value.</b> Now <b>there is 'overall result' column
next to each KF.</b> I would like to <b>elimate the column-overover result next to column-sale price</b>  but I cannot find a way. My client doesn't want to see the overall result for sale price. Does someone have a solution for it? Thanks.
J.

John
I think u have used characteristic in ur report directly (u can also use structure). Now simply u have to go in query designer - open this query- go to characteristics - right click over it - edit- u will find suppress result rows in left side - make the setting as 'suppress result rows always' - save it - run the query - u will see the change which u are looking for.
Effect of this will is -> the overall sum for this characteristic will not be calculated. So for whichever characteristics for which u dont want sum, u can do the setting as suggested in earlier paragraph.
Hope this helps, come back if u need further help on this issue.
Kindly assign the points if it helps.
Message was edited by: sunraj

Similar Messages

  • BW Macros for Advanced Formatting of BEX Reports

    Hi BW Gurus,
    Would like to bring to ur attention for a small solution which i have proposed for SAP Tech Ed. As a BW consultant, you would have come across a situation where you had to decide a reporting tool that was flexible, reliable, user friendly, less expensive and that can be used with less training but still have all the features of Excel.
    Topic : BW Macros for Advanced Formatting of BEX Reports
    Abstract : The workshop will help you to provide advanced formatting with Bex Reports. You will also learn how to add and retain Formats in Bex reports with BW Macros. Advanced formatting includes retaining of formats with excel shawdow boxes, automatic print settings, comments, hiding rows or columns, adding calculations, changing color, maintaining report titles. etc.  The solution will help the business users/ power users to maintain different formats of a report without going for any 3rd party tools like Crystal or Business objects. As most of the business users are familiar with Excel, it would be easy for them to maintain or change the reports rather depending on IT for each change.
    For additional details please have a look at this
    http://www.netsaptech.com/sdn/BWMacrosforFormatting.pdf
    If you feel that this presentation is going to help you dont forget to vote the presentation at sdn.sap.com for SAPTech Ed 2006 - Las Vegas.
    For details on how to vote click the below link.
    http://www.netsaptech.com/sdn/sdn.htm
    Bio of the Author.
    http://www.netsaptech.com/resume/MMDinesh_Org.doc
    Regards,
    Dinesh Mukundu

    HI ,
        Can you please send me the link where  I can see the material  for formatting of BEX reports...
    I tried opening the link which u had sent i your post but it is not opening....
    thanks,
    Nip

  • I Need to change Date Format in BEx report

    Hi Experts,
    i Need display with required values with following symbols in BEx report # and Date format change as per client requirement. Without any VB Code.
    Let me know solution for this.
    By
    ANR

    My actual requirement,
    by default date format display in BEx Reports MM/DD/YYYY fomat, but i want change DD/MM/YYYY format without using any VB macro and also instead of displaying "#"  i need display "0" (Zero).
    let me know the solution.
    by
    ANR
    Anybody ....
    Message was edited by: ANR

  • Change date format in BEx report

    There is a date field in report which is character type.
    ZCOMDAT - compensation date (CHAR 8)
    The output of this file in report is YYYYMMDD (20110422) format which is char
    This should be converted to 22-APR-2011 in BEx report.
    This object is used in many reports but only in this report it should be converted.
    How can this be achieved?

    Hi akshara,
    Apart from the above mentioned approaches i have one strange solution . You might want to consider this .
    You said you have an infoobject ZCOMDAT of type char(8) .
    Proceed like this :
    1) In the infoobject maintain medium text for this . Insert this characteristic as an infoprovider .
    2) Now since this infoobject will have the dates in the master data and hence in /BIC/PZCOMDAT table .
    Create a generic datasource on this table : /BIC/PZCOMDAT .
    Now create a transformation between this generic datasource & the text master data of ZCOMDAT.
    map date and objvers to the text in the transformation .
    And write the following routine at the field level :
    If SOURCE_FIELDS-OBJVERS = 'A'.
    year = SOURCE_FIELDS-/BIC/PZCOMDAT+0(4).
    mon = SOURCE_FIELDS-/BIC/PZCOMDAT+4(2).
    dd = SOURCE_FIELDS-/BIC/PZCOMDAT+6(2).
    if mon = '01'.
      mth = 'JAN'.
    ELSEIF mon = '02'.
      mth = 'FEB'.
    ELSEIF mon = '03'.
      mth = 'MAR'.
    ELSEIF mon = '04'.
      mth = 'APR'.
      ELSEIF mon = '05'.
      mth = 'MAY'.
      ELSEIF mon = '06'.
      mth = 'JUN'.
      ELSEIF mon = '07'.
      mth = 'JUL'.
      ELSEIF mon = '08'.
      mth = 'AUG'.
      ELSEIF mon = '09'.
      mth = 'SEP'.
      ELSEIF mon = '10'.
      mth = 'OCT'.
      ELSEIF mon = '11'.
      mth = 'NOV'.
      ELSEIF mon = '12'.
      mth = 'DEC'.
      ENDIF.
    CONCATENATE DD '-' MTH '-' YEAR INTO RESULT.
    CLEAR:DD,MTH,YEAR.
    endif.
    After this load the the data . Now your text of this object will be having the date required in your format.
    3) In the query level display text for this infoobject .The date will appear in the format as you desired .
    You have to include the above flow in a process chain .
    Using the above method will not effect your query performance also as the calculation are happening during loading .
    Hope the above reply was helpful.
    Kind Regards,
    Ashutosh Singh
    Edited by: Ashutosh Singh on May 21, 2011 9:43 AM

  • Date Format for BEx report

    Hi Gurus,
    I have a report which will return the Posting Date and Document date in the mm/dd/yyyy format. I need this to be displayed in dd/mm/yyyy format. I need this to be done in the BEx level since this report will be automatically generated and emailed to user.
    I promise will assign point for your kind answers.
    Thank you

    Hi Saravanan,
    You can change Date format in your system.
    Start->Settings->Control panal->Regional & language options-> Regional options->
    customize->Date
    Here change Date format from mm/dd/yyyy to dd/mm/yyyy
    Once u did it logoff from Bex and login again.

  • Unit of the Quantity field is displaying in internal format in Bex report

    Hi Experts,
    I have a BEx Query, in which i have quantity keyfigure added(Examble - Sales Quantity).
    When i run the report for a selection the report displayes the unit for the quantity field in internal format.
    Examble - instead of showing 10 CS (case), the report is shwing in 10 CV (internal format of unit CS is CV).
    Also when i check the cube content, it has the unit updated into the cube as CS for that keyfigure.
    Can any one let us know, how to dispaly the report output in external format.
    Regards.
    Muruganand.K

    Hi Gopi,
         The property in question is "calculated". This is a property of a context value attribute. So select the value attribute in the context to which your field is bound and view the properties. Set "calculated=true". It will generate the accessors.
         In the setter method, add the following piece of code:
    public void set<your attribute name>(IPrivate<your component>View.IContextElement element, java.lang.String value)
      DecimalFormat df = new DecimalFormat("#.00");
      value = df.format(value).toString();
    Regards,
    Satyajit
    Message was edited by: Satyajit Chakraborty
    Message was edited by: Satyajit Chakraborty

  • Date format in Bex report

    Hi All
    In Cube we have the date format like "1.1.2007".
    But i have to display this date like "1-jan-2007".
    is it possible ?
    if posible please suggest me how to do this.
    Thanks
    Krishna

    Hi,
    I don't know if it is possible but you can try modifiying the infoobject text descriptions. You can create a routine to create the descriptions and show the data as a text in the bex.
    Regards

  • How to get year format result on date format in Bex

    Hi,
    I have requirement to display only year and month in seperate rows as a result in Bex.
    I have created on date field like MM/DD/YYYY and i have to display in two seperate rows as MM/YYYY and YYYY.
    Could anyone please suggest me how i can display these format in Bex.
    thanks in advance.

    Hi Prashant
    Regional settings of Windows are used to dispaly Date format in Bex reports.
    you neesd to change the settings in Regional settings:
    Control Panel-> Regional settings
    this will change to the desired Date format.
    Regards
    Vivek Tripathi

  • Date format in BEx

    dear all,
    i have a rather simple but puzzling question on my mind regarding date format in BEx reporting.
    here's the problem... in SU01 the date format for my users are MM/DD/YYYY.
    So for example, a variable in my BEx report, will only accept this value "03/2007" (month/year)
    question is,
    what settings can i make to allow different date formats for both 03/2007 and as well as 03.2007. Note the slash (/) and decimal (.)

    Hi SCHT,
    In SU3 make the properties for date as MM.DD.YYYY and then log-off and retry.
    Bye
    Dinesh

  • Publishing BEx Reports as PDF or Excel Format into a Folder

    Hi,
         Current Environment: BW 3.5;  Portal:None
        We are currently broadcasting BEx Reports (BW 3.5).
    a) Is there a way in which we can publish these reports into a Network directory or a folder of an application server either in the Excel format or PDF Format?
    Solutions looked at:
    ---RSRT allows us to publish in .txt file. There is some amount of work involved in getting it converted into a PDF Format. 
    --Looked at the solution for the development of wrapper class for Adobe Document services.
        Are there any other solutions? Any ideas would be appreciated.
    Thanking in advance.

    Hi,
    Here we have a scenario where we are using BO(Business Objects) reports.
    All the roports sent to Users and are saved at the local directories.
    At the back end BO reports use the BEx query output.
    All the reports are scheduled and are fetching data from BW system after the data load completes.
    Hope this helps.
    Regards,
    Tulasi

  • Bex Report front end formatting takes more time

    Hi,
    We are using a Bex report (BW3.5) which containts more than 80 columns with lot of RKF & CKF.
    The report takes 20 to 30 mins to execute and taking more than 45mins for formatting.
    Is there any method to bring down the formatting time.
    Pls note that modelling of the report cannot be changed as it is the requirement of the users.
    Guru.

    45 min for formatting ?
    What kind of formatting ?
    Formatting at workbook level ?

  • BEX - REPORTING FORMAT - REG

    Hai guys,
    In my bex reporting i am having the master data ( EMPNO,ENAME,ESAL) . I need to print the report in the label format.
    for example :
    1001
    GIRISH
    Rs.10000
    1002
    harish
    Rs.404004
    1003
    Ramesh
    Rs.293029
    But when i tryed to display report i am getting the following way
    1001              1002             1003
    GIRISH           harish           ramesh
    Rs.10000        Rs.404004    Rs.293029
    like this, kindly suggest me to print in the output in the label format.
    i will assign points if my query solved.
    Thanks in advance.
    Giri

    Venkata,
    It is very easy to create such report.
    1. Open the BEx Query Designer
    2. IF you are using 7.0 you will see tabs with Filter and Rows/Colum
    3. Goto Rows/ Column
    4.You must be using KEy Figures for Years of Exp, Years of  Service
    drag those in the rows
    5. SAve the query and execute it using the BEx Analyzer. Open Query.
    Ask some ones help for the Name spacing standards you follow in your organization
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30db8c61-25d3-2b10-2998-a5937f7b783d
    Hope this helps.

  • BEx Reporting Format Issue

    Hi,
    I need to create a HR-BW BEx report in the following format.
    For each employee number, i need to display following 3 rows of information:
    For example, for employee number: Emp1, following 3 rowd should be present.
    01 Year Of Experience                                            
    02 Years of service                                                
    03 Years in Entitlement for annual holidays              
    I am having required data is available in the InfoProvider from the source system. Can you please help me, how can i create the BEx report in the above specified format?
    Thanks!
    Best regards,
    Venkata.

    Venkata,
    It is very easy to create such report.
    1. Open the BEx Query Designer
    2. IF you are using 7.0 you will see tabs with Filter and Rows/Colum
    3. Goto Rows/ Column
    4.You must be using KEy Figures for Years of Exp, Years of  Service
    drag those in the rows
    5. SAve the query and execute it using the BEx Analyzer. Open Query.
    Ask some ones help for the Name spacing standards you follow in your organization
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30db8c61-25d3-2b10-2998-a5937f7b783d
    Hope this helps.

  • Formatting BEx report through Macros

    Hi Experts,
    We have a BEx report in BW 3.5 version. We have tried all sorts of formating at BEx level but are not able match the requirement. However we are able to match the requirement through Macros.
    I wanted to know whether we can incorporate the Macros code permanently so that whenever we run the report, we get the formatted output through the Macros code. The functionality should be able to handle data changes in the report too.
    Please suggest.
    Regards and Thanks,
    Vivek Das Gupta

    Hi,
    Crystal Reports has a hierarchical reporting functionality.
    see my blog on this :
    /people/ingo.hilgefort/blog/2008/02/07/businessobjects-and-sap-part-i
    /people/ingo.hilgefort/blog/2008/02/19/businessobjects-and-sap-part-2
    /people/ingo.hilgefort/blog/2008/02/27/businessobjects-and-sap-part-3
    /people/ingo.hilgefort/blog/2008/03/23/businessobjects-and-sap-part-4
    /people/ingo.hilgefort/blog/2008/03/24/businessobjects-and-sap-part-5
    the text variables would not come clean to Crystal Reports and you would have to create the column headings in Crystal Reports - which can be done very easily.
    hope this helps
    Ingo Hilgefort

  • Bex Report Designer is not previewing changes in QA

    Hi All,
    Please help... i am getting an unusual problem with bex report designer. I have created a bex report using report designer. This was then transported in to QA. In QA i opened my created report using report designer and clicked the print version button to preview the report in PDF format. This all worked correclty, however i noticed a spelling mistake in one of the custom text fields i am using.
    So i put the report in a transport in dev, made the changes in dev and previewed in dev. Everything is ok here and i can see the change i made.
    After this i transported the report to QA and when i open the report in report designer to preview the data i can see in design mode that the custom text field does HAVE the change i made so it is correct. The problem i am getting is though when i preview to see in PDF format the image i get is of the old preview with the spelling mistake.
    SInce i have made more changes and i can see the changes in DEV and in QA in design mode but when i preview it shows me the old image from the 1st preview.
    Please can anyone shed any light into this issue.
    Kind regards
    Forhad

    Refreshed the JAVA server resolved issue

Maybe you are looking for

  • Error 504 DNS look up failed while calling web services using XML

    Hi, I am trying to call web service from Oracle using XML. Everything seems to be in place but im getting an error "The webserver for <My End URL> reported that an error occurred while trying to access the website. Please click here to return to the

  • Oracle Service Bus, calling ejb on ormi protocol

    Hi. I'm trying to call an EJB on a Oracle Application server on the ormi protocol, but when i try to call it, I get this error: <con:fault xmlns:con="http://www.bea.com/wli/sb/context"> <con:errorCode>BEA-380000</con:errorCode> <con:reason> General r

  • Wi fi not working

    i can t turn on my wifi !!!! i already did al steps that apple recommend. What is wrong with my iphone 6 ???

  • System preferences crashes with speech

    Little background, I've been trying to test out some software (SousChef) but the app quits before it loads (bounces then disappears). The SousChef crew checked my logs and says my laptop is having trouble loading the speech subsystem. I've been searc

  • If I upgrade to LION will idvd be deleted?

    I need to update a MacBookPro from OS 10.6.4 to Lion.  I really don't want to loose iDVD.  Will that application remain after the upgrade?