How  to add a new option for group by in a excel report

Hi,
there is a enhancement in a excel report
I need to add a new option for group by
help me
Regards,
Raghu

k

Similar Messages

  • How to add a new tab for the project?

    Dear All Experts,
        Could you tell me how to add a new tab for the project?
        Pls refer to the screenshot as below:
    Thanks!
    Xinling Zhang

    Hi,
        The new tab in cj20n , and the new tab can only be displayed in the highed level.Pls refer to below
        And in cj02, there is no this tab also in the wbs detailed screen,
    Thanks!
    Xinling

  • Hi All ,How to add a new  field for MEDRUCK if we havea ZMEDRUCK

    Hi All ,
            How to add a new  field for MEDRUCK if we have a ZMEDRUCK
    Req: If I want to add a new field for the following text editor line :
    IN MAIN WINDOW > TEXT EDITOR> SERCH FOR TOTAL_AMOUNT-->
    In that we will have
    &ekko-waers&    &komkfkwrt&
    (currency)       (numerics)
    Pls send the Code to make these changes .Pls its urgent
    Thanks&Regards.
    Bharat.

    Hi
    If that field which you wants to add is available in one of the structures like EKKO,EKPO then you can add that field just beside the other fields
    If that field is not there in the any of the structures then you can define a variable using define command
    /: DEFINE  &VAR&
    / &VAR&  = <some value>
    or you can write subroutines to fetch the data from outside tables and can use those fields data in the script
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to add a new option to ADF dropdown

    Hi,
    I got a title field (#{bindings.title.inputValue}) which is pulled from AD, and ‘titlesList’ from a database. The problem is that if the title doesn’t exist on the selection, I will get a blank option. When it is saved, it becomes empty.
    <af:selectOneChoice xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="ssoc2" value="#{bindings.title.inputValue}" simple="true">
    <f:selectItems xmlns:f="http://java.sun.com/jsf/core" value="#{employeeBean.titlesList}" id="ssi2"/>
    </af:selectOneChoice>
    I’ve tried to use javascript to add the new item to the Selection. But when I save it, I got “Attribute value cannot be null”.
    I’m thinking about when I create the titlesList in employeeBean, I can add the new title to the list. As long as I know the user ID inside the bean, I can get the title. But, I don’t know how to pass the user ID to the backend from Selection. In jdeveloper 11.1.1.5, I am not allowed to do this "#{employeeBean.titlesList(userID)}". So, how can I add a new option to Selection.
    Thank you.
    Edited by: 891549 on Jun 7, 2012 4:02 PM

    how about adding
    <af:selectItem label=" " value="" id="si21"/>to your existing selectonechoice

  • How To Add a new column for ZPR0 price in open sales order report ??

    HI,
    my requirement is To Add a new column for ZPR0 price in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

    k

  • How to Add a filter option for a entire table to a search button?

    Hi all,
    I am new to SAPUI5. i am having a table with hard coded data's.and i have a search field.
    i want to add a filter option to the search field for the entire table..
    i can able to add a filter option to the column by using filterProperty.
    is there is any method or property to do that?
    PS - i have attached my table code.
    Regars
    Dayalan

    Hi Dayalan,
    documentation for filtering and sorting is in this section of the Developers Guide.
    Cheers
    Graham Robbo

  • How to add in new language for Messenger Express

    Guys, i need help on adding in new language for Messenger Express. My customer is asking for "Malay" language which is not come with default language pack. The information from Customization PDF is too little for me, wondering is there any template just like i18n.properties in UWC.
    Version : Sun Java(tm) System Messaging Server 6.2-3.04

    Hi,
    Guys, i need help on adding in new language for
    Messenger Express. My customer is asking for "Malay"
    language which is not come with default language
    pack. The information from Customization PDF is too
    little for me, wondering is there any template just
    like i18n.properties in UWC.There was an RFE (request for enhancement) to do just this implemented in the very latest hotfix (not out quite yet):
    6455821 - Admin should be able to add new language support for MS other than predefined languages/locales
    Suggest you log a Sun support case to get a copy of the MS6.2 patch which contains this RFE (scheduled to be in 125813-01) - and instructions on how to implement the new language.
    Regards,
    Shane.

  • Add a new line for grouping similar rows

    As subject, possible to do this using SQL?
    For eg:
    KEY       Description
    1           John
    1           John Smith
    2           Peter
    2           Peter Pan
    to:
    KEY      Description
    1          John
    1          John Smith
    <newline>
    2          Peter
    2          Peter Pan

    With the model clause:
    SQL> with t as (
      2    select 1 KEY, 'John' Description from dual union
      3    select 1 , 'John Smith' from dual union
      4    select 3 , 'Agent' Description from dual union
      5    select 3 , 'Agent Smith' from dual union
      6    select 2 , 'Peter' from dual union
      7    select 2 , 'Peter Pan' from dual)
      8  -- end of sample data
      9  SELECT decode(m, 0, to_char(k), 1, '<newline>') as key, d as description
    10    FROM t
    11   MODEL PARTITION BY (key as k)
    12         DIMENSION BY (description as d)
    13         MEASURES (0 as m)
    14   RULES UPSERT
    15   (m[null] = 1)
    16  /
    KEY                                      DESCRIPTION
    1                                        John
    1                                        John Smith
    <newline>                               
    3                                        Agent
    3                                        Agent Smith
    <newline>                               
    2                                        Peter
    2                                        Peter Pan
    <newline>                               
    9 rows selected
    SQL> If you don't really care about the <newline> string and the key itself will do you can skip the decode and put an explicit ORDER BY as in:
    SELECT k as key, d as description
      FROM t
    MODEL PARTITION BY (key as k)
           DIMENSION BY (description as d)
           MEASURES (0 as m)
    RULES UPSERT
    (m[null] = 1)
    ORDER BY k, dI'm assuming your column description won't have nulls for your key values.

  • How to add a field object to group header section in crystal report document?

    Hi All, I have got two questions mentioned below, please share your inputs. 1)I want to know whether it is possible to add a field object to header section in crystal report document programmatically? I am using crystal runtime for visual studio. I know that using RAS we can do it, but I want to do it using managed library of crystal runtime. Please suggest. 2) I am doing a POC where I am using RAS (unmanaged library) to manipulated crystal report document. Please see code below: var dbTable = _reportDocument.ReportClientDocument.DatabaseController.Database.Tables[0]; var dbField = dbTable.DataFields.FindField(item.ColumnName,                         CrystalDecisions.ReportAppServer.DataDefModel.CrFieldDisplayNameTypeEnum.crFieldDisplayNameName,                         CrystalDecisions.ReportAppServer.DataDefModel.CeLocale.ceLocaleEnglishUS); CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject fieldObject = new CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject();                     fieldObject.DataSourceName = dbField.Name;                     fieldObject.FieldValueType = dbField.Type; var groupHeaderArea = _reportDocument.ReportClientDocument.ReportDefController.ReportDefinition.GroupHeaderArea[0].Sections[i]; _reportDocument.ReportClientDocument.ReportDefController.ReportObjectController.Add(fieldObject, groupHeaderArea); In above code last line throwing exception : "The report field type is not valid." at CrystalDecisions.ReportAppServer.Controllers.ReportObjectControllerClass.Add(ISCRReportObject ReportObject, Section Section, Int32 nIndex) Thanks, Jai

    Hi Jaikumar
    As per the SCN Rules of engagement, one question per thread please.
    Re. your 1st question. Adding a field to a report is considered to be a report creation APIs (RCAPI). Only the RAS SDK has RCAPIs, so you can not use plain jane crystal APIs. For how to with RAS, see the examples here: NET RAS SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Also, consult the Developer Help Files:
    Report Application Server .NET SDK Developer Guide
    Report Application Server .NET API Guide
    Re. your second question, please create a new discussion.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • How to enable the search option for a column in an old report

    Hi ,
    I created the report. It works fine. I remember while creating the report, at one step, I was asked to sort, search column level (check option) . I skipped that option at that time. But now I want to check/ enable them . So, how and where to do that ?
    Thanks.

    Hi,
    I think easiest way is re-create your report , so wizard do things for you.
    Other vise you need create "search bar" region and items manually and edit report where clause.
    You can first set your old report condition to never and create new report with same select.
    When you are sure that new report working ok, you delete old report.
    Br, Jari

  • Add a new column for WBS description

    Hi all
    how to Add a new column for WBS description and derive the value as per the FS
    anybody can provide document for this

    Hi ,
    In Table <b>PRPS</b>, alread you have short description field <b>POST1 and POSTU</b> for the WBS element, apart from that still if you want to include a feild for your own requirement , then create a structure and with the description field of your requirement and append that structure into PRPS table.
    Hope This Info Helps YOU.
    <i>Reward Points If It Helps YOU.</i>
    Regards,
    Raghav

  • How can I add a new entry for determining a requirement type

    Dear Friends,
    How can I add a new entry for determining a requirement type
    via Item Category + MRP type,  I see no new entries selection.
    This is in  Avb Check & TOR-> TOR-> Determination of req type using transaction.
    Please help.
    Regards
    Ravi.

    Availability Check and Transfer of Requirements > Transfer of Requirements > Define Requirements Types ?
    Just one node above?
    Never mind, you need to add entry on item category:S

  • How to add a new data element for existing table filed(Primary key field)

    Hi Experts,
    How to add a new data element for existing table field(Primary key field)
    For this filed ther is no foreign key relation ships and even check table.
    while activating table it is giving message like below.
    can you help any one to solve this and wil steps to add new dataelement for existing primary key filed of a table.
    Check table (NAMING SPACE/TABLE NAME(EX:/TC/VENDOR)) (username/19.02.10/03:29)           
    Primary key change not permitted for value table /TC/VENDOR
    Check on table  /TC/VENDOR resulted in errors              
    Thanks
    Ravi

    Hi,
    Easiest way is to download the table eg into an Excel table (if possible) or text table. Drop the table from the database. Build your table with the new key field. Build the database table again and fill it.
    You can do it also over the database into a new table. Drop the old one. Build the enhanced one and fill it. Afterwards drop your (temporary) table.
    Maybe there are other ways, but this works.
    Success,
    Rob

  • How to add a new universe in population for Predictive Analysis

    Post Author: izhar
    CA Forum: Performance Management and Dashboards
    Hi all members I am working on BOXI R2, SP2 I have to ask that, How to add a new universe in population for "Predictive Analysis". Currently i can only view universe of "Direct Customers and Direct Products"
    Any member please help me hereRegards Izhar

    Hi Anne,
    It really depends on how your portal is set up. And there are 101 ways this could have been done.
    I've used the Home Page Framework as an easy to define and extend framework to show applications. I've used it both for ESS and MSS, Using the HPF requires that an application has an iView in the portal.
    The main point to be made here is that this is not a Web Dynpro ABAP specific question - but rather one about MSS portal implementation - you would probably be better posting a question in either one of the ESS/MSS or Portal forums.
    As it is not a WDA specific question, I'd ask that you kindly close this thread and reopen in another forum.
    Thanks for your understanding, it would be nice to be able to answer all questions in all forums (perhaps with some sort of tagging system) but currently forum rules are that questions must be specific to the forum posted.
    Thanks,
    Chris

  • I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

    I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

        Jennymbell, never fear help is here!
    Have you tried contacting your IT department for assistance? You can visit http://bit.ly/QECbGh for steps on how to enterprise activation.
    Keep me posted if you need further assistance.
    John B
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Double Sided DVD format burning question

    Hi, I have the latest version of DVDSP and wish to know if it is possible to burn a each side of double sided DVD in different formatts. Specifically, I wish to make one side a DVD disc, and the other side a DVD ROM disc that will contain AIFF or MP3

  • Safari Unexpectedly quits while using CS_plug ins

    I am not able to use Safari anymore. Everytime I open it it just quits with the above message. I've noticed though that there is a new tool bar that it wasn't there before. all sorts of icons to Facebook, movies, etc. Could that be the problem? Anyon

  • E2500 SLOW wireless speed

    I am having trouble with the following setup. Cisco E2500 wireless router Dell Desktop running XP - hardwired to the internet Dell laptop running Win 7 Internet Provider TWC My TWC plan is for 30 Mbps download speed. I get that at the desktop when te

  • Separating code and data in two different packages.

    Hi, I am trying to separate data and code that creates or consumes that data in two separate packages. package X contains class or applet x. This is my container for data. package Y contains applet y. The methods in this applet create and store data

  • In webdynpro,where to maintain common properties

    Hi Friends, I want to maintain some common database/data layer connection properties for the webdynpro application, as we do in j2EE applications, so that if required, anytime these properties can be changed. Thanks in advance for awaiting quick resp