Table lines disappearing ? is it possible ?

Hello everyone,
Is it possible to make disapear the lines that draw a table, only remaining the rows content visible ?
          thank you in advance.
                     Nuno

Hi,
Yes. You can set the design property as transparent and readonly property to true.
Regards,
Saravanan K

Similar Messages

  • List UIBB - Access to cell editor for a certain table line possible

    Hi,
    I am looking for a way to access the cell editor of the last table line as I want to mark it as a special - summary - line.
    I intend a similar approach like in WebDynrpo ABAP when accessing the node info and modifying the "CELL DESIGN" attribute like in the following code (copied from WD Comp WDR_TEST_TABLE, View CELL DESIGN, method FILL_CELL_DESIGNS) :
      data tab type IF_CELL_DESIGN=>Elements_Cell_Designs.
      data line type IF_CELL_DESIGN=>Element_Cell_Designs.
      data node_info type ref to if_wd_context_node_info.
      data attribute_info type wdr_context_attribute_info.
      data attr_value type WDR_CONTEXT_ATTR_VALUE.
      node_info = node->get_node_info( ).
      attribute_info = node_info->get_attribute( 'CELL_DESIGN' ).
      line-is_expanded = abap_true.
      line-is_leaf     = abap_false.
      line-key         = 'FIRST'.
      loop at attribute_info-value_set into attr_value.
        line-text = sy-tabix.
        concatenate 'Text #' line-text into line-text. "#EC NOTEXT
        line-cell_design = attr_value-value.
        insert line into table tab.
        line-is_leaf = abap_true.
        line-key = attr_value-value.
        line-parent_key = 'FIRST'.
      endloop.
      node->bind_table( tab ).
    I suspect the method IF_FPM_GUIBB_LISTGET_DATA (or IF_FPM_GUIBB_LISTGET_DEFINITION) of my feeder class to be the right access point.
    But unfortunately, I have not yet found out how to change the cell design for specific lines, only for whole columns.
    Can anyone give me a hint here?
    BTW: The "summary" line is not a sum of the lines above, but determined by backend logic, so not ALV-summary line for me.
    Kind Regards

    Hi,
    A short update for all interested:
    My current work around is to always set the lead selection to the summary line. It does in a kind "mark" that line as special as long as I cannot mark it using a different cell design.
    How do I assure this?
    I have implemented the following code in a redefinition of the method ADJUST_SELECTION:
    *- alter selection
      DATA:
       ls_size TYPE rstabix.
      "get index of summary line
      ls_size-tabix = mo_collection->size( ).
      "change only if there are any cash conc. proposals
      IF ls_size-tabix > 0.
        "do FPM selection
        CLEAR: ev_lead_index, et_selection.
        ev_lead_index = ls_size-tabix.
        APPEND ls_size TO et_selection.
        "do BOL selection
        mo_collection->if_bol_bo_col_multi_sel~unmark_all( ).
        mo_collection->if_bol_bo_col_multi_sel~mark( iv_index = ls_size-tabix ).
      ENDIF.
    The general downside is, that no other selection is possible!
    The selection is always reset to the summary line with each roundtrip.
    Waiting for a better solution...
    Kind Regards,
    Robert

  • No table line started. Output to cell not possible

    Hi Everybody:
    I have developed a smartform where in if i give single record as input, it comes fine, but if more than one record is given thru selection scr, the error comes  No table line started. Output to cell not possible when page break is issued.
    Pls help as to why is it coming,
    I also tried SF TRACE, but when i display the error, it says Cannot read from the database.
    Best Regards, Neetu

    To print the internal table's data in the smartform you should use the TABLE.
    LIke define a TABLE, inside the table define required table types.
    Put your data inside your main ... under the Table by using one of the line type.
    Regards,
    Naimesh Patel

  • Error M8-688 - Creation of several vendor line items is not possible for document type RN.

    Hello All,
    We are using the Net Invoice Posting with document type RN(Invoice- Net). We are generating different vendor line items in the accounting document based on the withholding tax codes involved in the invoice posting. When it comes to net invoice posting system is giving an error message M8-688 - Creation of vendor line items is not possible for document type RN. Is there is any way to create multiple vendor items with net invoice posting? Please suggest.
    Thanks,
    Chandu.

    I dont think that there is any way because it is a hardcoded error message.
          IF NOT t003-xnetb IS INITIAL.
            MESSAGE e688 WITH pi_rbkpv-blart.
          ENDIF.
    SAP is checking the customizing for net/gross posting per document type in table T003
    And if it is set up as net, then it is a hard error.

  • Table lines dropped when table rotated

    Hello forum,
    I have an interesting problem I hope at least one other of you have encountered.
    A document i'm working on has large,long, portrait part data tables which have been put on A3 pages and rotated to Landscape to fit with the accompanying A4 pages (This means the text is vertical compared to the headers and footers).
    The problem is that after about 60 lines or so out of the 70 in the table, the lines disappear. They are set to thin for all borders and cells, yet they disappear, not like they have been set to none, but like they were never there.
    Has anyone seen this before, or can anyone explain it.

    did you populate your table with content?
    I just painstakingly counted and it is actually 80 border lines visible of 90 lines total, all fitting on the one page. Apart from the missing lines you would think it was a normal table.
    Due to the nature of the content, it has been replaced with 'test'
    After chatting with my colleague, reducing the font size from 8pt Arial to 5pt cured the issue, same worked up until 7pt, but now only 1 line was missing.
    At 6.5pt all the original content was now surrounded by border lines.

  • How to export a reference to a table line from a method?

    Hello,
    I have a class which has a hashed table as an attribute. I want to retrieve a line from the table using the key and return a reference to the table line. I want changes to the return value of the method to be directly reflected in the table, as if using a local field symbol. I have tried to approaches, neither of which works.
    First, I returned a reference to the local field symbol. This dumps, because after returning from the method call, the target of this reference no longer resides on the stack.
    Second, I have tried using an export parameter marked as "pass by reference", i. e. without VALUE(). Strangely, this still seems to give me only a copy of the data.
    What is the correct way to proceed?
    Illustrative pseudo-code follows.
    Thanks, Sebastian
    *==============================================================
    *Possibility 1: (using references)
    DATA mt_key_map TYPE zt_entity. " member variable (hash table of zs_entity)
    METHODS get
        IMPORTING
          !is_key TYPE zs_key
        EXPORTING
          !er_vt TYPE REF TO zs_entity.
    METHOD get.
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      READ TABLE mt_key_value WITH KEY key = is_key ASSIGNING <fs_vt>.
      GET REFERENCE OF <fs_vt> INTO er_vt.
    ENDMETHOD.     
    " Client Code:
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      CALL METHOD get
        EXPORTING
          is_key        = is_key
        IMPORTING
          er_vt         = lr_vt.
      ASSIGN lr_vt->* TO <fs_vt>.  " will dump, because the local field symbol
                                   " to which lr_vt points is no longer on the stack
      <fs_vt>-value = 'newdata'.       
    *==============================================================
    *Possibility 2:  (using a structure passed by reference)
    DATA mt_key_map TYPE zt_entity. " member variable (hash table of zs_entity)
    METHODS get
        IMPORTING
          !is_key TYPE zs_key
        EXPORTING
          !es_vt TYPE zs_entity.  
    METHOD get.
      FIELD-SYMBOLS: <fs_vt> TYPE zs_entity. 
      READ TABLE mt_key_map WITH KEY key = is_key ASSIGNING <fs_vt>.
      es_vt = <fs_vt>.
    ENDMETHOD.   
    " Client Code:
      DATA: ls_vt TYPE zs_entity.
      CALL METHOD get
        EXPORTING
          is_key        = is_key
        IMPORTING
          es_vt         = ls_vt.
      ls_vt-value = 'newdata'.   " will not change the contents of the
                                 " table mt_key_value       

    In the first approch, try to change the exporting parameter type REF TO DATA.
    Try like:
    CLASS lcl_test DEFINITION.
      PUBLIC SECTION.
        DATA: t_mara TYPE HASHED TABLE OF mara WITH UNIQUE KEY matnr.
        METHODS:
          constructor,
          get
            IMPORTING
              if_matnr TYPE matnr
            EXPORTING
              ea_mara  TYPE REF TO data.
    ENDCLASS.                    "lcl_test DEFINITION
    START-OF-SELECTION.
      DATA: lo_test TYPE REF TO lcl_test,
            lr_data TYPE REF TO data.
      FIELD-SYMBOLS: <fa_mara> TYPE ANY,
                     <f_field> TYPE ANY.
      CREATE OBJECT lo_test.
      lo_test->get(
        EXPORTING
          if_matnr = '000000000077000000'   " << Replace Your Material
        IMPORTING
          ea_mara  = lr_data ).
      ASSIGN lr_data->* TO <fa_mara>.
      ASSIGN COMPONENT 'ERSDA' OF STRUCTURE <fa_mara> TO <f_field>.
      <f_field> = space.
      WRITE: 'Done'.
    CLASS lcl_test IMPLEMENTATION.
      METHOD constructor.
        SELECT * INTO TABLE t_mara
               FROM mara
               UP TO 10 ROWS.
      ENDMETHOD.                    "constructor
      METHOD get.
        FIELD-SYMBOLS: <lfs_mara> LIKE LINE OF me->t_mara.
        READ TABLE me->t_mara ASSIGNING <lfs_mara> WITH KEY matnr = if_matnr.
        GET REFERENCE OF <lfs_mara> INTO ea_mara.
      ENDMETHOD.                    "get
    ENDCLASS.                    "lcl_test IMPLEMENTATION
    Regards,
    Naimesh Patel

  • Too many information in 1 table line - alternative solution ?

    Hi,
    Just join today since i am new to Adobe LifeCycle.
    I am using Adobe Life Cycle 8.1.2
    As the title explains, currently i am designing a interactive adobe form (orientation: Portrait) which has a table with "add/remove" button. The "add/remove" works perfect (i can add line or remove line from the table).
    The problem is I have too many information (read: columns) in 1 table line. In results:
    1. Table line is not sufficient to display all information, OR
    2. I can squeeze all columns into 1 line and play around with smaller font size. But the form looks ugly.
    Has anyone encountered this kind of situation before ?
    Can you share your design (if possible attached the form) for similar situation ?
    Any bright input/idea are most welcomed.
    Thanks In Advance !
    Note:
    1. Landscape is NOT an option.
    2. I still want to have "add/remove" functionality.

    Hi,
    Suppose you have set the the no of columns to 6 for any row . 1st row has 6 columns. 2nd row has 6 columns intially. But you can merge some of the columns to make it one. Selects the columns you want to merge.Then Right Click -> Merge cells. But this may lead to another problem about the caption of the columns. But if it's text field or same type of field you can specify the option to set the caption as on top.
    Thanks,
    Bibhu.

  • Alv table line F2 details

    when F2 is pressed in ALV, a pop-up window shows, giving the details of that table line.
    how do I do the same in OO ALV report when F2 or double-click is used.

    Please find the code:
    FORM sub_show_detail USING uw_check TYPE boole_d.
      DATA: lt_fcat_main   TYPE lvc_t_fcat,
            lt_fcat        TYPE lvc_t_fcat,
            ls_fcat        TYPE lvc_s_fcat,
            ls_data        TYPE lvc_s_deta,
            ls_deta        TYPE lvc_s_detm,
            lw_layo        TYPE lvc_s_layo,
            lt_deta        TYPE lvc_t_detm,
            lw_main        TYPE zfd0r_invoice_analysis_strc,
            lw_count       TYPE lvc_index,
            lw_title       TYPE string.
      FIELD-SYMBOLS: <l_fcat> TYPE lvc_s_fcat,
                     <l_data> TYPE zfd0r_invoice_analysis_strc,
                     <l_cval> TYPE ANY,
                     <l_tval> TYPE ANY.
    Get the Global Field Catalog.
      lt_fcat_main = gt_fieldcat.
    Delete entries based on Invoice or F2 Invoice
      IF uw_check = abap_true.
        DELETE lt_fcat_main WHERE emphasize EQ space
                              AND fieldname NE 'GERNR'.
        lw_title = text-f30.
      ELSE.
        DELETE lt_fcat_main WHERE emphasize >< space.
        lw_title = text-f29.
      ENDIF.
    Get the Detail Display Fieldcatalog
      ls_fcat-fieldname = 'COLUMNTEXT'.
      ls_fcat-ref_table = 'LVC_S_DETA'.
      ls_fcat-key       = abap_true.
      ls_fcat-coltext   = text-f27.
      ls_fcat-outputlen = 20.
      APPEND ls_fcat TO lt_fcat.
      CLEAR ls_fcat.
      ls_fcat-fieldname = 'VALUE'.
      ls_fcat-ref_table = 'LVC_S_DETA'.
      ls_fcat-coltext   = text-f28.
      ls_fcat-outputlen = 35.
      APPEND ls_fcat TO lt_fcat.
      CLEAR ls_fcat.
    Define layout
      lw_layo-no_toolbar = abap_true.
    Fill the Main table
      LOOP AT gt_main ASSIGNING <l_data>.
        lw_count = lw_count + 1.
        DO.
          READ TABLE lt_fcat_main ASSIGNING <l_fcat> INDEX sy-index.
    End of All Fields -> EXIT
          IF sy-subrc >< 0.
            EXIT.
          ENDIF.
          ASSIGN COMPONENT <l_fcat>-fieldname
                  OF STRUCTURE <l_data> TO <l_cval>.
          IF sy-subrc = 0.
            ls_data-columntext = <l_fcat>-scrtext_l.
            ls_data-value = <l_cval>.
            APPEND ls_data TO ls_deta-detailtab.
            CLEAR: ls_data.
          ENDIF.
        ENDDO.
    Generate the Index
        ls_deta-blockindex = lw_count.
    append the display data.
        APPEND ls_deta TO lt_deta.
        CLEAR: ls_deta.
      ENDLOOP.
    Call The Item Detail FM.
      CALL FUNCTION 'LVC_ITEM_DETAIL'
           EXPORTING
                i_title         = lw_title
                it_fieldcatalog = lt_fcat
                is_layout       = lw_layo
           TABLES
                t_outtab        = lt_deta.
    Hope That Helps
    Anirban M.

  • IPhone 6 - I can only send photos via iMessage in landscape mode. The address line disappears when I try to send a portrait mode photo.

    iPhone 6 - I can only send photos in landscape mode via iMessage. The address line disappears when I try to send a portrait mode photo. Gone so far as erasing all content and settings. Problem persists.

    Howdy jackbry,
    Welcome to Apple Support Communities.
    If you haven’t already, you can try resolving the issue with not being able to send iMessages that contain portrait photos by restoring your iPhone to factory settings as shown in this article:
    Use iTunes to restore your iOS device to factory settings - Apple Support
    So long,
    -Jason

  • Rectifications of different sizes for all the three table lines in footer.

    Hi friendz,
                    i am working in ecc6 system(smartforms).
                    i am using 3 table lines in the footer one for total, the second one for tax calculation, and the third one for the grand total.
    But in the output screen display - the total, tax and grand total(in different table lines) are displayed with different heights, which gives unprofessional look for the form.
    i want all the table lines in the footer to display with equal heights.

    Hi,
    first you create LTYPE follow below sequence
    Go table tab--> details tab--->give suitable heights for ltype
    next go to FOOTER in the main window
    create three table lines under footer like
    FOOTER1
    FOOTER2
    FOOTER3
    for three table lines we need to assign line type LTYPE
    Go FOOTER1 ---> output options -
    > give LTYPE.
         FOOTER2 ---> output options -
    > give LTYPE.
         FOOTER3 ---> output options -
    > give LTYPE.
    reward points if helpful.
    Regards,
    Bhupal.
    Edited by: bhupal reddy on Jul 22, 2008 11:55 AM

  • Table headings disappearing in pdf?

    Why are some table headings disappearing when I pdf a Frame 8 file? There is no pattern in the disappearances and each time I pdf the file, a different cell heading disappears. If I create a text box and paste that box over the heading, it shows up fine in the pdf, but that's a dumb way to work. This all started happening in the last month, after I changed computers. Thanks for the help!!

    This is the message I get right now when I save to pdf. If I print to a prn, it doesn't open at all. I used to have a tool that converted the prn automatically at my old job, but there's nothing on the new job's computer and no IT help available. I've been doing a workaround by printing the TOC and the document separately and just adding the TOC to the new pdf, but now when I'm trying to pdf a large document (without TOC) that used to pdf just fine (with TOC), I'm getting the following message. I've just pdf'd chapters 7 & 8 with no problem whatsoever.
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    %%[Page: 3]%%
    %%[Page: 4]%%
    %%[Page: 5]%%
    %%[Page: 6]%%
    %%[Page: 7]%%
    %%[Page: 8]%%
    %%[Page: 9]%%
    %%[Page: 10]%%
    %%[Page: 11]%%
    %%[Page: 12]%%
    %%[Page: 13]%%
    %%[Page: 14]%%
    %%[Page: 15]%%
    %%[Page: 16]%%
    %%[Page: 17]%%
    %%[Page: 18]%%
    %%[Page: 19]%%
    %%[Page: 20]%%
    %%[Page: 21]%%
    %%[Page: 22]%%
    %%[Page: 23]%%
    %%[Page: 24]%%
    %%[Page: 25]%%
    %%[Page: 26]%%
    %%[Page: 27]%%
    %%[ Error: undefined; OffendingCommand: pdfmark; ErrorInfo: Rect  ]%%
    Stack:
    /ANN
    /Link
    /Subtype
    /M14.9.42153.Section.Title.Chapter.8.Installing.the.batteries
    /D
    /GoToR
    /S
    /Action
    /Type
    -dict-
    /Action
    [0 0 0]
    /Border
    [7305 2337 9000 2128]
    /Rect
    -mark-
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%

  • MS Word 2007 table lines have interesction tick marks

    Hello,
    MS Word 2007 SP2
    Adobe Acrobat 9.0.0 Plus
    A table created in Word, where row lines are shown but not column lines, shows on some lines tick-marks where row and colums would intersect. In AA version 7 this was not an issue, however, when converting from within Word this too was an issue.
    The image below didn't turn out as clear here than the original, but you still can see the Word bit left and AA on the right with the tick-marks.
    How can it be avoided?
    Thank you
    Stefan

    I'm experiencing this myself. I found instructions to navigate to Edit > Preferences > Page Display. Then, uncheck 'Enhance Thin Lines'. This lightens the lines considerably; reducing the very dark, chunky lines. However, table lines are still not the same width/thickness regardless of the zoom level in Acrobat (50% - 800%). And there is no pattern to where thicker lines appear; header rows, odd rows, etc. A random mess. I'm 100% positive the lines are set properly in Word 2007. And interestingly, all tables lines display equal widths consistently in printed copy- when printing from the PDF. The issue seems to be Adobe's electronic page display and that the 'solution' I found does not work. I have the latest version of Acrobat Pro and a colleague has the latest version of the Reader without a writer license-- no conflict of versions or software suite.
    I deliver documentation to customers electronically. My documents have many tables. My deliverables to look unprofessional and unpolished. My deadlines haven't been met due to research and this unresolved issue. Difficult to accept.
    So frustrated!  Please help!
    Jennifer

  • How do I convert a very old table from Microsoft Word that I made over 7 years ago to a regular Pages table? Is it even possible?

    The question is fairly simple I guess: is it a formatting problem, or do I have to cut and paste all the text to a new document? Can anyone help me, please?

    Tables are content of a documents so i can't see the problem.
    If the table is in a  Word document you should be able to open it in Pages. How it will look depends on how much content it is in a cell. If the cell is higher than a page the table will disappear under the margin of the page. That kind of formatted document is better opened in LibreOffice/NeoOffice/OpenOffice or MS Word. There are sometimes work around but it depends on the table if it will work. Simple tables are not any problems.

  • When I export my file to generate a .pdf, the text box literally has a box around it! How do I make that line disappear?

    When I export my file to generate a .pdf, the text box literally has a box around it! How do I make that line disappear?

    Sounds like you have a stroke on it. Select the frame and set the stroke to none.

  • Table toolbar disappeared in the screen reader mode in Oracle ADF

    I have a validation message box(pop up) opening from a button action from page fragment(jsff) page and in screen reader mode the message box shows up as default on the same page instead of pop up message box and
    and below the message box there is this message information "Press escape to exit this popup." and when I click ESC key it then shows up the main default page with the table toolbar disappeared. In the screen reader mode the ADF framework is taking total control over the showing message box as default on the same page instead of pop up message box and showing below message " Press escape to exit this popup.". My question is how to edit this page and is there any way to get rid of below message information. I also want to know does ADF provide any API in screen reader mode to control the table toolbar disappearing. I really appreciate any help or advice or any work around to solve this issue.
    Eagerly waiting for the response.
    Thanks in advance

    I'm using JDeveloper 11g (11.1.1.4.0) which has come with accessibility feature(screen reader mode). I have no idea of which version of screen reader that Jdeveloper IDE has.
    I use IE 7 browser and it is mandatory I have to use IE7 browser for this project. All I need help is how to get control of web page( jspff) when we use in accessibility mode. we configure like this
    in trinidad-config.xml file.
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>myskin</skin-family>
    <accessibility-mode>#{accessibility.accessibilityMode}</accessibility-mode>
    </trinidad-config>
    for example like in this jspff file :
    <af:panelStretchLayout
    id="panelStretchLayout1" topHeight="#{accessibility.accessibilityMode == 'screenReader' ? '137px' : 'auto'}"
    startWidth="auto">
    <af:panelCollection binding="#{backingBeanScope.backing_pageFragements_.panelCollection2}"
    id="panelCollection2">
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar binding="#{backingBeanScope.backing_pageFragements_.toolbar1}"
    id="toolbar1"
    shortDesc="Toolbar">
    I'm using like this, let me know I'm doing correct or is there any other way we can do to avoid toolbar to disappear.
    I appreciate your help.

Maybe you are looking for