Longitudinal table allignment with out column heads

I need a table should be popup in the new window but without column heads but it consists all the columns one under one in a single column and the corresponding values are in the next column.
Requirement:
I have a page consists a table with columns "Acc No, service No, Bill Amt, Older Bills". This older bills column consists a button in its column.
When ever we click on the button the "Older Bills" page have to be opened with a table automatically populated the Acc No, Service No, 1st mont bill, 2nd month bill, 3rd month bill.All these colums are to be shown in a single column but the values should be shown in the next column.

Pop up window>> Several old threads which will tell u approach for js window.
I need a table should be popup in the new window but without column heads
>>You can give column header promt as null.
Requirement:
I have a page consists a table with columns "Acc No, service No, Bill Amt, Older Bills". This older bills column consists a button in its column.
When ever we click on the button the "Older Bills" page have to be opened with a table automatically populated the Acc No, Service No, 1st mont bill, 2nd month bill, 3rd month bill.All these colums are to be shown in a single column but the values should be shown in the next column.
>>Have same AM for pop up and base page, so that VO state is shared. In pop up page.... u need to get values from one VO and build another longitudinal table VO .
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Piot table customized grouping of column header

    Dear Friends.
    I have a requirement from the client. I have 4 measures with the column heading A,B,C,D year wise
    Now my requirment in I want to add header on top of the A,B,C,D column, Say X and Y.
    Under X - A,B and under Y-C,d will be grouped.
    .......X.....!.....Y........
    .....A..B...!...C..D......
    Please suggest how to do this in 11g.
    thanks nd regards
    fiaz

    Hi Ian,
    You can't directly set the alignment of column headers or data. The way it works is that you can specify a columnFormat inside your column for example:
    <columnFormat columnDataFormat="iconButtonFormat"/>
    And then UIX will decide how to align the header and data in teh column for that type of data. I don't believe there is a way to control the alignment of the column header independently of the columnDataFormat.

  • Dynamic table  with  multilevel  column header

    Hi all ,
    Can u please tell me how to create dynamic internal table and display which has two level column header using alv.
    For example : |  amount   | year | Month     |
    in $
    in #
    oct
    nov
    Thanks in advance ,
    SA

    Hi SA,
    For your first question - Creating dynamic table refer code below...
    PARAMETERS: p_input TYPE i OBLIGATORY.
    START-OF-SELECTION.
    DATA: v_fieldname TYPE char30.
    DATA: v_char TYPE numc4.
    DATA: it_fldcat TYPE lvc_t_fcat.
    DATA: wa_it_fldcat LIKE LINE OF it_fldcat.
    DATA: gp_table TYPE REF TO data.
    FIELD-SYMBOLS: <gt_table> TYPE table.
    DO p_input TIMES.
    v_fieldname = 'COL'.
    v_char = sy-index.
    CONCATENATE v_fieldname v_char INTO v_fieldname.
    CONDENSE v_fieldname.
    CLEAR wa_it_fldcat.
    wa_it_fldcat-fieldname = v_fieldname.
    wa_it_fldcat-datatype = 'CHAR'.
    wa_it_fldcat-outputlen = 5.
    wa_it_fldcat-intlen = 5.
    APPEND wa_it_fldcat TO it_fldcat .
    ENDDO.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING it_fieldcatalog = it_fldcat
    IMPORTING ep_table = gp_table.
    ASSIGN gp_table->* TO <gt_table>.
    Now you can use <gt_table> ..
    2. It is not possible to have multiple format column for ALV..
    Hope this solves ur prob..
    Enjoy SAP.
    Pankaj Singh.

  • Simple 9 column table with a column header

    I have looked for hours at the docs for creating a scrollable table. I think what I want is so simple, that the complexity of the docs overwhelms me. I need a jTable that once is fills over 8 rows, it begins to scroll. The table then is 9 columns wide by 8 rows in height. Each of the 9 columns are not the same size. Can anyone get me started with creating this ??? Sorry, I have no duke $$. :o(

    I actually had to change a few things. The latest code is a follows:
    My vertical lines appeared when I added the row,col(8,9) in the DefaultTableModel. And when I did that, the model.add... actually produced 18 columns, so I had to change to "model.setColumnIdentifiers()" to fix that. So the only part is the centered headers. That's gotta be Netbeans. I'm using jBuilder 2005. Thanks for your input. I'm almost there. :o)
    int columnWidths[] = {24,27,115,30,40,33,46,46,25};
    String columnIDs[] = {"Trans #","Ticket","Transaction Code","Gallons",
                            "Price","Variance","Charge Amt","Credit Amt","Age"};
    DefaultTableModel model = new DefaultTableModel(8,9);
      JTable jTable1 = new JTable(model);
    jTable1.setFont(new java.awt.Font("Courier New", Font.PLAIN, 13));
        jTable1.setPreferredSize(new Dimension(620, 160));
        jTable1.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        jTable1.setShowHorizontalLines(false);
        model.setColumnIdentifiers(columnIDs);
        for( int j = 0; j < 9; j++ ) {
          TableColumn col = jTable1.getColumnModel().getColumn(j);
          col.setPreferredWidth(columnWidths[j]);
        jScrollPane1.setHorizontalScrollBarPolicy(JScrollPane.
                                                  HORIZONTAL_SCROLLBAR_NEVER);

  • Interactive Report With No Column Heading

    Is it possible to display a column with no heading (label) in an interactive report ?
    I have tried to delete the column heading and save, but when I run the report,
    it is still there
    Cheers
    Gus

    Gus,
    Try a space character or &#38;nbsp;
    Vikram

  • How To Create Table View With Same Column name But Different Table?

    Hi All,
    I have the problem to create a tableview with same column name but in different table.
    The Table that i have:-
    Table - PAC051MPROFORMA
    Column - mrn,visitid
    Table - PAC051TPROFORMA
    Column - mrn,visitid
    Table - PAC052MTRANSBILL
    Column - mrn,visitid
    Then i want to create a table view to view that table. This is my SQL
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    That SQL Return this error = ORA-00957: duplicate column name
    Then I modify that SQL to
    CREATE VIEW pacviewproforma (mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    This time this error return = ORA-01730: invalid number of column names specified
    What should i do?
    Thanks...

    Hi,
    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    ERROR at line 1:
    ORA-00957: duplicate column namePlease give different names to each column.
    Something like this..
    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    View created.
    SQL> DESC  pacviewproforma;
    Name                                      Null?    Type
    MPROFORMA_MRN                                      NUMBER
    MPROFORMA_VISITID                                  NUMBER
    TPROFORMA_MRN                                      NUMBER
    TPROFORMA_VISITID                                  NUMBER
    MTRANSBILL_MRN                                     NUMBER
    MTRANSBILL_VISITID                                 NUMBER
    ORA-01730: invalid number of column names specifiedThe list of column nmae you specified during the CREATE VIEW should match with the SELECT list of the view.
    Twinkle

  • Updating table T030H with out using a transport.

    Is there a way that we can open the table T030H only.  We would like to give our accounting department the ability to use the tcode OBA1 with out having to have the client open.  We tried allowing updates to the table T030H in our production system with out having the entire client open for updates.  
    We could not figure out a way to allow  the tocode OBA1 to work with out having our entire client open

    Hi,
    Note:356483 can help you solve this issue!
    The object is 'F30' in T-cd:SOBJ ->tick flag of "Current setting", select 'no transport' in transport field.
    Please keep in mind that besides tran. OBA1, this flag will affect other transactions linked to this object F30. i.e. OB30,
    OB40, OB53, OB89, OB00,  OBBT...(they all use dialog 'RF_TABELLE_030').  In other words,  you will not only open OBA1, but also other transactions mentioned here, in the production system.
    Best Regards,
    Gladys xing

  • Apex form based on a table problems with ID column

    Hi all,
    Am going round and round in circles trying to get this to work and i'm not getting anywhere fast.
    Trying to get a form to process an single row insert into a table.
    Using Automatic Row Processing to insert, the pk column page item is hidden and protected.
    I would like to put the source of the PK (hidden and protected) item to be the next value of my sequence:
    CREATE SEQUENCE   "MODULEFEEDBACKID_SEQ"  MINVALUE 1 MAXVALUE 99999 INCREMENT BY 1 START WITH 196 NOCACHE  NOORDER  NOCYCLE
    /But I can't manage to get it to work.. every time i try to submit the page it just says "ORA-01400: cannot insert NULL into ( table )"
    Any ideas?!
    Thanks in advance
    Ashleigh

    when you create the form you said that the sequence is associated to pk? i think not
    then you can create a trigger that set the pk and in the mru return the value of the pk to the item associated with the pk
    or recreate the form with wizard and set the sequence to the pk there

  • Error importing table metadata with quoted column names

    Hey folks,
    I have a strange problem with the table metadata import wizard. It refuses to import column names that are quoted. I am using OWB 11.1.0.6 on Oracle 11g/Linux
    For example, given this table
    create table mytest (id integer, "Name" varchar2(50))
    OWB imports the ID column just fine but chokes on the "Name" column ("Created with second class object failure").
    However if I define the table as
    create table mytest (id integer, Name varchar2(50))
    everything goes smoothly. Does anyone know if this is a bug or a feature? Can't find any information on this, and it's highly annoying as I'm importing definitions of automatically generated tables that contain tons of these quoted column names :(.
    I appreciate your help!!
    Thanks,
    Stefan

    I noticed that myself in our project.
    Our varchars2 are defined as VARCHAR2(xxx CHAR) - OWB puts the size*4
    In fact if you have special characters like umlauts (ü,ä,ö,...) it will use 4 bytes per character.
    You can try it yourself. Define a Varchar2(1 CHAR) and manually change the size of the Column in your mapping inside OWB (in filters, joins or your target table).
    Then shoot an umlaut through the mapping and will end up with a "too small" error.
    Dont mind the size*4 issue - we totally ignored it and run without error since 4 years now.

  • Copy table structure with default column values

    Hi....
    I created a table by copying another table structure by using below query.....
    SQL> CREATE TABLE SAMPLE_TEMP AS SELECT * FROM SAMPLE WHERE 1=2;
    But my problem is " the default column values are not copied to new table"
    Suggest a query like that it should " copy a table structure and default values on columns "
    Thanks in advance

    hi,
    One more option would be "dbms_redefinition' - it would work as per your requirement.
    refer further to documentation : http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_redefi.htm
    - Pavan Kumar N

  • What allows your clips to be alligned with the play head in FCP

    Whats that shortcut key if you hold shift or something it will allign your clips together? I am having to make copies of the audio and then allign them with the original and it is slightly off and it is a pain going in and making sure their perfectly alligned! HELP!

    Select the audio,
    Then press option (in order to COPY) and Click drag on the clip.
    And then WHILE DRAGGING release Option and PRESS SHIFT (which makes sure you will not shift in time)
    Drag to desired track (you'll see a yellow notification stating: 00:00:00, to show you how much you shifted compared to the original, so '0' in this case).
    Release mouse, release Shift.
    Done
    Rienk

  • Is there any way to get tables data with out having backup.

    Hi !
    my tnslistner is not working that is why i am not able to login in my database
    so i have planned to reinstall it and if posible get my database back from old files.
    i do not have backup,
    is there any way to get tables and data back.
    yours sincerely

    the out put of the sqlplus/ as sysdba is as followes
    Error 6 initializing sql*plus
    sp2-0667: message file sp1<lang>.msb not found
    sp2-0750: you may need to set ORACLE_HOOME to your oracle software directory
    the listener.ora at
    C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    yours sincerely

  • Table maintanance with out asking request

    Dear Experts,
    Please provide me one suggestion for me, that here one functional person wants 
    Set the tableu2019s t558B and t558C to be enabled to be maintained without a request. For in (Dev)
    Here in sm30 it is maintained and I did not get that what he wants exactly and how can I solve that please solve this issue
    Regards

    Hi,
    You can change the client settings in SCC4 such that no transports (4th option in the section cahnge and transport for client specific objects) are created during any maintenance.
    But this is not a good practise as u need to do the same in all the systems in ur landscape for doing the same changes. It is always good to have the TR created as we can move the TR's to other systems and hence all the systems in the landscape will remain shyncronised.
    Regards,
    Varadharajan M

  • Internal Table to Excel with Column Header line

    Hello everyone,
    I need to download Internal table data to excel with a column header line.
    My Code is as follows:
    TYPES:  BEGIN OF y_hdr,
            head(30) TYPE c,
            END OF y_hdr.
    Data:  t_hdr TYPE STANDARD TABLE OF y_hdr.
    Fill internal table t_adrcdata
    fill the header table t_hdr
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename                      = C:\test.xls
            filetype                        = 'DBF'
        IMPORTING
          TABLES
            data_tab                        =  t_adrcdata
           fieldnames                       =  t_hdr
         EXCEPTIONS
           file_write_error                = 1
           no_batch                        = 2
    This code gives me a row with column headers.
    However they are all truncated after 10 chars.
    The truncation is independent of column data length. Data could be of length 2,5 or 40 but the header always displays upto 10 chars.
    Keeping the filename as test.xls, when I download it in ASC format instead of DBF the headers are of proper length.
    What could I be doing wrong?
    I know this topic has been discussed before but my question is pertaining to DBF Format download. The reason I chose DBF format is because it downloads the data in DB format and does not give in to Excel formatting.
    FOr example in ASC format:
    1, A field of type Char(12) used to get downloaded into excel without the leading zeros. 000012345678 --> 12345678
    2. Date in format dd-MMM-yyyy in a char(11) field used to get downloaded to excel in dd-MMM-yy format.
    When I chose DBF, this issue was resolved. However, the column headers got truncated at 10 chars.
    Please feel free to recommend any other way of downloading to Excel and preserving format if this method is incorrect/ there is a better way.

    Hi,
    Take 'ASC' format for file type.
    But when you declare your internal table to pass for FM you have to create all the fields with char.
    Example:
    data: begin of it_exl occurs 0,
            bukrs(04) type c,
            belnr(10) type c,
            buzei(03) type c,
    end of ut_exl.
    You need to manipulate your date format and other stuff before appending to this internal table.
    Thanks,
    Deepak.

  • Download alv report output to excel format with out header line

    Hi experts,
    i want to download a alv report output into excel formatt with out the header line but it has to download including field description. as this output will fed into another transaction, the downloaded excel file should be with out header line.
    fro eg:
    Report   : Zabc                      ABAP Development          Page  :     1
    Run Date : 12/14/06                                                     System: UD400 
    Run Time : 08:45:37
    this header details should not be downloaded into the excel file.
    could somebody help me please.
    thanks
    deepu

    hi jayanti,
    thanks for your response.
    i have delclared all the field types as character but still it is not downloading and it 's sy-subrc is 4... the code is as below.
    *field names
      lt_fieldnames-value = 'Material Number'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Plant'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Group'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Description'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'UOM'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Price Unit'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Material Type'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'X-Plant Status'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Valuation Class'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_avmng.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_avntp.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Latest PO Qty'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Latest PO Cost'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'PO Creation Date'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_fcaqt.
      APPEND lt_fieldnames.
      lt_fieldnames-value = 'Prev. Yr. Std. Cost'.
      APPEND lt_fieldnames.
      lt_fieldnames-value = lw_stcst.
      APPEND lt_fieldnames.
      CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
        EXPORTING
          file_name                       = 'XLSHEET'
        CREATE_PIVOT                    = 0
        DATA_SHEET_NAME                 = ' '
        PIVOT_SHEET_NAME                = ' '
        PASSWORD                        = ' '
        PASSWORD_OPTION                 = 0
        TABLES
        PIVOT_FIELD_TAB                 =
          data_tab                        = t_output1
          fieldnames                      = lt_fieldnames
        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
      IF sy-subrc <> 0.
        MESSAGE e001 WITH 'Data could not be downloaded'.
      ENDIF.
    ENDFORM.                               " z_dwn_xl
    thanks
    deepu

Maybe you are looking for

  • Production Order-

    Hi one and all, If we have to convert open production order from an existing system, which master data element need to be converted first before we can conver production order?

  • How to send a mail more than 255 characters in PDF format

    Hi Experts I am facing a problem sending an ALV list spool as an email attachment in PDF format. Here my problem is spool has morethan 255 characters, so the contents are trukated after 255. I am using the FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send t

  • Oracle 10g ExpressnEdition

    i hv installed oracle 10g on windows xp i have done local intranet settings - i.e. 127.0.0.1 but Home page is displayed sometimes and sometimes it gives DNS error -page can not be displayed sometimes it gives resource not found also oracle port is no

  • DV AVI in high quality problem

    Has anyone had this problem, or know of a solution? I'm using QT Pro 7.1.3 / WinXP Pro. I can play back low quality DV/DVCPRO - NTSC .avi files perfectly, but when I switch to high-quality, the player window remains the same size, but the image is cr

  • I Can't connect to a certain internet server

    After downloading the security update, I had to retype the password to a wireless network I use at my job. Only, when i select the network, i only get the indefinite "spinning beach ball of death." But this is the only network that this happens for-