H:dataTable to display in column or tiled fashion?

Hi experts,
Is there a way to make an h:dataTable (or is there another standard tag that exists) display data in a column-major fashion, or better yet, tiled version?
Thanks,
Eric.

Hi,
Kindly check the below links.. hope this will help you.
Hide table columns in smart form?
Hiding column in table in smartform
Regards,
Booma Ganesan
Edited by: booma ganesan on Apr 28, 2010 4:05 PM

Similar Messages

  • How to display the column names of a table in the output

    Hi,
    I want to display the name of the columns of the table without using literals in a abap report.
    EX: Consider the table KNA1
    KUNNR NAME  ADDRESS
    I want to display the column names in the above fashion without using hardcoded write statements.
    Thanking in anticipation

    You can use this FM <b>DDIF_FIELDINFO_GET</b> It gives you all the names related to fields in a table -:)
    Greetings,
    Blag.

  • How could I display some columns in a JTable?

    Help, please:
    I got a Table data(using AbstractedTableModel), and I can display all rows and columns. How can I just display several columns and all rows? Should I delete some columns from table and fireChanges or what? but I need these columns later. Make sense? any ideas?
    Thanks for any helps.
    Royan

    this worked for me,
    import java.util.*;
    import java.io.*;
    import java.net.URL;
    import java.sql.*;
    import javax.swing.table.*;
    import javax.swing.*;
    public class HideTableColumns
          public HideTableColumns()
          private void initialize()
          DefaultTableModel m = new DefaultTableModel();
          try {
             java.util.Vector data = new java.util.Vector();
             java.util.Vector headers = new java.util.Vector();
             String s = "";
             headers.addElement( "OrderID" );
             headers.addElement( "CustomerID" );
             java.util.Vector datum = null;
             datum = new java.util.Vector();
             s = "OrderID";
             datum.addElement( s );
             s = "CustomerID";
             datum.addElement( s );
             data.addElement( datum );
             m.setDataVector( data, headers );
             for( int r = 0; r < m.getRowCount(); r++ )
                for( int c = 0; c < m.getColumnCount(); c++ )
                s = ( m.getValueAt( r, c ) ).toString();
                System.out.println( s );
          } catch( Exception e ) {
             System.out.println(e.getMessage());
             e.printStackTrace();
          JFrame f = new JFrame();
          JPanel p = (JPanel) f.getContentPane();
          JTable tb = new JTable( m );
          TableColumn col = tb.getColumnModel().getColumn(1);
          col.setPreferredWidth(0);
          col.setMinWidth(0);
          col.setMaxWidth(0);
          p.add( tb );
          f.pack();
          f.show();
          public static void main( String[] args )
          HideTableColumns d1 = new HideTableColumns();
          d1.initialize();
    }

  • Displaying 2 columns in a single column using HTML section of reports.

    Hi Team,
    I have a requirement in which we need to display 2 columns in the same column of OBIEE report. At present we have 2 columns as 2 different columns.
    For example if i have a column A which is used as @A in html section i need the new column to have @A + @B where B is another column in database.
    Can i concatenate 2 columns in a single column ?
    Thanks,
    Ritesh

    first select column 1 and column 2 in criteria.
    go to reaults are add narrater view.
    in narrater view type.
    @1@2[br/]
    set number of rows
    this should work in narrator.
    Edited by: user10615659 on May 20, 2013 4:30 PM

  • In ColumnChart, how to stop displaying small column for zero value?

    I'm trying to create a ColumnChart that does not display a column when the value is zero. The chart currently looks like this:
    This is a stacked column chart with red values representing Faults and green values representing Throughput. Each hour has an explicit value of zero for Faults. I don't want to see any red lines when the value is zero. Is there any way to accomplish this?
    My code looks like this:
    <mx:Script><![CDATA[
         import mx.collections.ArrayCollection;
         [Bindable]
         public var simpleStats:ArrayCollection = new ArrayCollection([
            {Hour:"0:00", Throughput:0, ThroughputThreshold:2000, Faults:0, MaxResponseTime:450, AvgResponseTime:200, MinResponseTime:180,
                 AuthenticationAcceptance:50, AuthenticationRejection:0, AuthorizationAcceptance:50, AuthorizationRejection:0},    
            {Hour:"1:00", Throughput:0, ThroughputThreshold:2000, Faults:0, MaxResponseTime:450, AvgResponseTime:200, MinResponseTime:180,
                 AuthenticationAcceptance:50, AuthenticationRejection:0, AuthorizationAcceptance:50, AuthorizationRejection:0},    
            {Hour:"2:00", Throughput:0, ThroughputThreshold:2000, Faults:0, MaxResponseTime:450, AvgResponseTime:200, MinResponseTime:180,
                 AuthenticationAcceptance:50, AuthenticationRejection:0, AuthorizationAcceptance:50, AuthorizationRejection:0},    
            {Hour:"3:00", Throughput:5, ThroughputThreshold:2000, Faults:0, MaxResponseTime:450, AvgResponseTime:200, MinResponseTime:180,
                 AuthenticationAcceptance:50, AuthenticationRejection:0, AuthorizationAcceptance:50, AuthorizationRejection:0},    
            {Hour:"4:00", Throughput:0, ThroughputThreshold:2000, Faults:0, MaxResponseTime:450, AvgResponseTime:200, MinResponseTime:180,
                 AuthenticationAcceptance:50, AuthenticationRejection:0, AuthorizationAcceptance:50, AuthorizationRejection:0}
      ]]></mx:Script>
                                     <mx:ColumnChart id="trafficChart"
                                        dataProvider="{simpleStats}"
                                        showDataTips="true" width="500" height="100%" seriesFilters="[]"
                                        type="stacked">
                                        <mx:verticalAxis>
                                            <mx:LinearAxis title="Messages" id="a1"/>
                                        </mx:verticalAxis>                                   
                                        <mx:horizontalAxis>
                                           <mx:CategoryAxis
                                                   id="TrafficTimeAxis"
                                                dataProvider="{simpleStats}"
                                                categoryField="Hour"
                                                />
                                        </mx:horizontalAxis>
                                        <mx:horizontalAxisRenderers>
                                            <mx:AxisRenderer axis="{TrafficTimeAxis}" canDropLabels="true"/>                                       
                                        </mx:horizontalAxisRenderers>                                            
                                        <mx:series>                                                                         
                                           <mx:ColumnSeries
                                                yField="Faults"
                                                displayName="Faults"
                                                fill="{sc2}"
                                                stroke="{s2}"
                                                 minHeight="0">
                                           </mx:ColumnSeries>                                                                                                          
                                           <mx:ColumnSeries
                                                yField="Throughput"
                                                displayName="Throughput"
                                                fill="{sc1}"
                                                stroke="{s1}"
                                                minHeight="0">
                                            </mx:ColumnSeries>                                      
                                        </mx:series>
                                     </mx:ColumnChart>

    Answered my own question!!
    The solution is to set the stroke for the ColumnSeries to {noStroke}, which I defined like this:
        <mx:Stroke id="noStroke" color="0xFFFFFF" weight="0"/>
    Note that if you define {noStroke} without a color property, black is used by default, which means that those columns that do appear show up in black stroke outline.
    If there's a more elegant solution to the problem, please let me know...

  • Display query columns in horizontal

    Hi all
    I'm creating a report using sql commands only(no report builder). I'd like to have my columns to be displayed in horizontal followed by its value. So far I've made it, however I can't get them to be displayed well where all the columns are in the same position as well as the results.
                     HECS:Higher Education Cafetaria Service
                                  Restaurant and Bar
    Membership Report
    Date:DateVar
         Member ID:        11
         Member Name:Donald Anatidae                      Position:Senior Lecturer
         Institution Name:UVan                  Department:Department of Computers
         Phone:03-6355-9876                                     Employment:Tenured
         Annual Fee:   $225.25                              Monthly Fee:     $1.88
         GST:    $22.53                                             GST:    $20.65
         Annual Fee|(including GST):   $247.Monthly Fee|(including GST):    $20.65
    -- Declaring variables
    COLUMN Date NOPRINT NEW_VALUE DateVar
    COLUMN ID NOPRINT NEW_VALUE IDVar
    COLUMN Name NOPRINT NEW_VALUE NameVar
    COLUMN Department NOPRINT NEW_VALUE DepartVar
    COLUMN Phone NOPRINT NEW_VALUE PhoneVar
    COLUMN Institution NOPRINT NEW_VALUE InstiVar
    COLUMN Position NOPRINT NEW_VALUE PosVar
    COLUMN Employment NOPRINT NEW_VALUE EmployVar
    COLUMN Annual_Fee NOPRINT NEW_VALUE AnnualVar
    COLUMN GST NOPRINT NEW_VALUE AGSTVar
    COLUMN Annual_GST NOPRINT NEW_VALUE AnnuaGSTVar
    COLUMN M_GST NOPRINT NEW_VALUE MgstVar
    COLUMN Month_Fee NOPRINT NEW_VALUE MonthFeeVar
    COLUMN Monthy_Gst NOPRINT NEW_VALUE MonthGstVar
    BREAK ON ID SKIP Page
    TTITLE CENTER 'HECS:Higher Education Cafetaria Service' SKIP 1 -
           CENTER 'Restaurant and Bar' SKIP 2 -
           LEFT 'Membership Report' SKIP 2 -
           LEFT 'Date:'DateVar SKIP 2 -
           LEFT COL 6 'Member ID:'IDVar SKIP 1 -
           LEFT ------------------------------------------------------------------------------ SKIP 1 -
           LEFT COL 6 'Member Name:' NameVar RIGHT 'Position:' PosVar SKIP 1-
           LEFT COL 6 'Institution Name:'InstiVar COL 15 RIGHT 'Department:'DepartVar SKIP 1 -
           LEFT COL 6 'Phone:'PhoneVar COL 15 RIGHT 'Employment:' EmployVar SKIP 1 -
           LEFT COL 6 'Annual Fee:'FORMAT $9,990.99 AnnualVar  -
           RIGHT 'Monthly Fee:'FORMAT $9,990.99 MonthFeeVar SKIP 1 -
           LEFT  COL 6 'GST:'FORMAT $9,990.99 AGSTVar  -
           RIGHT 'GST:'FORMAT $9,990.99 MonthGstVar SKIP 1 -
           LEFT ------------------------------------------------------------------------------ SKIP 1 -
           LEFT COL 6 'Annual Fee|(including GST):'FORMAT $9,990.99 AnnuaGSTVar  -
           RIGHT 'Monthly Fee|(including GST):'FORMAT $9,990.99 MonthGstVar  SKIP 1 -
           LEFT -------------------------------------------------------------------------------
    [\pre]
    I'd like to know is whether there is another way to display the columns in horizontal.
    Thanx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    He gave you the general idea. The following takes it a step further.
    scott@ORA92> CLEAR  COLUMNS
    scott@ORA92> TTITLE OFF
    scott@ORA92> COLUMN today NEW_VALUE DateVar
    scott@ORA92> SELECT SYSDATE AS today FROM DUAL
      2  /
    TODAY
    17-APR-2006
    scott@ORA92> TTITLE CENTER 'HECS: Higher Education Cafetaria Service' SKIP 1 -
         CENTER 'Restaurant and Bar' SKIP 2scott@ORA92> COLUMN membership_report HEADING 'Membership Report||Date: &DateVar|'
    scott@ORA92> SELECT    'Member ID:   ' || e.empno
      2           || CHR(10)
      3           || '-------------------------------------------------------------'
      4           || CHR(10)
      5           || 'Member Name: ' || RPAD (e.ename, 20)  || 'Position:    ' || e.job
      6           || CHR(10)
      7           || 'Institution: ' || RPAD (d.deptno, 20) || 'Department:  ' || d.dname
      8           || CHR(10)
      9           || 'Salary:      ' || RPAD (TO_CHAR (e.sal, '$9,990.99'), 20)
    10           || 'Commission:  ' || TO_CHAR (e.comm, '$9,990.99')
    11           || CHR(10)
    12           || '-------------------------------------------------------------'
    13           || CHR(10)
    14           || 'Annual Fee:  ' || RPAD (TO_CHAR (e.sal, '$9,990.99'), 20)
    15           || 'Monthly Fee: ' || (TO_CHAR (e.sal/12, '$9,990.99'))
    16           || CHR(10)
    17           || '-------------------------------------------------------------'
    18           || CHR(10)
    19           || CHR(10)
    20           AS membership_report
    21  FROM   emp e, dept d
    22  WHERE  e.deptno = d.deptno
    23  /
                                  HECS: Higher Education Cafetaria Service
                                             Restaurant and Bar
    Membership Report
    Date: 17-APR-2006
    Member ID:   7369
    Member Name: SMITH               Position:    CLERK
    Institution: 20                  Department:  RESEARCH
    Salary:         $800.00          Commission:
    Annual Fee:     $800.00          Monthly Fee:     $66.67
    Member ID:   7499
    Member Name: ALLEN               Position:    SALESMAN
    Institution: 30                  Department:  SALES
    Salary:       $1,600.00          Commission:     $300.00
    Annual Fee:   $1,600.00          Monthly Fee:    $133.33
    Member ID:   7521
    Member Name: WARD                Position:    SALESMAN
    Institution: 30                  Department:  SALES
    Salary:       $1,250.00          Commission:     $500.00
    Annual Fee:   $1,250.00          Monthly Fee:    $104.17
    Member ID:   7566
    Member Name: JONES               Position:    MANAGER
    Institution: 20                  Department:  RESEARCH
    Salary:       $2,975.00          Commission:
    Annual Fee:   $2,975.00          Monthly Fee:    $247.92
    Member ID:   7654
    Member Name: MARTIN              Position:    SALESMAN
    Institution: 30                  Department:  SALES
    Salary:       $1,250.00          Commission:   $1,400.00
    Annual Fee:   $1,250.00          Monthly Fee:    $104.17
    Member ID:   7698
    Member Name: BLAKE               Position:    MANAGER
    Institution: 30                  Department:  SALES
    Salary:       $2,850.00          Commission:
    Annual Fee:   $2,850.00          Monthly Fee:    $237.50
    Member ID:   7782
    Member Name: CLARK               Position:    MANAGER
    Institution: 10                  Department:  ACCOUNTING
    Salary:       $2,450.00          Commission:
    Annual Fee:   $2,450.00          Monthly Fee:    $204.17
    Member ID:   7788
    Member Name: SCOTT               Position:    ANALYST
    Institution: 20                  Department:  RESEARCH
    Salary:       $3,000.00          Commission:
    Annual Fee:   $3,000.00          Monthly Fee:    $250.00
    Member ID:   7839
    Member Name: KING                Position:    PRESIDENT
    Institution: 10                  Department:  ACCOUNTING
    Salary:       $5,000.00          Commission:
    Annual Fee:   $5,000.00          Monthly Fee:    $416.67
    Member ID:   7844
    Member Name: TURNER              Position:    SALESMAN
    Institution: 30                  Department:  SALES
    Salary:       $1,500.00          Commission:       $0.00
    Annual Fee:   $1,500.00          Monthly Fee:    $125.00
    Member ID:   7876
    Member Name: ADAMS               Position:    CLERK
    Institution: 20                  Department:  RESEARCH
    Salary:       $1,100.00          Commission:
    Annual Fee:   $1,100.00          Monthly Fee:     $91.67
    Member ID:   7900
    Member Name: JAMES               Position:    CLERK
    Institution: 30                  Department:  SALES
    Salary:         $950.00          Commission:
    Annual Fee:     $950.00          Monthly Fee:     $79.17
    Member ID:   7902
    Member Name: FORD                Position:    ANALYST
    Institution: 20                  Department:  RESEARCH
    Salary:       $3,000.00          Commission:
    Annual Fee:   $3,000.00          Monthly Fee:    $250.00
    Member ID:   7934
    Member Name: MILLER              Position:    CLERK
    Institution: 10                  Department:  ACCOUNTING
    Salary:       $1,300.00          Commission:
    Annual Fee:   $1,300.00          Monthly Fee:    $108.33
    14 rows selected.null

  • Query Report - To display additional column in list selection box.

    Hi,
    There is query report where i want to display the additional column in list selection.
    Below is the system query report, where parameter passed is card code.
    When the cardcode - list selection is clicked system displays 2 columns i.e. Customer Code & No. of Records.
    Now in the same list selection; is it possible to display the customer name along with cardcode only for reference.
    SELECT T0.DocDate, T1.SlpName, T2.Name, T0.DocDueDate, T0.DocNum,    (CASE WHEN T0.DocStatus = 'O' THEN 'Open' ELSE 'Closed' END) AS Status,    T0.DocTotal FROM OQUT T0 LEFT JOIN OSLP T1    ON T0.SlpCode = T1.SlpCode LEFT JOIN OCPR T2 ON T0.CntctCode = T2.CntctCode WHERE T0.CardCode = N'[%0]'    ORDER BY T0.DocNum DESC
    Kindly let me know the details.
    Thanks & Regards,
    Yogesh Jadav

    Hi Yogesh Jadav,
    The answer is NO.  You may only display either code or name but not both.
    Thanks,
    Gordon

  • How to display the column header in two rows?

    Hi Experts,
    I am using ALV_LIST_DISPLAY i neeed to display the column header in two rows.. How can i do that?
    Ex: purchase order i  need to display "purchase" in one row and "order" in second row.
    Thanks in advance,
    Sarath.j

    REPORT zpwtest .
    TYPE-POOLS slis .
    DATA : layout TYPE slis_layout_alv .
    CONSTANTS : c_len TYPE i VALUE 20 .
    TYPES : BEGIN OF ty_t100          ,
              sprsl TYPE t100-sprsl   ,
              arbgb TYPE t100-arbgb   ,
              msgnr TYPE t100-msgnr   ,
              text  TYPE t100-text    ,
              fline TYPE t100-text    ,
            END OF ty_t100            .
    TYPES : BEGIN OF ty_wrd   ,
             text TYPE char20 ,
            END OF ty_wrd     .
    DATA : it_t100     TYPE TABLE OF ty_t100 ,
           it_sentence TYPE TABLE OF ty_wrd  ,
           wa_t100     TYPE ty_t100          ,
           wa_word     TYPE ty_wrd           ,
           v_repid     TYPE syst-repid       ,
           v_tabix     TYPE syst-tabix       .
    DATA : it_fld TYPE slis_t_fieldcat_alv ,
           it_evt TYPE slis_t_event        ,
           wa_fld TYPE slis_fieldcat_alv   ,
           wa_evt TYPE slis_alv_event      .
    INITIALIZATION .
      v_repid = sy-repid .
    START-OF-SELECTION .
    * Get data
      SELECT *
        INTO TABLE it_t100
        FROM t100
       WHERE sprsl = 'EN'
         AND arbgb = '00' .
      LOOP AT it_t100 INTO wa_t100 .
        v_tabix = sy-tabix .
        CLEAR : it_sentence .
        CALL FUNCTION 'RKD_WORD_WRAP'
             EXPORTING
                  textline  = wa_t100-text
                  outputlen = c_len
             TABLES
                  out_lines = it_sentence.
        IF NOT it_sentence IS INITIAL .
          READ TABLE it_sentence INTO wa_word INDEX 1 .
          wa_t100-fline = wa_word-text .
          MODIFY it_t100 FROM wa_t100 INDEX v_tabix .
        ENDIF.
      ENDLOOP.
    * Prepare fieldcatelog
      CLEAR wa_fld .
      wa_fld-fieldname = 'SPRSL' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'SPRSL' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'ARBGB' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'ARBGB' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'MSGNR' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'MSGNR' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'FLINE' .
      wa_fld-inttype      = 'CHAR' .
      wa_fld-outputlen = 20 .
      wa_fld-intlen    = 20.
      wa_fld-seltext_l = 'Text' .
      wa_fld-ddictxt = 'L' .
      APPEND wa_fld TO it_fld .
    * Get event.. we will handle BOFORE and AFTER line output
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           IMPORTING
                et_events = it_evt.
      READ TABLE it_evt INTO wa_evt
      WITH KEY name = slis_ev_after_line_output .
      wa_evt-form = slis_ev_after_line_output .
      MODIFY it_evt FROM wa_evt INDEX sy-tabix .
      READ TABLE it_evt INTO wa_evt
      WITH KEY name = slis_ev_top_of_page .
      wa_evt-form = slis_ev_top_of_page .
      MODIFY it_evt FROM wa_evt INDEX sy-tabix .
      layout-no_colhead = 'X' .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                i_callback_program = v_repid
                it_fieldcat        = it_fld
                is_layout          = layout
                it_events          = it_evt
           TABLES
                t_outtab           = it_t100.
    *       FORM top_of_page                                              *
    FORM top_of_page .
        uline .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line1'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line2'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line3'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
    ENDFORM.
    *       FORM AFTER_LINE_OUTPUT                                        *
    FORM after_line_output   USING rs_lineinfo TYPE slis_lineinfo .
      CLEAR : it_sentence ,
              wa_t100     .
      READ TABLE it_t100 INTO wa_t100 INDEX rs_lineinfo-tabindex .
      CHECK sy-subrc = 0 .
      CALL FUNCTION 'RKD_WORD_WRAP'
           EXPORTING
                textline  = wa_t100-text
                outputlen = c_len
           TABLES
                out_lines = it_sentence.
      DESCRIBE TABLE it_sentence LINES v_tabix .
      CHECK v_tabix > 1 .
      LOOP AT it_sentence INTO wa_word FROM 2 .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               31 sy-vline    ,
               37 sy-vline    ,
               38 wa_word-text ,
               58 sy-vline .
      ENDLOOP.
    ENDFORM .

  • How to display nodestamp column in ApplicationsTreeTable -ViewMenu- Columns

    I have ApplicationsTree table on my UI screen with the columns ex: col1, col2, col3, col4.
    col1 is inside node stamp.
    col1 is not displaying under View Menu -> Columns.
    How can I display nodestamp column in ViewMenu -> Columns?
    Thanks,
    Swathi

    select a column, then use the contextual menu for the column and select "Add Column Before" or "Add Column After"
    you can also highlight a column then use the key combination:
    <option> + <right arrow> to add a column after (or to the right) and
    <option> + <left arrow> to add a column before (or to the left)

  • Display mutiple columns in a drop down

    Has anyone found a way to display multiple columns in a drop down field? For example, I want to populate my drop down with an ID type field and associated DESCRIPTION1, DESCRIPTION2, DESCRIPTION3 and DESCRIPTION4 fields:
    10100101 EXTERNAL COMBUSTION BOILERS ELECTRIC GENERATION ANTHRACITE COAL PULVERIZED COAL
    10100102 EXTERNAL COMBUSTION BOILERS ELECTRIC GENERATION ANTHRACITE COAL TRAVELING GRATE (OVERFEED) STOKER
    This was possible in Form Designer 5 - you could add one to many columns in a drop down and choose which columns to display, set a column width, and choose which column was the "text" property and which was the "value" property of the drop down. For example, in my sample above the text "ANTHRACITE COAL TRAVELING GRATE (OVERFEED) STOKER" would display in the drop down and the value "10100102" would be saved as the value.

    The closest you can come is, taking from your example, you add the item "ANTRACITE COAL TRAVELING GRATE (OVERFEED) STOKER" to your drop down. Then in the binding tab you give that item the value "10100102".
    Chris
    Adobe Enterprise Developer Support

  • Displaying the column names in a spreadsheet

    Hello All,
    I am downloading data from SAP into a spreadsheet using the FM MS_EXCEL_OLE_STANDARD_DAT. The data is coming fine.
    But I need to display the column names too in the spreadsheet. Could anyone please tell me how to do that.
    Thanks in advance.
    Regards
    Indrajit

    Hi Pawan,
    I am using the following piece of code.
    TYPES:  BEGIN OF ty_fieldname,
                     text(20) TYPE c,
                  END OF ty_fieldname.
    DATA: gs_fieldname TYPE ty_fieldname.
               gt_fieldname TYPE STANDARD TABLE OF ty_fieldname.
    gs_fieldname-text = 'Material'.
    APPEND gs_fieldname TO gt_fieldname.
    gs_fieldname-text = 'Ad Size'.
    APPEND gs_fieldname TO gt_fieldname.
    gs_fieldname-text = 'Classification Group'.
    APPEND gs_fieldname TO gt_fieldname.
    gs_fieldname-text = 'Old Ceiling'.
    APPEND gs_fieldname TO gt_fieldname.
    gs_fieldname-text = 'Message Type'.
    APPEND gs_fieldname TO gt_fieldname.
    gs_fieldname-text = 'Message'.
    APPEND gs_fieldname TO gt_fieldname.
    CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
          EXPORTING
            file_name                 = p_file
            data_sheet_name           = text-014
          TABLES
            data_tab                  = gt_rate
            fieldnames                = gt_fieldname
          EXCEPTIONS
            file_not_exist            = 1
            filename_expected         = 2
            communication_error       = 3
            ole_object_method_error   = 4
            ole_object_property_error = 5
            invalid_pivot_fields      = 6
            download_problem          = 7
            OTHERS                    = 8.
    I am getting a short dump on this which says -
    "Only flat, character-type data objects are supported at the argument    
    position "dest" for the statement                                       
      "WRITE src TO dest".                                                                 
    In this case, the operand "dest" has the non-character-type or deep type
    "P". The current program is flagged as a Unicode program. In the Unicode
    context, type X fields are seen as non-character-type, as are          
    structures that contain non-character-type components."                  
    Indrajit

  • NEED TO DISPLAY A COLUMN as HYPERLINK IN discoverer viewer 10g

    Hi Guys,
    We have a requirement from the customer and the requirement goes like this ::
    We have a table in database which has a column which stores the link as VARCHAR.. For example, it has a value https://www.google.com as varchar in database.
    We are pulling reports from this database through Discoverer Viewer 10g. While displaying this column in Discoverer Viewer, it should display it as Hyperlink so that as soon as customer clicks on that , it will open the corresponding page in a new browser window.
    Customers have invoice images which they want to see by navigating through that link.
    Your quick help is highly appreciated..
    Thanks !!!!

    Hi
    Oracle added Drill Link to Internet URL functionality in Discoverer 10gR2 which allows a data item to behave as a hyperlink in Discoverer Plus and Viewer. To use this functionality, a user must open a workbook in Discoverer Plus 10gR2 and add a Drill Link to Internet URL to a column. For more on Drill Link to Internet URL, refer to the Oracle Business Intelligence Discoverer Plus User’s Guide – 10g Release 2, Chapter 10, “How to create drill links to Internet URLs”.
    When such a drill link is added to a column in Discoverer Plus 10gR2, the column does seem not retain its hyperlink functionality when called within a Discoverer portlet in Portal. This bug was acknowledged by Oracle as bug # 4969310. This is supposed to be fixed in the 11g Portal.
    Does this help?
    Best wishes
    Michael

  • Displaying dynamic columns in the query output.

    Hello,
    Depending on current quarter output of the query would vary.
    If current quarter is 'Q1'
    O/p : InvQ1  Del  BackQ1  BackQ2  BackQ3  BackQ4
    If current quarter is 'Q2'
    O/p : InvQ1  InvQ2  Del  BackQ2  BackQ3  BackQ4
    If current quarter is 'Q3'
    O/p : InvQ1  InvQ2  InvQ3  Del  BackQ3  BackQ4
    If current quarter is 'Q4'
    O/p : InvQ1  InvQ2  InvQ3  InvQ4  Del  BackQ4
    So, out of 9 columns, 6 columns would display at any given time depending on the current quarter.
    Invoice of 4 quarters, Deliquency and Backlog of 4 quarters.
    I am not getting any way how to display dynamic columns or hide unwanted/blank columns.
    For the time being I have added all 9 columns in the query, and in the output unwanted columns shows blank.
    Can anybody please suggest me how to display only 6 columns in the output depending on current quarter.
    Thanks and Regards
    Shilpa

    Hello,
    This shouldn't be too difficult. Assuming you have a variable with the selected quarter, you may choose to display Inv (whatever that is) for quarters 1 through variable, Del, and Back for quarters variable through 4. You also need a drilldown on quarter in the columns (after the key figure structure). You would probably need to restrict 'Del' on the variable as well if you haven't already done it.
    Best regards,
    Christoffer

  • How to Display 10 columns in first page,next columns in second page in smartforms in sap.

    In internal table having 30 columns of data.
    i have to display like
    first 10 columns in first page with page no :1
    second 10 columns in second page with page no :2
    third 10 columns in second page with page no :3
    how to develop this.
    please how develop this in smartforms .
    please help .

    Hi,
    You dont have to divide the data.
    You must be using TABLE node in your smartform to display the table.
    Copy the node 2 times more so that the total table nodes become 3.
    Now, change the headings in each table according to the column you want to display.
    Change the fields of the workarea in the ITEM lines accordingly.
    Add a COMMAND node after each table and set it to go to next page.
    E.G :
    Suppose I have a table with 6 columns and I need to display 2 columns in a table then page break.
    Work area name is WA.
    Then first table will have headings : FIELD1 FIELD2
    Items will have field     :     WA-FIELD1 WA_FIELD2
    COMMAND NODE : Go to Next Page
    Second table will have heading : FIELD3 FIELD4
    Items will have field     :     WA-FIELD3 WA_FIELD4
    COMMAND NODE : Go to Next Page
    Third table will have heading : FIELD5 FIELD6
    Items will have field     :     WA-FIELD5 WA_FIELD6
    So, same table with same work area will be used 3 times, displaying different set of columns in each TABLE node.
    Regards,
    Ashish

  • In Requestor POWL, Shopping cart Related/Follow on documents should display as columns in POWL Table

    Hello Experts,
    Currently we are in SRM 7.02 implementation, for this we got requirement like below.
    In Requestor POWL, Shopping cart related/follow on documents should display as columns in POWL. Please suggest me on this, how can i achieve this requirement. Thanks in advance.
    1. we have Related/Follow on documents as shown in below screenshot.
    2. As shown in above screenshot, these related/follow-on documents should show as columns in requestor POWL, as shown in below screenshot.
    Thanks & Regards
    Sivaram.

    Hi Siva,
    Take a look at the last part of the following document.
    http://scn.sap.com/docs/DOC-25692
    Regards,
    Lisandro

Maybe you are looking for