Hiding some of the columns in Graph in WAD

Hi Friends
In WAD, Ive created a WAD template with a Drop down box ,table and graph all with 1 data provider ( since the char value selected in drop down box has to be effected the data of table and graph) and working fine.
I would like to hide some of the columns in the graph . I ve tried all the properties of the graph but I didnt get.
The columns which I dont want to see in graph are required in the table . So Ive not Hided them in Query (DP of all web items).
Which Property I ve to use to hide some of the columns in graph only.
Plz help me in this
Thanks in advance

Hi Sai,
You can go the web item properties (chart) and you can avoid the column in 'Set the sample data' of Texts and Data Selection step(2) of Chart wizard you can check out the 'Category' option to increase of decrease you visibility of the columns.
Also check with the series option in the same wizard.
Hope this will suffice your requirement.
Regards,
Madhu

Similar Messages

  • How to suppress a complete row when some of the columns are blank

    Hello,
    is it possible to suppress an entire row in the BEx Report where some of the columns contain no values. The report is in BW 3.5 version and is opened in the web browser. It contains only characteristics in the ROWS area of BEx Designer.
    Pls help. Thanks.
    SD

    Hi,
    You can wirte a condition on any keyfigure stating that KF1 > 0.So once that condiiton is active and if any column is blank then it will not display it.
    Pelase check out this link as well.
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/dd3841d132d92be10000000a1550b0/content.htm
    Hope it helps.
    Regards,
    AL

  • Pivot Some of The Columns to Rows

    Hi,
    I need to pivot some of the columns to rows and have the remaining columns in the result.
    At this point I have already done a subquery to gather data and to keep the run time down I'd rather not do it again like a UNION would require.
    Single Row
    CUST TEST_DATE TEST_TYPE1 TEST_TYPE2 TEST_TYPE3
    1 20-MAR-09 AA BB CC     
    Result Rows
    CUST TEST_DATE TEST_TYPE
    1 20-MAR-09 AA
    1 20-MAR-09 BB
    1 20-MAR-09 BB
    Suggestions please?
    Thank You in Advance for Your Help,
    Lou

    with t as (
               select 1 cust,to_date('20-MAR-09','dd-mon-yy') test_date,'AA' test_type1,'BB' test_type2,'CC' test_type3 from dual
    select  cust,
            test_date,
            case lvl
              when 1 then test_type1
              when 3 then test_type2
              else test_type3
            end test_type
      from  t,
            (select level lvl from dual connect by level <= 3)
      order by cust,
               test_date,
               test_type
          CUST TEST_DATE TE
             1 20-MAR-09 AA
             1 20-MAR-09 BB
             1 20-MAR-09 CC
    SQL> SY.

  • Hiding some of the webservices in axis

    Hi,
    I am using axis webservices with my project. Not my requirement is to hide some of the webservices in axis. It means when i use the url: http:\\localhost:8080\axis, only certain webservices are to be displayed. Can any one help in this regard.
    thanks in advance
    ravi

    Hi Sai,
    You can go the web item properties (chart) and you can avoid the column in 'Set the sample data' of Texts and Data Selection step(2) of Chart wizard you can check out the 'Category' option to increase of decrease you visibility of the columns.
    Also check with the series option in the same wizard.
    Hope this will suffice your requirement.
    Regards,
    Madhu

  • Need to use Group By but only want to group some of the columns not all

    Hello all! I am having some issues here. I am rather new to SQL and I am getting stuck with grouping. I have the query below but I only want to group by these columns, instead of all the columns in my select statement.
    ah.fund,
    ah.dept,
    ah.org,
    ah.acct,
    t.fund,
    t.dept,
    t.org,
    t.acct
    This will eventually go into Oracle reports builder. Is there any way I can archive this at all? The query will return all the t for a given time period, but they need to be grouped by the fully qualified account number which consists of the fund, dept, org and acct columns.
    Thanks in advance!
    SELECT ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2) acct_no,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct acct_no1,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO) J_NO,
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO) W_NO,
         t.VENDOR_NO,
         v.name||' ' ||v.first_name name,
         MIN(ah.eod_date)
    FROM ah,
         t,
         v
    WHERE ah.fund BETWEEN SUBSTR(:p_acct_from,0,3) AND SUBSTR(:p_acct_to,0,3)
         AND ah.dept BETWEEN SUBSTR(:p_acct_from,4,2) AND SUBSTR(:p_acct_to,4,2)
         AND ah.org BETWEEN SUBSTR(:p_acct_from,6,4) AND SUBSTR(:p_acct_to,6,4)
         AND ah.acct BETWEEN SUBSTR(:p_acct_from,10,5) AND SUBSTR(:p_acct_to,10,5)
         AND FLOOR(ah.acct/10000) IN (6,8)
         AND SUBSTR(ah.acct,3) != '000'
         AND ah.eod_date BETWEEN :p_from_date-1 AND :p_to_date
         AND t.fund (+) = ah.fund
         AND t.dept (+) = ah.dept
         AND t.org (+) = ah.org
         AND t.acct (+) = ah.acct
         AND TO_DATE(t.activity_date, 'dd-mon-yy') >= TO_DATE(:P_FROM_DATE,'dd-mon-yy')
         AND TO_DATE(t.activity_date, 'dd-mon-yy') <= TO_DATE(:P_TO_DATE,'dd-mon-yy')
         AND t.type IN( 'PI','JE','PR','VD','VU','AC','AD')
         AND (
              (:p_year = TO_CHAR(CURRENT_DATE,'YYYY')
              AND (t.po_no IS NULL
              OR (select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = TO_CHAR(CURRENT_DATE,'YYYY') ) )
              OR ((select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = :p_year )
    AND v.vendor_no (+) = t.vendor_no
    GROUP BY ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO),
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO),
         t.VENDOR_NO,
         v.name||' ' ||v.first_name
    ORDER BY LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2),
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct;

    In reports builder you can group the columns without having to group it in your query. It is also known as the break report which contains multiple groups in its data model.
        |            Q_1               |
                      |
                      |
        |       GRP_department         |
        | dept_no                      |
        | dept_name                    |
                      |
                      |
        |         GRP_employee         |
        | emp_no                       |
        | emp_first_name               |
        | emp_last_name                |
        | emp_middle_name              |
        | emp_date_of_birth            |
        | ...                          |
        ------------------------------

  • Hiding Total of the Columns  in the Class CL_SALV_TABLE

    Hi ,
    I am using the class CL_SALV_TABLE for displaying ALV outputs. The client is adamant on using this class only for ALV o/p.
    In on o/p there are some subtotals and totals calculation. I cannot remove the totals calculation. Only way is to hide it.
    I need to hide the Totals for the fields .
    I know how it is done in the CL_GUI_ALVGRID by setting layout-no_totline = 'X' .
    Is there any similar way in CL_SALV_TABLE  class to hide the totals.

    Hi,
    U can make column invisble as set_visible (' ').
    For example,
    data: w_column TYPE REF TO cl_salv_column,
    w_columns TYPE REF TO cl_salv_columns_table,
    w_column ?= w_columns->get_column( 'M' ).
    w_column->set_medium_text( 'Material' ).
    w_column->set_long_text( 'Material' ).
    w_column->set_output_length( 20 ).
    w_column->set_visible( ' ' ).
    For class cl_gui_alv_grid, u have to build catlog as
    data:wa_fieldcat TYPE lvc_s_fcat,
    it_fieldcat TYPE TABLE OF lvc_s_fcat,
    CLEAR wa_fieldcat.
    wa_fieldcat-fieldname = 'M'.
    wa_fieldcat-coltext = 'Material.
    wa_fieldcat-NO_OUT = 'X'.
    APPEND wa_fieldcat TO it_fieldcat.
    or u can do like this
    Retrieve the columns that u want, creat a new table and passed this table as a parameter for the creation of  cl_salv_table object
    Regards
    Hiren K.Chitalia

  • Create a view, some of the columns default are NULL

    Windows XP/10g 10.2.0.1.0
    I have a table tab1(test1, test2, test3)
    And, I need to create a views as:
    create or replace VW1(test1, test2, viewtest1, viewtest2) as (select test1, test2, viewtest1, viewtest2 from tab1, dual);
    And need the column value viewtest1 and viewtest2 to be default as null.
    Thanks.

    Are you looking for something like this ?
    create or replace VIEW VW1(test1, test2, viewtest1, viewtest2) as
             (select test1, test2, NULL, NULL from tab1);

  • GenericSortFilter not applying propery on some of the columns

    Hi Gurus
    I am trying to apply GenericSortFilter action block on the below xml documnet.
    I can successfully apply on last column but not first two columns .
    <?xml version="1.0" encoding="UTF-8"?>
    <Rowsets DateCreated="" EndDate="" StartDate="" Version="10.0">
    <Rowset>
    <Columns>
    <Column Description="Distribution center or Plant" MaxRange="1" MinRange="0" Name="PLANT" SQLDataType="1" SourceColumn="PLANT"/>
    <Column Description="ABC Class" MaxRange="1" MinRange="0" Name="ABCCLASS" SQLDataType="1" SourceColumn="ABCCLASS"/>
    <Column Description="ABC Multiplier" MaxRange="1" MinRange="0" Name="ABCMULTIPLIER" SQLDataType="5" SourceColumn="ABCMULTIPLIER"/>
    </Columns>
    </Rowset>
    </Rowsets>
    Do you think any problem with this xml structure or filter action block.
    I am working on MII version 12.0.7 Build 20.
    Thanks in advance.
    ~Hari

    Hi Rick
    In Which tool your are talking about..configuration window and dropdown list box....
    I use MII workbench,frontpage and Stylus studio tools to make up XML...i dont see those options anywhere..
    So,r u talking about some other tool like dreamweaver...like that..
    Correct me.
    Thanks
    Hari

  • Help...trying to print address labels from an excel document.  I only need info from some of the columns.  Using Avery labels.

    Help...I'm trying to print address labels from an existing Excel document that opens fine in Numbers.  I don't want to print everything from the spreadsheet.  The Avery template and site were no help.  Any suggestions?

    If you do not need all the excel specific items you can just write it to a spreadsheet using the write to spreadsheet file vi's.
    If you want to go the excel route you will have to use active x. you can see a lot of examples on the excel board under the breakpoint forum. please post a sample of how you want your data to look and I can maybe help explain what options you have. and also oyu do not necesarily need the report generation toolkit.
    Joe.
    "NOTHING IS EVER EASY"

  • SSRS Expression for hiding some columns in column group based on parameter

    I have a matrix table with column name WeekName which has the values of W1, W2, W3 and W4 which expands 4 columns when run. I need to hide the columns based on a parameter called WeekPar as follows:
    If WeekPar = 1, hide columns W1,
    If WeekPar = 2, hide columns W1 and W2
    What would be the expression for that?
    I know how to hide individual columns, but not some of the columns in a group. Is this possible?
    Thanks in advance!

    Hi QQFA,
    After testing the issue in my local environment, we can refer to the steps below to achieve your requirement:
    Right-click the WeekName column to open the Column Visibility property dialog box.
    Using the expression below to control the Column Visibility (supposing the cell which contains WeekName field named WeekName ):
    =switch(Parameters! WeekPar.Value=1,ReportItems! WeekName.Value="W1", Parameters! WeekPar.Value=2,ReportItems! WeekName.Value="W1" or ReportItems! WeekName.Value="W2")
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to extract the column width in ALv report if its executed in background

    I am executing an ALV report in background , in front end i am getting data properly, in back end for some columns some of the digits are missing.For example if PO no is of 10 digits it will display only 8 becos column size is like that , how to extract coulmns in back ground.
    I have executed in background and checked the spool and  for some of the columns width is not sufficient to display comeplete data so please suggest how to extract the columns sizes if executed inj background for an ALV

    Hi Deepthi,
    you can try with the above mentioned suggestions ,if its worked its fine ,
    If not use Docking container instead of custom container, For ALV in back ground jobs, its suggest to use docking container instead of custom container , below you can find the declaration for docking container and code to use docking and custom container in your program for fore and back ground.
    or you can use docking container alone for both operations.
    Data : G_DOCK1 TYPE REF TO CL_GUI_DOCKING_CONTAINER,
    IF CCON IS INITIAL. (ccon is container name )
    *Check whether the program is run in batch or foreground
        IF CL_GUI_ALV_GRID=>OFFLINE( ) IS INITIAL.
    *Run in foreground
          CREATE OBJECT CCON
            EXPORTING
              CONTAINER_NAME = 'CON1'.
        CREATE OBJECT GRID1
            EXPORTING
              I_PARENT = parent_1.
    ELSE.
    *Run in background
          CREATE OBJECT GRID1
            EXPORTING
              I_PARENT = G_DOCK1.
        ENDIF.
      ENDIF.
    B&R,
    Saravana.S

  • Hiding icons in the Dock and 'Word for Mac'

    Hi, I'm new to macs and I'm struggling a little with some of the simpler tasks! I've put Word for Mac Student Edition on my Macbook but can you tell me how I can delete a word document once I've created it? I can't seem to find 'delete.' Also, can somebody help with hiding some of the icons in the dock. I've got loads and I know I won't use many of them.
    Thanks for your help!
    Macbook   Mac OS X (10.4.8)  

    Thanks for your quick reply! I don't have a right or left click on my Macbook just the mousepad and one bar that runs across the bottom of the pad, It makes no difference if I press the left or right hand side of it, it just keeps initialising the applications.
    I've tried dragging the document to the trash can but that won't work either! Should I be pressing a command key before hand?
    Sorry, I must have been more entrenched in windows-working than I thought....

  • How do I set the column content to automatic break lines

    Hello Guys,
    I have a problem with the column width and the column content of a standard report. Within the report are hugh entries which aren't interrupted by an space character. I set my column width to a special value by usingen "css style: display block; width: 300px;". Now the problem is that some of the column entries have a longer width than the column width is setted. So they overlock the entries of the column next to them.
    My question is: How do I set the column content to automatic break lines after a certain count of characters?
    After researching a couple of websites and discussion thread I found maybe a reference to the solution. I hope it help you to give me an answer.
    COLUMN LAST_NAME FORMAT A4
    regards
    wderr

    Wderr,
    PDFs are another animal entirely. Try adjusting the width of the column under the Print Attributes tab of the report.
    If that doesn't work you'll probably need to create custom XSL-FO layouts which, depending on the tools you have at your disposal, could take some time.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • To unhide the columns of " Record Working Time " table

    hi experts ,
    Can any one suggest me how to unhide some columns of the table "Record Working Time" .
    Actually I have tried the following procedure : content admin -> portal content -> iview -> Rclickctrlalt and check the property of the table and displayed all the columns . It shows all the columns perfectly .
    Finally , when I checked the table in Employee self service -> Working time -> Record working time , I can not see some columns which are visible in content admin "Record Working Time " iview .
    It is a standard webdynpro java application "CatDataRecord" .

    hi gorlisrinu  ,
    Thanks for your reply .
    I have all the administration right . When  I  check the iview in 'Content Admin' I can see all the columns , but when I check the same iview under  'ESS role' i can not see some of the columns  of "Record Working Table ". That is my problem . Can you tell me what is the reason behind it  ? I always save  all the changes after any modification .
    Regards ,
    Sumana
    Edited by: sumana05 on Nov 18, 2011 7:39 AM

  • How to Hide the column in the model layer

    Hi,
    My Jdeveloper version is 11.1.1.3.0.
    We can make an attribute visible / invisble by setting Display Hints value in the Control hints tab.
    I want to display the column conditionally.
    Is it possible to do it dynamically in Model Level itself by Display Hints Property?
    Reg,
    Vini

    Fedor,
    Now also i am getting the same output.
    My requirement is i have to create the viewobject as it is in BaseVO and to hide some of the columns dynamically.
    In Appmod level iam doing this:
    String baseVo = (new StringBuilder("sample.model.")).append(baseVoName).toString();
    ViewDefImpl newView = new ViewDefImpl(ViewDefImpl.DEF_SCOPE_SESSION, "DynamicVO", baseVo );
    newView.resolveDefObject();
    newView.registerDefObject();
    ViewObject internalDynamicVO = findViewObject("DynamicVO");
    if (internalDynamicVO != null)
    internalDynamicVO.remove();
    getTransaction().rollback();
    createViewObjectForDef("DynamicVO", newView);
    ViewObject VO = findViewObject("DynamicVO");
    AttributeDefImpl de = ((AttributeDefImpl) VO.findAttributeDef("FirstName"));
    de.setProperty(AttributeHints.ATTRIBUTE_DISPLAY_HINT, AttributeHintsImpl.ATTRIBUTE_DISPLAY_HINT_HIDE);
    //de.setProperty(de.getUIHelper().ATTRIBUTE_DISPLAY_HINT, de.getUIHelper().ATTRIBUTE_DISPLAY_HINT_HIDE);
    return "DynamicVO";
    and in JSPX:
    <af:table rows="#{bindings.DynamicVO.rangeSize}"
    fetchSize="#{bindings.DynamicVO.rangeSize}"
    emptyText="#{bindings.DynamicVO.viewable ? 'No data to display.' : 'Access Denied.'}"
    var="row" rowBandingInterval="0"
    value="#{bindings.DynamicVO.collectionModel}"
    selectedRowKeys="#{bindings.DynamicVO.collectionModel.selectedRow}"
    selectionListener="#{bindings.DynamicVO.collectionModel.makeCurrent}"
    rowSelection="single" id="t1">
    <af:forEach items="#{bindings.DynamicVOIterator.attributeDefs}" var="def">
    <af:column headerText="#{def.name}" sortable="true"
    rendered="#{bindings[def.name].hints[def.name].displayHint!='Hide'}"
    sortProperty="#{def.name}" id="c1">
    <af:outputText value="#{row[def.name]}" id="ot1"/>
    </af:column>
    </af:forEach>
    </af:table>
    and in Pagedef:
    <executables>
    <variableIterator id="variables"/>
    <iterator Binds="DynamicVO" DataControl="AppModuleDataControl"
    id="DynamicVOIterator"/>
    </executables>
    <bindings>
    <tree IterBinding="DynamicVOIterator" id="DynamicVO">
    <nodeDefinition Name="Dummy"></nodeDefinition>
    </tree>
    </bindings>
    but iam not getting the entire columns to be hidden.
    EmpoyeeID FirstName Lastname
    100 King
    101 Kochhar
    i firstname column to be hidden.
    Reg
    vini

Maybe you are looking for

  • Reg: While running  SGEN transaction code

    Dear All, In my system 4.7 verison  is there.When i am running every transaction code i am getting ABAP dump error. So that i am running the transaction code SGEN . Once i  run that transaction code i  got the process 5 %  completed like that. That t

  • Used Macbook Pro 2013 - iLife for free?

    I want to buy a used Macbook Pro late 2013. Can I download  iLife and iWork for free?

  • Scripts to identify small tables for keep pool

    I'm sorry for the double posting... seems my browser messed up and I didn't realize it posted already. Edited by: ji li on Dec 6, 2012 8:40 AM

  • Universe Design with same connection

    Hello, I am creating universe against the connection for SAP BW system, once I have created a connection and selected a cube or query and built a universe on top of it....If I go back and create a new universe and this time change the connection to p

  • JVM exit on connect

    Hello. I'm having an issue where something with my connections get corrupted and it kills my sql developer. If I reinstall SQL Developer and recreate (not import) the connection it will work again. Upon inspecting the exported connections, I noticed