How to merge cells in tables if SmartForms like colspan/rowspan in HTML

Hi!
Is it possible to merge cells in a tables in SmartForms like colspan/rowspan parameters in HTML?
Both horisontal and vertical merging needed both in header and in body of the table.
Thanks!

No it is not possible.
For merging purpose we have to create seperate windows for that col or rows.

Similar Messages

  • How to Merge Cells in Template in Smartform??

    Hi,
        Can somebody pls tell me how to merge cells vertically in to single cell in a Template in Smartforms..
    Regards,
    Rushikesh

    Hi Rushikesh,
    SAP does not directly provide option of merging the cells intemplate...Check out following
    to do the needful.
    1. Double click on the template node and go to table painter.
    2. say you want to merge two cells C1 & C2
    3. Click on the pencil icon above table painter to get plus type cursor now click on
       any cell from C1 or C2. The cell turns black indicating the selction .
    4. Right click -> Delete -> Cell. C1 is deleted.
    5. Again click on the pencil icon to get back the arrow cursor.
    6. Now take pointer on the boundary of cell C2. You the icon changes indicating
        the cell boundary can adjusted as per req. Do the necessary adjustment .
    7. Save and activating.
    Hope this helps you...
    Enjoy SAP.
    Pankaj Singh..

  • How to merge cell as Excel  with smartforms ???

    Hi all Gurus of SmartForms,
    I want to format a template as Excel by using Merge.
    I means I want Merge 2 cells into 1 and put data into center of new cell.
    But I dont know how to do that by SmartForms
    Who can help me step by step?
    Thanks.

    Thanks
    But I have a problem
         B               C     
                 D     E
    cell D and E is in the same row.
    I want cell C is in top center cell D and E.
    I want cell B  is in center cell C, D. If I do as your way, result isn't , cell B is only top not center C and D.
    Edited by: kathy a on May 27, 2008 10:47 AM

  • Unable to merge cells in Table(WAD)

    HI Gurus,
    I am working on BI7.0,
    I am trying to create Web Templates to display reports in portal for that
    I have selected Table (rows and coloms), When I try to merge first two cells
    (to write descritpion of query) it is not allowing me to merge.
    Can anybody suggest me how to merge two cells in table.
    Thanks in advance.
    Maruthi
    Edited by: maruthi k on Dec 15, 2008 2:04 PM

    If you're talking simply about merging the cells in an HTML table, then you use the COLSPAN or ROWSPAN options in  HTML.
    Check out the following
    <html>
    <body>
        <table border="1" cellpadding="2" cellspacing="0">
            <tr>
                <td>
                    Heading 1</td>
                <td>
                    Heading 2</td>
                <td>
                    Heading 3</td>
            </tr>
            <tr>
                <td colspan="2">
                    Text covering 2 cells</td>
                <td>
                    Last cell</td>
            </tr>
            <tr>
                <td rowspan="2">
                    Text covering 2 cells across 2 rows</td>
                <td>
                    Text in cell 2 row 2</td>
                <td>
                    Text in cell 3 row 2</td>
            </tr>
            <tr>
                <td>
                    Text in cell 2 row 3</td>
                <td>
                    Text in cell 3 row 3</td>
            </tr>
        </table>
    </body>
    </html>
    Take the above code and put it in a simple HTML file and run that file in your browser, you should then be able to see how COLSPAN and ROWSPAN work.
    COLSPAN=2 means that the cell spans 2 columns. Similary, COLSPAN=3 would then span 3 columns.
    Remember though that when you set COLSPAN=2, you will need 1 less TD in that row, otherwise you end up with an extra cell in that row which makes your table look all messy.
    Now, in your template, get into the XHTML view, find the table, and set the COLSPAN / ROWSPAN accordingly.
    Hope this helps.
    Cheers,
    Andrew

  • How to merge cells in Visio 2013

    Hi im created a grid in visio
    i want to merge some cells in table
    How to merge cells ?
    Thanks

    Hi,
    As far as I know, the Grid is shape in Visio, we could not merge the cells like Excel. Please try the workaround:
    Select the cells that need to merge>Format the shape> Choose no line
    Select the cells> right click> group
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to merge 4 internal tables

    Hi,
    I have to merge 4 internal tables
    Two loops have to create in main loop because getting more than one values from other table.
    Like
    LOOP AT it_itab1 INTO wa_itab1.
        MOVE-CORRESPONDING wa_itab1 TO wa_final.
        READ TABLE it_itab2 INTO wa_itab2 WITH KEY pspel = wa_itab1-pspnr.
        IF sy-subrc = 0.
          wa_final-aufnr = wa_itab2-aufnr.
        ENDIF.
        READ TABLE it_itab3 INTO wa_itab3 WITH KEY projn = wa_itab1-pspnr.
        IF sy-subrc = 0.
        wa_final-vornr = wa_itab3-vornr.
        ENDIF.
    Instead of this READ statement of internal table it_itab3, I need to put loop as follows. But how to merge with final table?
        loop at it_itab3 into wa_itab3 where projn = wa_itab1-pspnr.
         wa_final-vornr = wa_itab3-vornr.
        endloop.
        LOOP AT it_itab4 INTO wa_itab4 WHERE aufnr = wa_final-aufnr.
          wa_final-kzear  = wa_itab4-kzear.
          wa_final-matnr  = wa_itab4-matnr.
          wa_final-lgort  = wa_itab4-lgort.
          wa_final-sobkz  = wa_itab4-sobkz.
          wa_final-bdter  = wa_itab4-bdter.
          wa_final-bdmng  = wa_itab4-bdmng.
          wa_final-waers  = wa_itab4-waers.
          wa_final-aufnr  = wa_itab4-aufnr.
          wa_final-postp  = wa_itab4-postp.
          wa_final-posnr  = wa_itab4-posnr.
          wa_final-sanka  = wa_itab4-sanka.
          wa_final-gpreis = wa_itab4-gpreis.
          APPEND wa_final TO it_final.
          CLEAR:
          wa_itab4.
        ENDLOOP.
          CLEAR:wa_final,
          wa_itab1,
          wa_itab2,
          wa_itab3,
          wa_itab4.
      ENDLOOP.
    Pls help me to merge this table.
    Thanks in advance.
    Rajkumar Pandiaraja.

    Hi Raj,
    Do you have common key fields between final int table and other table?
    if yes then you can do this by,
    LOOP AT it_itab3 INTO wa_itab3 WHERE projn = wa_itab1-pspnr.
      wa_final-vornr = wa_itab3-vornr.
      MODIFY it_final FROM wa_final TRANSPORTING vornr
      WHERE key1 = wa_tab1-key1."Mention your key field here
    ENDLOOP.
    Regards,
    Manoj Kumar P
    Edited by: Manoj Kumar on Jan 23, 2009 12:20 PM
    Edited by: Manoj Kumar on Jan 23, 2009 12:21 PM

  • How to merge cells in report designer

    Hello BW Experts,
    How to merge cells in report designer.
    Thanks in advance
    BWer

    Hi BWer,
    I had to check for some details from Development.
    You also need to have FEP 14 for the BI 7.x tools on SAP GUI 6.40, which was just released on Friday. You can find it at service.sap.com/swdc. In the format menu, you will now see a "Link Cells" option.
    With the link cells option, you cannot merge across row patterns. That means that you will probably have to make some changes to your report before you can merge the cells, based on what you described.
    I imagine that you started out with a report section something like the following (dashes added for formatting purposes):
    G0 Header ...
    G1 Header -
    Controlling Area
    Detail -
    Func Area
    And then moved controlling area to the right to the same column as functional area:
    G0 Header ...
    G1 Header -
    Controlling Area
    Detail -
    Func Area
    Resulting in an output that would look like:
    CA1000
    FA ABCA
    FA ABCB
    FA ABCC
    CA2000
    FA ABCA
    FA ABCB
    FA ABCC
    As shown above, these cells cannot be merged because they cross row patterns. You would instead need to move the controlling area member down to the same row as functional area:
    G0 Header ...
    G1 Header      
    Detail -
    Controlling Area    Func Area
    You can now merge these cells, resulting in an output that would look like the following:
    CA1000 FA ABCA
    CA1000 FA ABCB
    CA1000 FA ABCC
    CA2000 FA ABCA
    CA2000 FA ABCB
    CA2000 FA ABCC
    To merge the cells, you would simply highligh both cells with your cursor and then select the option from the menu.
    Regards,
    Katie

  • How to merge cells in excel using X++ in AX 2009

     Hi all,
     How to merge cells in excel using X++ in AX 2009?
     for example i have 3 cells (A3:C3) i need to merge this 3 cells using X++
    can any one sujjest please
    Thanks in advance

    Hi,
    WinForm technology does not support X++ related cases.
    I just checked this link
    http://msdn.microsoft.com/en-us/library/aa867122.aspx and haven't found a related forum.
    I'll move your case to where is the forum for so that you may get some help about this.
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Merge cells in table (RTF template)

    Hey, everybody! Is it possible to merge cells at runtime on some condition?
    Edited by: user11367404 on 24.08.2009 6:10

    Hi,Rumzes, have you resolved your problem ? Could you tell me how to merge cells ? Thanx

  • How to merge 3 different tables using ADF BC?

    Hi
    I have 3 tables (i.e., Employee, Dept, location)
    First i need to merge Employee and Dept as "*EmployeeDept*" table with the primary key(EmployeeID) and then i should merge "*EmployeeDept*" with Dept table with the primary key(DeptID) of Dept table.
    I tried "*ViewLink*" however i am able to merge only two tables(i.e., Employee and Dept) as "EmployeeDept", no idea how to merge the third table(Dept) with it.
    Please help.
    Thanks in advance

    Hi Timo
    Employee -- EmployeeID,FirstName,LastName,*DepartmentID*, JobID
    Dept -- DepartmentID, DepartmentName, ManagerID, LocationID
    Location -- LocationID, StreetAddress, City, CountryID
    Will join Employee and Dept table as "EmployeeDept" by using Query *( select EmployeeID, FirstName, DepartmentName,*
    LocationID From Employee, Dept where Employee.DepartmentID = Dept.DepartmentID)
    So now i need to join this new "EmployeeDept" with Location table to get the columns from both using query like
    *(select EmployeeID, FirstName, DepartmentName, LocationID, StreetAddress, City, CountryID From EmployeeDept, Location*
    where EmployeeDept.LocationID = Location.LocationID)
    Thanks

  • How to merge cells in SmartForms?

    Dear Experts,
              How can I  merge cells (Row wise adjecents cells)in a table of smart forms..
    thanks in adv....
    Moderator message: Please post your questions in the right forum and give more meaningful titles in the future.
    Edited by: kishan P on Oct 11, 2010 3:39 PM

    If you are using table, then realign the table my adding 2 cells in a row. Go to Main window==> table==> table tab==> click on details.. Now you will get the row details. Choose the row where you wants the merge. Let us consider you wants to merge cell 3 (2cm) & 4 (1 cm). then put 2 +1 = 3 cm for cell 3 and delete cell 4. Note: content will be deleted for this

  • Help with merged cells in table

    I'm just learning how to use Dreamweaver 8 and tables. I am
    trying to use a table with merged cells filled with graphics --
    only one graphic per cell. I make my jpg the size of my cell, which
    it seems to fill. Then, when I upload it to view in browser, it
    looks as though the graphic doesn't take up the entire cell. At one
    point, it was working both in Dreamweaver and the browser. Now, in
    the browser view, it looks as though there is extra space above the
    graphic and below it. Any suggestions on what is going on???

    It's not the use of tables with your graphics that is
    necessarily the
    problem, it's HOW you are using the tables with your
    graphics. Can we see
    the page you have built so we can examine the code?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "degazon" <[email protected]> wrote in
    message
    news:gasr2p$10m$[email protected]..
    > Thanks! It's now evident that I shouldn't use tables
    with the graphics.

  • How to Merge Cells in a JTable?

    First, a brief background. I have a 1.3.1 Swing application, and have a custom table framework that is extended from Swing. My table model manages row classes. Each row class has its own collection of renderers and editors. Renderers and editors are never shared; each cell has its own. My custom table asks each row for the renderer/editor as needed. This allows the GUI programmer to customize every cell of a row class, down to the renderer/editor, including which cells are editable. Essentially, my custom table framework puts all the brains into row classes. Each screen has its own row class. So, it's very granular but very powerful. However, I need more power.
    I need a way to merge cells across columns (column spanning). These merged cells do NOT need to be editable for now. I don't know how I can get the table to render one cell across others in the same row. I suspect this is largely a painting issue, and could really use some help.
    Thanks!
    Andy

    Thanks for the direction, Ian! That got me on my way.
    I subclassed BasicTableUI and copy-pasted the private methods into my subclass, and made them protected. I then modified the paintCell( ) method to change the rendering for the particular table row I'm interested in (test case).
    To make the first cell span the entire row, I changed the width of the painting rectangle to be the width of the table, instead of the width of the cell. I also had to NOT render any other cells in that row, so they wouldn't "interfere" with the first renderer. In other words, if I allow cell 3 to be rendered, it will prevent cell 0 from spanning, since cell 3 is rendered AFTER cell 0.
    Here's an example of my proof-of-concept (POC):
    // For row 5, only render cell 0
    if (row == 5) {
        if (column == 0) {
            rendererPane.paintComponent(g, component, table, cellRect.x, cellRect.y, table.getWidth(), cellRect.height, true);
        return;
    }You can see that only cell 0 will be rendered, and it will be as wide as the table.
    My next step will be to experiment with multiple spans in the same row, and then having a cell in the middle span the entire row. I'll post my results for the sake of posterity.

  • How to merge cells in AdvancedDatagrid?

    Hi All,
    I am using advanced datagrid in my project to show hierarchical data.
    we have a requirement to merge related cells so that it will look like below (just like row span in html table)
    1
    1.1
    1.2
    1.3
    2
    2.1
    2.2
    2.3
    For column header it can be done by AdvancedDataGridColumGroup. So there must be some solution to merge cells to create the same effect for row.
    Anyone has any idea on how to achieve this?
    Thanks!!!

    Check out the rendererProviders property on AdvancedDataGrid.  It lets you dynamicaly determine what renderer to use at runtime based on the data being rendered.  It takes a list of AdvancedDataGridRenderer instances, and those instnces have properties for colSpan and rowSpan.

  • How to Import customized internal table to smartform from Print Program

    Hi Gurus,
    I want to Import customized internal table to smartform from print program, Can anybody tell me how it is possible.
    With regards,
    S.Saravanan

    There is no problem passing an internal table to a smarforms, smartforms have the same interface as a function module ([Defining the Form Interface|http://help.sap.com/saphelp_nw70/helpdata/en/1c/f40c5bddf311d3b574006094192fe3/frameset.htm] in [Smart Forms|http://help.sap.com/saphelp_nw70/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm]) so could you elaborate a little more on your requirement (is it a standard a custom forms, etc.)
    Regards,
    Raymond

Maybe you are looking for

  • Anchored page item in chained frames

    Hi all, I'm using an "anchored object" page item with custom positioning, x reference is relative to the right border of the frame. The anchor is in a preceding paragraph (could be multiple lines away) in order to enable text wrap around that object.

  • Trade in issues - 10% and 2x reward points

    I traded some games in the middle of december and never received my double reward points or my 10% bump in value to any of the games. I have the paper with the transaction id if that helps anyone. Thanks again

  • IPod preferences in iTunes incomplete

    This is a repost of a problem I've been having. When I connect the iPod to my G4 at home (see details below) the preferences only show "Music" and "Podcasts". To the right of that submenu, it shows my iPod version as "6.0". From my iTunes at home I c

  • Is running multiple instances of a class ok?

    hi guys, is it ok to have more than one instance of a class running? I have a console app that processes requests which have been saved in a db. this app does not need multithreading - but sometimes i may need to have multiple instances of the app ru

  • How to run ABAP programs in another client?

    Hi: If one user wants to run his ABAP program that resides in Client 900 with the data in Client 500, can he do it? both the clients reside in the same SAP system (the same physical SAP server). If you've some idea about this, please help. Thuan Nguy