EVDRE - Option range - SuppressDataRow

Dear All,
I am trying to use SuppressDataRow within EVDRE.
Does anybody know how to use this option to suppress specific rows in the data range.
In my testing this had no effect.
Regards,
Richard
Edited by: Richard Ritter on Feb 26, 2009 9:32 AM

For basic suppression, use the Suppress field in your expansion range -- a value of Y will suppress records with 0 or no values. A value of Budget,2009.Total will suppress records with 0 value in that alternate dimensional intersection. There are some other syntaxes that work for this suppression, too.
I've never used the SuppressDataRow option in the optionRange, and I think it's pretty esoteric.
Check out the online help, or the BPC for Office user guide for the full details on both of these.

Similar Messages

  • Dynamic Select Options/Ranges Maintain and Display in my screen

    Hi I am trying to figure out if I can create a screen which will will read various select-options I have stored in a custom table but am having trouble finding something which will allow me to display each of 'select-options' in my dynpro... has anyone ever done this?
    I'd rather not reinvent the wheel or mimic - does anyone know of a way to basically use a loaded range and display it on a screen for display or maintenance using standard SAP routines/classes?
    Thanks in advance!
    Roc..

    @Adrian - I got your email regarding the code sample, here is a quick example of how to popup a dynamic selection for up to 5 tables...
    *& Report  ZRS_DYNAMIC
    REPORT  zrs_dynamic.
    * START Dynamic Range Selection Definitions
    * Definition of the selection_if variable, which is used to reference
    * the selections obtained
    DATA: gv_selid TYPE rsdynsel-selid.
    * Definition of the TABLES_TAB table for use in providing the list of
    * fields available for creating select options from
    DATA: gt_tables TYPE STANDARD TABLE OF rsdstabs.
    DATA: gs_tables TYPE rsdstabs.
    PARAMETERS: p_tab1 TYPE tabname DEFAULT 'KNA1',
                p_tab2 TYPE tabname DEFAULT 'KNB1',
                p_tab3 TYPE tabname DEFAULT 'KNC1',
                p_tab4 TYPE tabname DEFAULT 'KNVV',
                p_tab5 TYPE tabname DEFAULT 'KNVP'.
    START-OF-SELECTION.
      gs_tables-prim_tab = p_tab1 .APPEND gs_tables TO gt_tables.
      gs_tables-prim_tab = p_tab2 .APPEND gs_tables TO gt_tables.
      gs_tables-prim_tab = p_tab3 .APPEND gs_tables TO gt_tables.
      gs_tables-prim_tab = p_tab4 .APPEND gs_tables TO gt_tables.
      gs_tables-prim_tab = p_tab5 .APPEND gs_tables TO gt_tables.
    * Definition of Table which includes the select-option range for field
      TYPES: ty_selopt_t TYPE  rsdsselopt OCCURS 10.
    * Definition of field name and select option range table
      TYPES: BEGIN OF ty_frange,
               fieldname TYPE rsdstabs-prim_fname,
               selopt_t TYPE ty_selopt_t,
             END OF ty_frange.
      TYPES: ty_frange_t TYPE ty_frange OCCURS 10.
      TYPES: BEGIN OF ty_range,
               tablename LIKE rsdstabs-prim_tab,
               frange_t TYPE ty_frange_t,
             END OF ty_range.
      TYPES: ty_range_t TYPE STANDARD TABLE OF ty_range.
      DATA: it_ranges TYPE ty_range_t.
    * work areas
      DATA: gs_ranges TYPE ty_range.
      DATA: gs_frange TYPE ty_frange.
      DATA: gs_selopt TYPE rsdsselopt.
      DATA: gt_ranges TYPE ty_range_t.
      DATA: gt_frange TYPE ty_frange_t.
      DATA: gt_selopt TYPE ty_selopt_t.
    * Definition of the fields list avaiable
      TYPES: ty_fields TYPE STANDARD TABLE OF rsdsfields.
      DATA: it_fields TYPE ty_fields.
      DATA: gs_fields TYPE rsdsfields.
    * END Dynamic Range Selection --------------------------------------------
      CALL FUNCTION 'FREE_SELECTIONS_INIT'
        EXPORTING
          kind         = 'T'
        IMPORTING
          selection_id = gv_selid
        TABLES
          tables_tab   = gt_tables.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'FREE_SELECTIONS_DIALOG'
        EXPORTING
          selection_id    = gv_selid
          title           = 'Select WHERE criteria for Rule'(s12)
          as_window       = 'X'
          start_row       = 7
          start_col       = 10
        IMPORTING
          field_ranges    = it_ranges
        TABLES
          fields_tab      = it_fields
        EXCEPTIONS
          internal_error  = 1
          no_action       = 2
          selid_not_found = 3
          illegal_status  = 4
          OTHERS          = 5.
    Edited by: Rocco Scocco on Jun 17, 2010 3:48 PM
    Edited by: Rocco Scocco on Jun 17, 2010 3:49 PM

  • Select options range table to be passed to Assistance class

    Hi Guru's,
    I have an assistance class where I have to write all my select queries. I have a selection screen with multiple Select options (as input fields). Now I want to pass the select options range table to assistance class.
    Please let me know if you have any sample code for this which may also include building range tables for select options.
    Thanks,
    Pradeep

    Hi Pardeep,
    U can use following code: for field ERDAT
    data: rt_ERDAT      type ref to data,
            R_ERDAT       TYPE RANGE OF VIQMEL-ERDAT,
            R_ERDAT_line  LIKE LINE OF R_ERDAT,
    field-symbols: <fs_ERDAT> type table.
    Retrieve the data from the select option
      rt_ERDAT = wd_this->m_handler->get_range_table_of_sel_field( i_id = 'ERDAT' ).
    Assign it to a field symbol
      assign rt_ERDAT->* to <fs_ERDAT>.
    copy field symbols to local variable
      R_ERDAT = <fs_ERDAT>.
    CALL METHOD WD_ASSIST->"METHOD_NAME"
          R_ERDAT        = R_ERDAT
    where in class method:
    R_ERDAT     Importing     Type     ZU5QNM_ERDAT_T
    ZU5QNM_ERDAT_T : is a table type of ZU5QNM_ERDAT_R
    and ZU5QNM_ERDAT_R has following structure :
    SIGN     ACE_SIGN     CHAR     1     0     Debit/Credit Sign (+/-)
    OPTION     ACE_OPTION     CHAR     2     0     Option for Ranges Tables
    LOW     ERDAT     DATS     8     0     Date on Which Record Was Created
    HIGH     ERDAT     DATS     8     0     Date on Which Record Was Created
    I hope this wiol solve ur problem.
    Regards,
    Vishal.

  • Function to append a 0 to the front of values in a Select-Options range?

    Hi,
    Is anyone aware of any function or class that will append a 0 (or any character) to the front of a range (or set of ranges) in an internal table of a Select-Options from a selection screen?
    Hope that made sense.
    Thanks,
    Andy

    Hi
    Why not?
    My code it's only a sample, but it can create a routine for a generic range table based on the fields of the internal table for the range have always the same names:
    SIGN, OPTION, LOW and HIGH:
    TABLES: BKPF.
    SELECT-OPTIONS: SO_BELNR FOR BKPF-BELNR,
                    SO_GJAHR FOR BKPF-GJAHR,
                    SO_BUKRS FOR BKPF-BUKRS.
    AT SELECTION-SCREEN.
      PERFORM  CONV_RANGE USING: SO_BELNR[],
                                 SO_GJAHR[],
                                 SO_BUKRS[].
    *&      Form  CONV_RANGE
    *       text
    *      -->T_RANGE    text
    FORM CONV_RANGE USING T_RANGE TYPE TABLE.
      FIELD-SYMBOLS: <W_RANGE> TYPE ANY,
                     <W_LOW>   TYPE ANY,
                     <W_HIGH>  TYPE ANY.
      LOOP AT T_RANGE ASSIGNING <W_RANGE>.
        ASSIGN COMPONENT 'LOW' OF STRUCTURE <W_RANGE>  TO <W_LOW>.
        ASSIGN COMPONENT 'HIGH' OF STRUCTURE <W_RANGE> TO <W_HIGH>.
        PERFORM CONVERSION_EXIT_ALPHA_INPUT USING: <W_LOW>,
                                                   <W_HIGH>.
      ENDLOOP.
    ENDFORM.                    "CONV_RANGE
    *&      Form  CONVERSION_EXIT_ALPHA_INPUT
    *       text
    *      -->INPUT      text
    FORM CONVERSION_EXIT_ALPHA_INPUT USING P_INPUT.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          INPUT  = P_INPUT
        IMPORTING
          OUTPUT = P_INPUT.
    ENDFORM.                    "CONVERSION_EXIT_ALPHA_INPUT
    Max

  • Select-options/range in screen

    Hi all,
    I just wanted to display select-options in the screen numbered 1000,
    by putting which control can i do this ??........
    regards
    Jose

    if u want to pass values in the selection screen use
    Ex:
             selection-screen begin of block b1
               select-options : p_matnr for mara-matnr.
             selection-screen end of block b1.
    else if u want to pass while execution of program
    use Ranges
    Ex:  ranges: p_matnr for mara-matnr.
             Pass variables
             p_matnr-low, p_matnr-high....................
    Regards,
    Ajay

  • How to Captured Value into Select-Options Range Table Without "Enter"

    Hi,
    I defined a set of Select-Options in the Web Dynpro. I found that the value for the Select-Options will not be captured whenever I manually type in the value instead of choosing it from F4 Help Drop Down.
    However, this problem can be resolved if I manually type in the value for Select-Options in the Selection Field and I press "Enter". Without pressing "Enter" value will not be captured.
    Any solution for this issue? Please help.

    Hi Kris,
    My problem is only when the user key in the value themselves rather than choosing it from Select-Options drop down value. Most of the time user will know what value to key in and will skip the step to choose from the Drop Down List. Thus, if this happen, the value keyed in by the user will not be able to capture into the range table.
    I am using this logic to capture the value for selection item:
      wd_this->m_helper->get_selection_screen_items(
        IMPORTING et_selection_screen_items = lt_sel_item ).
    * Values From Selection Screen
      LOOP AT lt_sel_item ASSIGNING <fs_sel_item>.
        CASE <fs_sel_item>-m_id.
          WHEN `PERNR`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_pernr>.
          WHEN `BUKRS`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_bukrs>.
          WHEN `STAT2`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_stat2>.
          WHEN `WERKS`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_werks>.
          WHEN `BTRTL`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_btrtl>.
          WHEN `PERSG`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_persg>.
          WHEN `PERSK`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_persk>.
          WHEN `ABKRS`.
            ASSIGN <fs_sel_item>-mt_range_table->* TO <fs_abkrs>.
          WHEN `BEGDA`.
            ASSIGN <fs_sel_item>-m_value->* TO <fs_begda>.
        ENDCASE.
      ENDLOOP.
    E.g. User key in the BUKRS without using the Drop Down Value provided by the Select-Options. For this case, <fs_bukrs> table will be initial as no value is captured.
    Edited by: Girish Nabar on Apr 21, 2011 8:55 AM

  • EVDRE Format Range More than one Criteria

    I have found a problem when combining two Criterias in the Format Range Criteria section:
    CATEGORY.ID="FORECAST" AND ACCOUNT.CALC="Y"
    I expext a formatting as when ACCOUNT is a calculated member and the CATEGORY is forecast, then do a special formatting.
    I have a EVDRE input schedule with Accounts in Rows and Category (Actual, Budget and Forecast) and Time (three month) in Columns.
    It does the formatting for the first combination of the criteria, but if the criteria matches somwhere els in later colums, the formatting is ignored.
    Any ideas?

    Hi Achim,
    I tried your scenario by creating my own EVDRE template using your example and it's working fine for me. I'm using SAP BPC 7.0 MS SP7. What version are you using? Does this line of formatting in the last line of the FORMAT RANGE?
    Cheers,
    Marvin

  • BPC Excel - EvDRE & Named Ranges

    Hi
    I have an EvDRE showing sales by Customer, I also have a named range referencing the results, the named range is D20:D50, however, when I refresh the EvDRE the named range changes by itself, and starts from the last row of the previous EvDRE results, i.e. it becomes D51:D81.
    Does anyone have any tricks for preventing it from doing this ?, I've tried $D$20:$D$50, but it still changes itself, and I've also tried not using a named range at all, and just using $D$20:$D$50 directly in my formula, but that corrupts when I refresh. I cannot unfortunately use D:D as I am Ranking the results.
    Thanks in advance for your help.
    Kind Regards
    Gav

    Hi all,
    I can confirm that I am having the same error with BPC 7.0MS with the latest patches even after inserting the DO_COMPRESS 0 parameter in the dbo.tblDefaults table. I am trying to make an expansion on TIME dimension such as:
    2002.TOTAL,BAS(2002.TOTAL),2003.TOTAL,BAS(2003.TOTAL)...
    which works with only 2 elements like 2002.TOTAL,BAS(2002.TOTAL), so I rule out the source of the problem being wrong member names in rows or something like that.
    Anybody has any suggestion?
    Regards,
    Rafa

  • Entries in Select-Options Range

    Hi Experts,
    I am experiencing short dump if i give more no of entries in select option (in range)
    can any one please suggest a solution to this?
    Points will be awarded.
    Thanks
    Dany

    Maximum number of entries in select options is only around 1630, you cannot give more than that
    i guess it is around 1600 - 1700
    chk this program , if u increase the do loop to 1800 it will give dump
    REPORT ychatest LINE-SIZE 350.
    TABLES : mara.
    SELECT-OPTIONS : s_matnr FOR mara-matnr.
    DATA : BEGIN OF itab OCCURS 0.
            INCLUDE STRUCTURE mara.
    DATA:    END OF itab.
    DO 1600 TIMES.
      s_matnr-sign = 'I'.
      s_matnr-option = 'BT'.
      s_matnr-low = ''.
      s_matnr-high = ''.
      APPEND s_matnr.
      CLEAR s_matnr.
    ENDDO.
    SELECT  * FROM mara INTO TABLE itab WHERE matnr IN s_matnr.
    WRITE : 'hi'.
    Message was edited by:
            Chandrasekhar Jagarlamudi

  • Dynamical declaration of SELECT-OPTIONS / RANGE possible

    Hi fellow programmers,
    does anybody know whether there is a way to declare a
    SELECT-OPTION respectively a RANGE dynamically during
    runtime? I have both the name of the range to be created
    and the DDIC-referencefield stored in variables.
    Thanks in advance for your appreciated help.
    Andreas

    Hi Andreas,
    DYNAMIC PROGAM SHOWS SELECTION-SCREEN.
    1 Sap does not allow execution of dynamic programs from memory.
      (dynamic means, only in memory, not in database)
    2. However, it allows execution of dynamic FORM/ENDFORM.
    3. But your requirement is of selection-screen using parameters and select-options.
    4. Hence, we can use the concept of DYNAMIC PROGRAM
       (build the program code in an internal table)
       using command
       INSERT REPORT 'ZDYN01' FROM itab.
       THIS WILL SAVE / OVERWRITE THE PRGRAM IN DB.
       HENCE, BE CAUTIOUS.
    5. Just Copy/Paste this sample program
       It will generate a dynamic program called ZDYN01.
       it will also execute it and
       SHOW SELECTION-SCREEN
       of the DYNAMIC PROGRAM.
    6. You may build up yuour own logic
        of constructing selection-screen from   
         required data stored in tables.
    7.
    REPORT abc.
    Data
    DATA : BEGIN OF itab OCCURS 0,
           l(72) TYPE c,
           END OF itab.
    DATA : prog(8) TYPE c.
    Make Dynamic Program
    CLEAR itab.
    itab-l = 'REPORT ABC.'.
    APPEND itab.
    itab-l = 'PARAMETERS : MATNR LIKE MARA-MATNR.'.
    APPEND itab.
    itab-l = 'START-OF-SELECTION.'. APPEND itab.
    itab-l = 'WRITE :/  MATNR.'. APPEND itab.
    Generate Program
    INSERT REPORT 'ZDYN01' FROM itab.
    COMMIT WORK. "----- COMMIT NECESSARY FOR DB
    *------ Call Report
    SUBMIT zdyn01 VIA SELECTION-SCREEN.
    HOPE THE ABOVE HELPS.
    Regards,
    Amit M.

  • To yashpal Gupta-Select option range table

    Dear Yashpal,
                        I have created range table and put conditions and passed empty table in this fashion.still the result is the same (If i give both input then functionality works,only one of then is given then sy-subrc = 4.).I am wondering ehther u haev passed empty table correctly or not.
    if  Stru_Cn_Selcrtr-ca_slsrl is not initial.
        wa_salesno-sign = 'I'.
        wa_salesno-option = 'EQ'.
        wa_salesno-LOW = Stru_Cn_Selcrtr-ca_slsrl.
        APPEND wa_salesno TO r_salesno.
        CLEAR : wa_salesno .
      else.
        wa_salesno-sign = 'I'.
        wa_salesno-option = 'EQ'.
        wa_salesno-LOW = space.
        APPEND wa_salesno TO r_salesno.
         CLEAR : wa_salesno .
      endif.
      if  Stru_Cn_Selcrtr-ca_brand is not initial.
        wa_brandid-sign = 'I'.
        wa_brandid-option = 'EQ'.
        wa_brandid-LOW = Stru_Cn_Selcrtr-ca_brand.
        APPEND  wa_brandid TO  r_brandid.
        CLEAR :  wa_brandid .
      else.
        wa_brandid-sign = 'I'.
        wa_brandid-option = 'EQ'.
         wa_brandid-LOW = space.
        APPEND wa_brandid  TO  r_brandid.
        CLEAR : wa_brandid  .
      endif.
    **Situation where these fields are not provided  on the screen.
    *If any of these are given then select data accordingly.
        select * from ZNSLVWHDIMMD_LCL
                 into corresponding fields of table IT_VIEW
                 WHERE SALESRLNO in  r_salesno
    *             and   CREATEDBY in It_crtby_selopt
    *            and   STARTDATE in It_validfrm_selopt
    *             and   ENDDATE   in It_validto_selopt
    *             and  STATUS     in It_status_selopt1
                 and   BRANDID   in r_brandid.
    *             and   MODELNO   in It_model_selopt

    dynamic selection on data.thnx

  • SBO 2004 Queries - Optional Ranges

    Hi,
    Have a client who requires a number of queries where they have the option of entering values in eg, out of 5 range fields only 1-2 of them.  The statement below only works if all five range fields have values in them.
    SELECT T2.CardName, T3.SlpName, T0.DocNum, T0.NumAtCard, T1.Dscription
    FROM OQUT T0 INNER JOIN
       QUT1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
       OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN
       OSLP T3 ON T2.SlpCode = T3.SlpCode
    WHERE T2.CardName = '[%0]' AND
       T3.SlpName = '%[%1]' AND
       T0.DocNum = '%[%2]' AND
       T0.NumAtCard = '%[%3]' AND
       T1.Dscription = '%[%4]'
    Does anyone have any ideas as to how I can accomplish this.
    Thanks,
    Peter Nowak.

    Hi Peter!
    Try to use LIKE-word in WHERE-statement like following:
    WHERE T2.CardName LIKE N'%[%0]%' AND
    T3.SlpName LIKE N'%[%1]%' AND
    T0.DocNum LIKE N'%[%2]%' AND
    T0.NumAtCard LIKE N'%[%3]%' AND
    T1.Dscription LIKE N'%[%4]%'
    If user doesn't enter any value in query-argument the WHERE-statemenr will include condition LIKE N'%%' which is similar to "LIKE everithing".
    Hope i understand your question correctly.

  • Get only range with multiple evdre

    Hi
    Gurus
    how to get to select only one EVDRE cells to send data when i have two evdre's ina worksheet.
    Well i tried with having applied getonly range to complete one EVDRE, but when i tried to send I still see that the dimensions and members from the first evdre are read.
    inthe first evdre i have parent members and so the EVDRE is not successfull when sending data from the second evdre
    thanks

    Hi,
    Whenever you are sending data, it has to be send on the base level members only. If you enter it in the parent level members, it will not be sent.
    If you dont want to send data for a particular membersheet you can enter NOSEND in Option range. It will not send any data for that EVDRE report.
    While sending the data for some EVDRE, you are always asked for Active Worksheet to Workbook option. If you select worksheet, it will only send data for that particular worksheet only.
    Hope this clarifies.
    Rgds,
    Poonam

  • Select-options and ranges

    Hi all,
    Belated Happy Holi.
    Can u  explain me the difference between
    Select-options and ranges?
    When, where and how to use them ?
    I know the basic differences, but i need to know in deep .
    could u give me the informatin with a scenario please ?
    Thanks in advance
    Ravi

    HI
    <u>SELECT-OPTIONS:</u> Declare an internal table that is also linked to input fields on a selection screen
    <u>RANGES:</u> Declare an internal table with the same structure as in select-options, but without linking it to a selection screen.
    FOR FURTHER DOCUMENTATION PLEASE GO THROUGH THE LINK
    <a href="http://72.14.203.104/search?q=cache:btyoj86smhEJ:www.sap-img.com/abap/difference-between-select-options-ranges.htmSelect-optionsandrangesIN+ABAP&hl=en&gl=in&ct=clnk&cd=1">Difference Between Select-Options & Ranges</a>
    <a href="http://72.14.203.104/search?q=cache:EJgiHLpghDEJ:help.sap.com/saphelp_nw04/helpdata/en/fc/eb3034358411d1829f0000e829fbfe/content.htmSelect-optionsandrangesIN+ABAP&hl=en&gl=in&ct=clnk&cd=4">Statical Declaration</a>
    <a href="http://72.14.203.104/search?q=cache:VWS1erlabRIJ:help.sap.com/saphelp_nw04/helpdata/en/9f/dba71f35c111d1829f0000e829fbfe/content.htmSelect-optionsandrangesIN+ABAP&hl=en&gl=in&ct=clnk&cd=5">Selection tables</a>
    REGARDS
    ANOOP
    Message was edited by: ANOOP R.S

  • EVDRE Column expansion: Auto hide column following expansion

    Hello All
    I have an EVDRE expansion question please. If i set my column to expand on BAS members of Entity,  and i have say 10 entities that are a part of my selected parent entity, i notice that the 11th column auto hides in excel. I assume this is caused by the fact that the page key range definition requires the colkeyrange to include a minimum of two columns.
    Does any one know how to stop this? Perhaps as one of the OptionsRange?
    The context of my question is that i have 4 EVDRE's in my sheet - if one of them results in a column being hidden, it hides results from the EVDRE results that appears below it.
    Naturally, the same applies to a Row expansion.
    Thanks for any assistance
    Glen

    Hi Glen,
    I cannot decipher the way your template looks like. As far as I understand your statement, you have a "DYANMIC" expansion in column in which you use BAS as your flag for column member set.
    This is how it works, if you're using flags (e.g. BAS, SELF, DEP) as your member set. It highly depends on your current view. Meaning, if the member in your current view has only 1 BAS level member, then the column next to it will automatically hide. Therefore, the case where you are in is not usual in BPC wherein the current view on that dimension has 10 BAS level members and the column next to it automatically hides.
    Possible cause/reason, I suppose is that you are using "HIDECOLKEYS" in your option range tagged as "Y" in your 2nd or 3rd or 4th EvDRE which is PROBABLY LOCATED under the ranges of EvDRE where you have 10 BAS level members.
    I hope my statements are easily comprehendable.
    Thanks! Hope this helps... _
    I'm sorry I forgot to highlight this: 
    Does any one know how to stop this? Perhaps as one of the OptionsRange?
    The context of my question is that i have 4 EVDRE's in my sheet - if one of them results in a column being hidden, it hides results from the EVDRE results that appears below it.
    Naturally, the same applies to a Row expansion.
    Thanks for any assistance
    Glen
    So what I want to suggest is that check all your column and row ranges if it overlaps each other in each EvDRE. It would be best to relocate other EvDREs OR remove the "Y" tags on your option range at "hidecolkeys" and/or "hiderowkeys" and just group the IDs manually through MS EXCEL.
    Thanks!
    Edited by: hitachi88 on Nov 3, 2010 4:41 PM

Maybe you are looking for

  • Difference between Import and Export parameters in Function Module

    Hi All, I am unclear about the import and export parameters, when i create a function module. Can anyone explain abt this. However when i call the function module in any program the import parameters in Function module are displayed as exporting in p

  • Dynamics CRM usage of CRMAF_ filters in sub reports

    Have a main SSRS report which uses CRM pre filtering via the "CRMAF_" prefix, this report calls a sub report which needs to use the same pre filtering as selected and applied via the main report. The sub report is a summary total presenting the infor

  • Adobe flash island and ECC6 system

    Hi friends, We are using SAP ECC 6.0 system for developing WD ABAP application. Now we need to use adobe flash island UI Element but its not available in the UI Library. Which Patch is required to be installed on this server to use this UI element. T

  • BuddyAPI functions

    Greetings, i'm using buddyApi function "baGetFiles" in order to load .swf files. By default, the "baGetFiles" function is"files = baGetFiles( the moviePath & "images", "*.jpg", "", "My program", "Select pictures to import", 3, 100, 100 )" example giv

  • Can I install Adobe CS4 on  Mac OS X v10.9?

    Hi, Does anyone know whether you can install Adobe CS4 on MAC OS X v.9? Thanks!