Setting the TAB

i have 4 tabs in my Module, while saving data i have checked certain conditions in PERRFORM, but i want to set the tab to in which my condition fails, i am not able to set the tab. i hope u got my problem.
abhishek suppal

Hi
I hope the code below may help :
Define
Data : pressed_tab LIKE sy-ucomm VALUE c_ticket-tab1,
IN PBO
  MODULE ticket_active_tab_set.
  CALL SUBSCREEN ticket_sca
    INCLUDING g_ticket-prog g_ticket-subscreen.
MODULE ticket_active_tab_set OUTPUT.
  ticket-activetab = pressed_tab.
  CASE pressed_tab.
    WHEN c_ticket-tab1.
      g_ticket-subscreen = '0204'.
    WHEN c_ticket-tab2.
      g_ticket-subscreen = '0205'.
    WHEN c_ticket-tab3.
      g_ticket-subscreen = '0206'.
    WHEN OTHERS.
     DO NOTHING
  ENDCASE.
ENDMODULE.                 " TICKET_ACTIVE_TAB_SET  OUTPUT
In the form, where you are checking the error, you set your pressed_tab as desired.
Regards,
Gagan

Similar Messages

  • Unable to set the tab order in a form I am creating

    Hello,
    I have a form that I created a bunch of fields for. I did make some of the fields out of order, but was not concerned as I figured I would set the tab order as I have in the past.
    However, for this set of fields, not mater what I do, and how many times I try to set the tab order manually, it skips over a bunch of fields. Even if I try to let acrobat automatically set the tab order, it still doesn't work.
    These fields have been made from scratch as well as, copy and pasted to make sure their properties were all the same, other than a unique name. I can't figure this one out.
    Has anyone ever had this happen to them before?
    thanks!!
    babs

    Hi everyone...thanks!!
    I did check the read only issue first, and that wasn't it... and I made sure they were just text fields and never started out as radio buttons...
    At one poin,t a bad param error popped up..... ah ha!!
    So, I exported the file back to postscript (deleting all the fields first)
    and then made new ones and it worked fine...
    Must have been a corrupted file ;-)
    Thanks for the help!!!!
    babs

  • Is it possible to set the tab order of components on a form?

    I'm trying to set the tab order of text boxes on a form, that uses GridBag layout. It seems that the tab order is automatically set according to the order that components are added to the form in. Is there a way to change it manually? I really don't want to redo the entire form...

    I have no idea what you're talking about. It might be worth to look for the right forum which suits your actual problem. Are you talking about Swing? Then post it in the Swing forum. Are you talking about JSP? Then post it in the JSP forum.
    Go to the forum index to see what forums are all available: http://forum.java.sun.com/index.jspa?tab=java

  • Need to set the tab order in HTMLB controls

    I readed in another thread that it was not possible to set the tab order in HTMLB controls on BSP forms.
    However it was possible to do a little workaround, by setting the tooltip property, and put in the tabindex in that. Because Browsers do understand the property tabindex.
    Examble:
    <htmlb:inputField id="authorfname1"
    tooltip='tooltip1" tabindex="2'
    value = "<%= authorfname %>" />
    HTML Output would be like this:
    <input title="tooltip1" tabindex="2" class="sapEdfTxtEnbl"
    size="20" name="authorfname1" id="authorfname1" value="">
    <b>It works a little bit differently in my HTMLB controls.</b> Output is like this:
    <input title="tooltip1&quot; tabindex=&quot;2" class="sapEdfTxtEnbl"
    size="20" name="authorfname1" id="authorfname1" value="">
    <i>It doesn't work. " becomes &quot; <b>How do I solve this?</b></i>

    thanks for sharing the info.
    to handle your issue you could do the following
    <% data: replace_string type string .
    clear replace_string .
    replace_string = `<input  tabindex="2"`.
                  %>
                  <bsp:findAndReplace find    = "<input"
                                      replace = "<%= replace_string                  %>" >
                   <htmlb:inputField id="authorfname1"
    tooltip="tooltip1"
    value = "<%= authorfname %>" />
                  </bsp:findAndReplace>
    Hope this helps.
    Regards
    Raja

  • How can I set the tab order in a form?

    How can I set the tab order in a form?

    Sorry. I don't mean page tabs, but the order in which form fields are selected by the tab key. In simple html there is a value called tabindex and I was just wondering if there is a way to assign this order within a portal form. I have basically recreated the form with a custom layout and adjusted the table structure to force the order I was looking for, but it would be a nice add for future versions.

  • Anyway to set the TAB order in a form?

    Hi all,
    Is there anyway to set the TAB order in a form where it can skip from tabbiong to the labels... and also when to form regions are side by side to direct the tabbing to go down the first form then up to the top of the second and down the second...???
    Some languages allow to assign tab order... 10,20,30,40..etc.
    Thank you, Bill

    Hi Andy!
    I just started to set the tabindex on each item... it wasn't working.. I copied the example you gave.. ha.. you had taxindex --- TAX and I too didn't notice it.. so just want to mention it incase anyone does what I did.. copies without thinking..
    As you said in the previous post it is TABINDEX="n"
    Ha.. its a Monday.. Bill

  • Using MS Access Web App, can you set the tab order of the fields on a form?

    Using MS Access Web App, can you set the tab order of the fields on a form?  Doesn't appear to be a property.  I don't see a programmatic method.  I saw someone suggest using goto control on the after update event trigger but what if the person
    doesn't edit the field?  No event would be fired.
    Jim

    Hi Jim,
    >>Using MS Access Web App, can you set the tab order of the fields on a form?
    I am afraid you could not. In Web applications, the tab order is set automatically and cannot be changed.
    (From
    https://support.office.com/en-au/article/Set-the-tab-order-for-controls-3d7f749c-5a53-42b2-bb0e-2323fa044e2e)
    >> I saw someone suggest using goto control on the after update event trigger but what if the person doesn't edit the field?  No event would be fired.
    The goto method is a workaround, but it should be triggered by a specific event. What I can figure out is changing the order of the fields.
    If this is a feature you want to include in future versions of Access Web app, please submit a feedback as the picture below:
    Best Regards,
    Edward
    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.

  • Setting the tab text color in JTabbedPane

    How do I set the text color of tabs? I have to make the text color of one tab to blue and the other tab text color to red. Thanks.

    I tried giving the below but text color is the default it did not change. 'this' is the JTabbedPane. Any other suggessions? Thanks.
    this.setForegroundAt(0,Color.blue);
    this.setForegroundAt(1,Color.red);

  • How can I set the "tab groups" page as my home page?

    I've searched for about:config options, and even installed Customizable Shortcuts 0.5.11.1 with the hopes that there would be a shortcut for "options" or "preferences", so that I could simply click "set as home page" while in the tab groups page. No dice. I've just started working with tab groups again (I was away on Chrome for maybe a year... but I'm back), and I think it would be great if I could simply have all my tab groups displayed when I start firefox up. How do I do it?

    The tab view page is dynamically populated based on the tab groups in the current window. Although the "page" has an address, opening that address directly yields a blank tab, so I think that's a dead end.
    Since the keyboard shortcut is Ctrl+Shift+e, maybe you can find a way to send that automatically?
    Also, if you rely heavily on tab groups, I assume you are using something like the [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager extension] to protect against data loss. Because tab groups (and of course the tabs themselves) are stored only long enough to restore the immediately previous session, it's not too difficult to accidentally lose them all.

  • How can I set the tab order of text box controls on each page of a tab control?

    I need to be able to select the tabbing order of individual controls on a single page of a tabbed control. How??

    In LV 6.1 an up you should be ablel to right click on the edge of the tab control when the tab-page in question is selected.
    The bttom selcetion in the pop-up is "Reoder controls in page..."
    selecting this option will switch editing modes to allow you to specify the ored, just like in a cluster.
    I seem to remeber in older versions you had to drag the tabable controls off the tab control, specify the tabbing oder and then drag them back on. The oldest version I have on this machine is 6.1 so that all I can speak for at the moment.
    I hope this helps,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Why does the tab order I set change when I enable usage rights?

    I am using Adobe Pro 9.1.2 - set the tab order manually in a 4 page document - test everything - works great.  Then, I enable usage rights, go back into the document to test, and the tabbing is out of order again.  I have done this multiple times and what should have been a simple task is now taking hours to complete.  Help!!!  This didn't happen until I upgraded to this version.

    Helvetica Neu 10 pt is the default text style for Numbers tables.
    Setting a different style to one, some, or all cells does not make that different style the 'default.' Here's an example of the effects of three different sets of actions. All cells in the table had been set to display text as Jazz LET, 12 pt. The original content of B3, C3, and D3 was the same as is shown in C4. For each of the cells in row 3, the procedure described below was carried out, then the text shown was typed into the cell.
    When you Select a cell, then "Cut" the cell, the cut includes the text AND any style that has been set for that cell, and the cell reverts to the default style. See cell B3 in the example.
    If you Select the cell, Copy, then press delete, the text (and style) are copied, the content (text), but not the style, is deleted. See C3.
    If you click on the cell to select it, click again to place the insertion point in the cell (to edit the text), then Select the text and press delete (or Cut), then the text is removed from the cell, but the style remains. See D3.
    Regards,
    Barry

  • F.F will not set tabs in the tab bar, always one tab in the L/H corner. one moment it will then it wont. OS is Win 7 Ult

    Have set the tabs under options clicking the first 3 items. I was getting the tab bar to work with these settings but suddenly now every new page is under one tab. FF seems to be very unstable under Win 7 Ult. Its OK under Win XP sp3 Home.
    == This happened ==
    Every time Firefox opened

    http://support.mozilla.com/en-US/kb/Safe+Mode
    As a solution for your problem (now I understand it), you can:
    - middle click links to open them in new tabs;
    - right click links and select "Open Link in New Tab" to open them in new tabs;
    - open a new tab prior to opening a new link or doing a search or typing something new in the location bar
    - press ALT+ENTER instead of ENTER when you type something in the location bar or search bar to open the result in a new tab
    - go into Tools > Options > Tabs to configure Firefox to open new links wherever you like.
    Hopefully this is the answer you're looking for.

  • How to Control the "tab order" in Adobe Captivate 8?

    Hi Guys,
    I was just trying to insert "tab order" to the module that I am creating using Adobe Captivate Version 8. I was not able to insert the tab order feature when I switched to the responsive project mode (project for Destop, Tablet, and Mobile).
    Kindly guide me to insert tab order. I have checked all the online resources but was not able to find the relevant steps to create "tab order" in Captivate 8.
    Thanks!
    Peace

    Hi,
    You can set the Tab order for Interactive objects from the Properties panel:
    This will open a dialog where you can arrange the order for all the interactive objects on your slide.
    Hope this helped!
    Regards,
    Mohana

  • Setting current tab

    I have a page which holds functionality for two different tabs. The current tab is defined by a combination of page id and the value of an application level item.
    How can I programmatically set the current tab via an onload after header process? Do I set wwv_flow.g_current_tab or wwv_flow.g_step_tab_set?

    you could do the following:
    use the array g_tab_name to retrieve the order in which the tab parameters are stored in the array variables.
    ie
    for i in 1..g_tab_name.count loop
    :PX_TABS := ';' || g_tab_name(i);
    end loop;
    then you could on the fly set the tab current for pages value for the required tab depending on your application level item:
    in an application level on load before header process do:
    if app_item = 'X' then
    wwv_flow.g_tab_also_current_for_pages(1) := :APP_PAGE_ID;
    elsif app_item = 'Y' then
    wwv_flow.g_tab_also_current_for_pages(2) := :APP_PAGE_ID;
    end if;
    (Set the condition on this process to only fire for pages which can be current for multiple tabs)
    You will need to ensure that the tabs exist on every page you wish them to appear (other wise the process will fail). This can be done by setting the 'also current for pages' option for every page in the tab and then saving. The tabset will now appear on every page...
    You now delete the page numbers (from the 'also current for pages' option) which can be current for more than one tab and save the tab again. The pages current for multiple tabs will now have the tabset appear in the page definition but will not be current for any tab. The required tab will now be set to be current at runtime for these pages by the above process.
    hope the above makes sense and was what you required ;-)

  • Quick Tip: How do I set up tab order in a form? | Acrobat X Tips & Tricks | Adobe TV

    Learn how to set the tab order in a PDF form using Acrobat X Std. or Pro. to improve the appearance of your PDF form and also make it easier for users to use.
    http://adobe.ly/zMIMWJ

    Well, most users want custom tab orders. To do that...
    Go to Menu Forms --> Add or Edit Fields...
    If necessary, make sure the left-side bar opens up to the form fields listing.
    There's a dropdown menu at the top of this sidebar that says "Tab Order"
    Click it and select "Order Tabs Manually"
    Then drag and drop the tabs sequentially in the list in the sidebar. When you close Form Editing & test, you should be able to tab through in your new order.
    HTH

Maybe you are looking for

  • Help please on my nokia 111

    I have flash my phone in past month but now i realise i can not download and install a new updated version and the version installed after flashing it's of low quality in comparison of new version which you can watch video online, help please

  • Role Analysis Report

    I'm a user of the GRC 10.0 module, and have a question around the role analysis report.  I've run a risk analysis violations report, and noted SoD/violations for 1169 roles, out of 35214 total roles (see attached screenshot).  That said, my understan

  • Permissions in Library

    I've been having a few issues since I changed permissions in the Prefrences folder of my Library (in my account only). I think (but I'm not positive), some of the issues I've had in the last few weeks may be related. Before I did it, the program Gara

  • OSB 10gR3, XSD's, namespaces, etc

    I have 2 questions here - they're pretty intertwined, so if one is answered it may answer the other. 1) When an xml schema defines a namespace as follows: xmlns:ci="http://test.com/temp/customerinfo" Why does OSB seem to ignore the "ci" and switch it

  • Photshop cs4 will not open

    Hi got a bit of a wired one here for you I had photoshop working fine on windows xp, I tried to install the windows live 11 and a error message came up that it was not win/32 compatable or something so I canceled it and carried on. I opened photoshop