HTMLB TableView Tab Stops

We have some HTMLB TableViews in our JSPDynPage developed portal application.  After we upgraded to NetWeaver 7.0(2004S) the table views now require the users to tab across each cell within the tableview.  The accessibility flag is turned off within the users profiles so that is not what is causing it.  Is there a way to disable this functionality.  I would hope so otherwise I would have to say that SAP did a bit of a dis-service to some of it's customers.
Thanks.
Curtis

Hi Curtis,
We are also facing the same problem. Customer is complaining for this. Could you please tell us what needs to be done to go to the next editable cell.
Thanks in Advance....
Satya

Similar Messages

  • ICWC htmlb:tableview filter problems

    Hi,
    We developed a BSP application in CRM Web_IC. Whenever user goes to this screen, it retrieves the results from SAP CRM table and lists the entries. We used htmlb:tableview with filter attribute set to 'SERVER'. The first row of the entry is used to filter the entries displayed based on wildcard search and redisplay the same.
    We noticed that all this handled by client side eventing (Java Script) and it works okay in our development and testing environment.
    But we got wierd results when it went for user testing. On some of the machines, the page looks refreshed but the list display does not change based on the search. We thought it might be caching problem so we tried with different IE settings, it looks okay for some time on one of the machines but the problem gets repeated after wards. The situation is we cannot afford intermittent problems.
    OS are win'2000 and XP and browser is IE 6 with sp1 and sp2. The problem is not consistent so none of the combinations actually suggested if the problem is related to one area.
    Has anyone experienced similar to above. Any ideas are welcome.

    Hi Sasi,
    Unfortunately I could not get any direct solution to the problem. I chased SAP OSS and SAP direct consultant who was working with us with no solution. Last time, I heard it was sent to htmlb team at SAP. I stopped chasing after that as project gone live and I fixed the problem by putting a search area and button using client side eventing. 
    If you read the source code once the page is displayed, you can see that SAP writes Javascript to handle the search. I copied the code as Javascript function and placed a button to fire this function which handles the filter as normally SAP does.
    Regards,
    Raju

  • In FrameMaker 9.0.3 and 9.0.4, I cannot set tab stops for a style in the Paragraph Designer.

    In FrameMaker 9.0.3 and 9.0.4, I cannot set tab stops for a style in the paragraph designer. Here are the steps to dysfunction:
    1. In Paragraph Designer, for Tab Stops, click Edit. Edit Tab Stop dialog box opens, and the Paragraph Designer dialog box closes.
    2. Type value in New Position box.
    3. Click Continue. The Edit Tab Stop box closes.
    4. Open Paragraph Designer. No tabs are recorded.
    Discussion of a similar problem occured on this forum in June 2010. At that time, the resolution seemed to be to upgrade to 9.0.3. Has anyone else encountered this problem with these versions?
    Thanks.

    Hi, Arnis,
    Brilliant! Thanks so much. I only looked at the later discussions of that thread, which seemed to indicate the problem would be solved by an upgrade to 9.0.3.
    -Trish

  • How to insert check box fields in a htmlb: tableview

    Hi,
    Can anybody tell me how to insert check box fields in a htmlb: tableview in a sequence of rows in a table view. How to generate the sequence no for the checkbox inorder to know the row that is checked.
    Thanks in advance,
    Aruna.

    Here is the code which has the custom "Checkbox" in the tableview & Triggers the event. <b>You can identify the checkbox based on cell ID (p_cell_id)</b> in the method "IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START" & Based on the event name + Cell ID. Look at the code & let me know if you any issue.
    <b>Layout:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "design2002+design2003"
                   controlRendering = "SAP"
                   rtlAutoSwitch    = "true"
                   forceEncode      = "ENABLED" >
      <htmlb:page title="Test " >
        <htmlb:form>
          <%
      data TV_ITERATOR Type Ref To zcl_itr.
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id              = "fligts"
                           headerText      = "Flight"
                           width           = "100"
                           headerVisible   = "true"
                           design          = "alternating"
                           visibleRowCount = "10"
                           fillUpEmptyRows = "true"
                           showNoMatchText = "true"
                           filter          = "server"
                           sort            = "server"
                           onHeaderClick   = "MyEventHeaderClick"
                           table           = "<%= APPLICATION->itab %>"
                           iterator        = "<%= ITERATOR %>" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Event Handling:</b>
    DATA: EVENT_ID1 TYPE REF TO IF_HTMLB_DATA.
    EVENT_ID1 = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    CASE EVENT_ID1->EVENT_SERVER_NAME.
    IF NOT event_id1 IS INITIAL.
       if event_id1->server_event+0(9) = 'chkevent'.
      SPLIT event_id1->server_event AT '-' INTO v_event v_dummy v_row v_col.
      endif.
    endif.
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS.
         CLEAR p_column_definitions.
        CLEAR p_overwrites.
        DATA: tv_column  TYPE TABLEVIEWCONTROL.
        tv_column-COLUMNNAME  = 'FLDATE'.
        tv_column-edit        = 'X'.
        tv_column-sort        = 'X'.
        tv_column-TITLE               = 'Flight Date'.
        tv_column-WIDTH  = '100'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CONNID'.
        tv_column-TITLE               = 'Conn.ID'.
        tv_column-WIDTH  = '70'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CHECKBOX1'.
        tv_column-TITLE               = 'Check Box'.
        tv_column-WIDTH  = '30'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
    endmethod.
    METHOD IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
           DATA: L_EVENT TYPE STRING.
      CASE P_TABLEVIEW_ID.
        WHEN 'fligts'.
          CASE P_COLUMN_KEY.
            WHEN 'CHECKBOX1'.
    *          CONCATENATE 'chk_event' '123' '2323' INTO L_EVENT SEPARATED BY '-' .
    CONCATENATE 'chkevent' p_cell_id INTO l_event SEPARATED BY '-'.
              P_REPLACEMENT_BEE = CL_HTMLB_CHECKBOX=>FACTORY( ID = P_CELL_ID
            ONCLICK = L_EVENT CHECKED = 'false' ).
          ENDCASE.
      ENDCASE.
    ENDMETHOD.
    Hope this will solve your problem.
    <b><i>* Reward each helpful answer.</i></b>
    Raja T
    Message was edited by:
            Raja T

  • Error when displaying amount field in HTMLB Tableview

    Hi all,
       I am displaying some 'X' table in HTMLB Tableview and it has one amount field.But reference(currency) field of that amount field is in other table . I know it gives the error.
    Please tell me there is any other way to resolve this problem with out adding reference(currency)field in the same table?
    Thanks and Regards ,
    Harikrishna .

    Hi Hari,
    But reference(currency) field of that amount field is in other table . I know it gives the error.
    It will not give any error , you can use the currency key field of other table or structure .
    Alternatively you can use  predifined type DEC instaed of CURR  .
    Regards,
    Anubhav

  • Grouping Key Rows In HTMLB Tableview BSP

    Hello Experts,
    I've a HTMLB Tableview in BSP Application. I need to group the key rows with same value into one.
    Current Layout
    KEY  VALUE 1    VALUE 2
    A       X                 Y
    A       X                 Y
    B       X                 Y
    B       X                 Y
    Required Layout
    KEY  VALUE 1    VALUE 2
    A       X                 Y
              X                 Y
    B       X                 Y
             X                 Y
    It's somewhat similar to grouping the key rows in ALV. Not sure how to achieve this in BSP.
    Please help....
    Regards,
    Satyajit
    PS: Posted this thread in BSP Forum earlier and haven't got any response yet. So reposting it in ABAP General for a quick response.

    Hi Satyajit Mohapatra,
    please refer to fixedColumns. Therefore check on your system:
    BSP: SBSPEXT_TABLE
    Page: TableViewFixedColumns.bsp
    There you can find the solution.
    Regards, Jonas

  • [JS CS3] Tab Stops in Table

    Below is a function that would delete all existing tab stops in a column and the add a new tab stop.
    function TabStopper (myPosition, xx){
    myTable.columns.item(xx).cells.everyItem().texts[0].tabStops.everyItem().remove();
    myTable.columns.item(xx).cells.everyItem().texts[0].tabStops.add({position:myPosition, alignment:TabStopAlignment.CHARACTER_ALIGN, alignmentCharacter:")"});
    The problem is that this works well with CS2 but not with CS3. In CS3, only the tab stops in the last cell of the selected column are removed. Can anybody please help analyze what the problem is. Thank you so much.

    Joaquin,
    Strange indeed that that doesn't work. You can get around it by using this method:
    function TabStopper (myPosition, xx){
       myTable.columns.item(xx).cells.everyItem().texts[0].tabList =
    [{position:xx, alignment:TabStopAlignment.CHARACTER_ALIGN, alignmentCharacter:")"}];
    When you set a tabList like this, any other tabstops are deleted, and this works in CS3. (CS4 restores CS2's behaviour.)
    Peter

  • How to handle tab stops when converting from Frame to RoboHelp

    I have several examples of programming code that have tabulated indentations in the FrameMaker documents I have inherited.
    But when I convert to RoboHelp, the tab stop is only recognized by a single space.
    What would be the best way to deal with this? There are so many examples, and sometimes there can be multiple levels.
    Remember, all these manuals have already been written in Framemaker, so the less I have to manipulate these samples, the better!
    Thanks 

    Did anyone from Adobe get back to you on this bug?
    Now that TCS3 is out there, did they fix it?
    Do you know how we can find out the status of this and other issues with Adobe?
    We have been very disappointed with TCS2 and if Adobe hasn't fixed known issues from that version, I wonder if they will in TCS3...or ever? Flare is looking pretty good at this point.
    Missy

  • How to remove tab stops at one shot after importing a word document

    HI everyone,
    This is my first post in Framemaker Community as I am moving from RH to FM.
    I have an issue with respect to importing word documents to Framemaker.
    After I have import a word to doc to FM multiple tab stops are created.
    Now, although I remove the tab stops manually once, If I place my mouse in the next line , the tab stops are seen again.
    Is there any shortcut wherein I can remove tab stops at one go after I import a word document in Framemaker.
    Thanks in advance.
    Regards,
    Parag

    Edit > Find / Change
    Find: Text: [ \x08 ]
    Change To Text: [ \x20 ]
    <*> Document
    [ Change All ]
    This would change all tabs to ordinary spaces. You can actually just type a tab and space character, but I used the hex notation so you see what you're doing. The space could be any other character(s) you desire, or no characters at all (make sure the To Text: field is empty).
    Hex codes?
    Found here on one of my installs:
    C:\Program Files (x86)\Adobe\FrameMaker9\Documents\Character_Sets.pdf

  • IBooks Author strips tab stops from Table of Contents

    Tab stops that are generated from section names are stripped from published iBooks Author files.   When I click on Table of Contents in iBooks Author, I can see it exactly like it should be.  Please see the screenshot that I have uploaded tabs.jpg. 
    Please note the Tab stops of the inspector that are in the screenshot.  It shows clearly that I have made a number of tab stops and how it should be displayed. However, please download the following file to see how the tab stops are stripped from the .ibooks file that is created when I publish it:
    http://ishqdesign.com/tabs/
    I am in immediate need of a solution for a large book that I am in the process of publishing.  Please advise.
    Thanks,
    J

    The iBA Help has info on: table of contents
    Which includes:
    Each book comes with a table of contents that is updated automatically. You can view the table of contents at any time by selecting Table of Contents in the sidebar. The table of contents includes a default set of items, but you can change which items appear. A table of contents can include:
    Chapter and section titles: All chapter and section titles are included in the table of contents by default. If you remove a section from the table of contents, all other sections that use the same layout are removed as well.
    Text that uses specified paragraph styles: By default, the table of contents includes all paragraphs in the book that use the Heading 1 and Heading 2 style, but you can include whichever styles you like. Paragraph styles appear in the table of contents only in portrait orientation. See Format text using styles.
    The way the table of contents looks depends on the current page orientation. In landscape orientation (shown below), each chapter has its own contents page, with navigation buttons at the bottom. In portrait orientation, the entire book’s table of contents is visible as an expandable list.
    Add or remove items in the table of contents
    If the Document inspector isn’t open, click Inspector in the toolbar and click the Document Inspector button.
    Click the TOC button.
    Do either or both of the following:
    To add an item: Click the Add pop-up menu , choose Add Paragraph Style, and choose an option from the submenu.
    To remove an item: Select the item you want to remove and click the Delete button .

  • Link in a htmlb:tableview

    is it possible to add links to a htmlb:tableview.
    for example, i have a table with 4 columns. i'd like to let the entries in column 1 appear as links with the content of column 4 as the link target. (column 4 should be invisible for the user)

    Hi Daniel,
    You didn't study enough before posting...
    Take a look at:
    1. Documentation on your WebAS (accessible by <i>Tag Browser</i>);
    2. <b>SBSPEXT_TABLE</b> BSP Application on your system;
    3. other posts in this forum.
    Good search.
    Dany

  • Tab stops in table cell

    ID CS3 - If I have multiple tab stops in a table cell, is there a keyboard shortcut I can use to "tab" over to these stops?

    hmmm...my test layout seems to work well, but I will add another few rows of data. I have approximately 20 to 30 fields, and one of the fields references an image. So far, the two test rows have populated the fields correctly in ID when I've created the merge document. Was there any particular issues, or could you point me to something specific so I can check it out?

  • HTMLB TableView: Edit first Line

    Hi,
    I have implemented an HTMLB TableView with the attribute selection mode 'singleselect'.
    The users can mark one row to edit. This works so far.
    But as the users have to maintain at least one row, the first row should initially be editable <b>without mark it</b> and raising an event.
    Thanks in advance

    set the selectedRowIndex = 0 or 1 to whatever number of the row you would like initially checked in your OnCreate or OnInitialization Event Handler with selectedRowIndex being defined in your Page Attributes and then assigned to the tableView.

  • How open URL in an htmlb TableView ?

    Hi guys,
    Here is my problem:
    - I have in my BSP an HTMLB:TableView which display a table of Document Info Record.
    - In this table of DIRs, there is a column which contains an URL in order to open an original.
    ex of url :
    https://daplmdv.sylvania.com:10443/sap/bc/bsp/sap/CVAW_VIEW_DOCFILE/ViewDocFile.htm?pa_document_key=ZPI000000000000000000185255000FR&pa_file_id=4B5DB6C66C9B0094E1008000C61CAA2D&filename=C:\Copie de SSO on PLP.pdf
    - At the moment in htmlb:tableViewColumn, I use the property onCellClick which call a javascript function :
    window.open( "<%= application->url%>", target='_blank' , 'toolbar=no, menubar=no, resizable=yes, scrollbars=yes');
    - It works in IE6 but I tested it in IE7 and it doesn't work.
    My question :
    Is it possible to open directly the link through the tableView and without using javascript ?
    I tried the property linkClickTarget but it doesn't work
    Thanks for your help

    Hi Regis,
    If you need a new window to load the document contents, then you should use the Javascripts. Because only a javascript could openup a new window in a BSP applicaiton.
    But if you do not want to open up the document in a new window and want to load it by replacing the current page, then you could do it by navigating to another page which could render the document contents in this page.
    Hope it helps!
    Regards,
    Maheswaran

  • BSP htmlb:tableView id="TV_VBAK" table= "//select/I_VBAK"

    Hai Experts,
    I have a small doubt in bsp appllication,
    shall we write like...
    <htmlb:tableView id="TV_VBAK" table= "//SELECT/I_VBAK">
    I am using Class
    ZCL_CONTROLLER_SALES1
    in controller.
    thanks in advance...
    with regards
    babu

    hai
    than q for ur reply.
    point will be rewarded...
    with regards
    babu
    Edited by: babu rs on Mar 5, 2008 4:49 PM

Maybe you are looking for

  • Time Capsule with external HDD as fileserver and backup

    We have two mac minis running Leopard. Today, we have an old Windows 2000 machine that acts as a file server over the network. All files are stored on the PC. Now, we have bought a TC. Sure it's one thing to automatically backup the mac minis, but I

  • Media Smart touch (tx1005au) function not working after upgrading to windows 7

    I have successfully upgarded my tx1005au vista OS to Windows 7. It seems others things are allright but when i tried to use Media Smart fingure touch to rotate pictures it didnt work however my fingure touch was fine for opeing and closing functions.

  • Portal Users Mapping...

    Hi experts, I have a query . now we have 20 SAP R/3 Licenses and 1000 Portal Licenses now we are able to successfully carry out the SSO with R/3 but the problem is how are we going to map the 1000 users to 20 SAP R/3 Ids ? Can some one please help me

  • Non Stock Item- G/L accounts

    Hi , Can anyone tell me how do the consumable items/non stockable items pick or are assigned the G/L accnts.?? Thanks and Regards. Deepika

  • DB Instance fails to automatically start on cluster reboot

    Hello - I cannot get the instance on node1 to automatically start on a reboot. It starts manually, and it starts automatically when the other node is rebooted. I also unregistered it, and re-registered the instance. Here is the errors from $ORA_CRS_H