How To Provide Tab sequence

Hello All.
How to provide the tab sequence in WDA applications.
I want to provide the option of moving to various fields by the click of the tab button in my application.
Rite now its going in a random way.
How to achieve this.
Regards,
SampathKumar G

Dear Sampath,
I have never tried this,but from the posts of others i have understood that, first time you can set the focus on first ui element by coding.
lo_view_contr->request_focus( EXPORTING context_element = lo_element
attribute = 'MATNR' ).
You can write this piece of code in WDDOMODIFYVIEW.
Next  your requirement is when you press tab it should go to other field, for this the fields should be in sequence (input1,input2,savebutton).
try to put all the 3 fields in a transparent container and then
try 1 ) input1 -matrix data
          input2- matrix data
          input3 -matrix data
or try 2)
          input1 -matrix head data
          input2- matrix data
          input3 -matrix data
or try 3)
          input1 -matrix head data
          input2- matrix head data
          input3 -matrix head data
among all the above 3 one may work....let me know which one worked for you.
Regards
Sajid

Similar Messages

  • How to assign TAB Sequence ?

    Hey..
    Can anybody tell me how to assign tab sequence...? I mean if I have some buttons & controls on the front panel try to visualize front panel of login ; whenever I press TAB from keyboard i want the selection of the buttons & controls should be in sequence... Can anyone tell me how to do this...?  
    Solved!
    Go to Solution.

    See Edit\Tabbing Order and, right-click on control Advanced\Key Navigation
    Cheers!
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)

  • How to provide Tab Name programatically for the new Tab created in Tabstrip

    Is it possible to customise the name of the tab for a newly created tab in the tabstrip?

    Yes, it is.
    Declare a global data with the same name as your tab, type c, with the same length (look at the tab attributes in the screen painter).
    Change that in your PBO.
    You're done.

  • User Create/Manage Form - how to set tab sequence

    hi all,
    I'm trying to set the tab seq of the oim user create/manage form such that after 'Last Name' it goes to the UDF 'Date of Birth'. So far I have tried setting the order and as well as the setting it in the formmetadata.xml with not luck.
    any suggestions would be most welcome.
    kind regards,

    Hi Mahesh,
    Use this below code to set the Tab Order.
    Private Sub SetTabVertical()
        Dim i, t, diff As Integer
        Dim oEdit As SAPbouiCOM.EditText
        diff = 50
        For i = 20 To 29
            oItem = oForm.Items.Item(i.ToString)
            oEdit = oItem.Specific
            oEdit.TabOrder = i + diff
        Next
    End Sub
    Private Sub SetTabHorizontal()
        Dim i, t, left, right, diff As Integer
        Dim oEdit As SAPbouiCOM.EditText
        left = 1
        right = 2
        diff = 100
        For i = 20 To 29
            oItem = oForm.Items.Item(i.ToString)
            oEdit = oItem.Specific
                If i < 25 Then
                    oEdit.TabOrder = left + diff
                    left = left + 2
                Else
                    oEdit.TabOrder = right + diff
                    right = right + 2
                End If
        Next
    End Sub
    Regards,
    Noor

  • How to provide Responsiblity level security in OBIEE 11g

    Hi all,
    Can any one tell me how to provide the responsibility level security in OBIEE 11G.

    Hi,
    You need to create group of users and then apply filters over that groups.
    you should establish an additional filter for group1 (user1 belongs to group1 in your example). Follow next steps:
    - Manage -> Security...
    - Groups -> click right group1 and select propierties.
    - Select button 'Permissions...'
    - Select tab 'Filters' -> add new filter.
    - On the column name select the metric you need filter, in your example, customer sales. On the column 'Business model filter' put table.division=division1
    you should add the Customer table to your Sales-fact LTS add apply the filter to this combined LTS as well
    For more:
    http://oraclebizint.wordpress.com/2008/06/30/oracle-bi-ee-1013332-row-level-security-and-row-wise-intialized-session-variables/
    also try http://www.biblogs.com/1969/12/31/obiee-11gr1-security-explained-an-11g-security-overview/
    http://forums.oracle.com/forums/thread.jspa?threadID=1120336
    Thanks
    Deva
    Edited by: Devarasu on Oct 11, 2011 6:08 PM

  • How to create 'Tab page' portal?

    Hi,
    The 'Portal' configuration page provides 3 types 'Dashboard', 'Standalone Portal' and 'Tab Page Portal'. According to help document, to add new 'Tab Page', needs to ask customer support. Does anyone know how to use 'Tab Page Portal'?
    Regards,
    Desmond
    Edited by: user783168 on 23-Oct-2012 19:02

    Similar to Patch 8608149 for 'User Portal' tab on User Transaction in FW 2.2 (default in 2.3.1)?
    Follow How To Create A New Multi-Tab Portal Using Configuration Tools (Doc ID 1356225.1)

  • Tab sequences in adf

    hi how can i tab from one inputtext to another in verticaly way not horizontal,for example i have firstname,lastname,countrycode,username,when i tab from username i what to go to below inputtext not the next inputtext,am in jdeveloper 11.1.1.6.0
    <table border="0" height="280">
          <tr>
            <td width="154" height="24">
              <af:outputLabel value="Username" id="ol1" showRequired="true"/>
            </td>
            <td width="220" height="24">
              <af:inputText simple="true"
                            required="#{bindings.Username.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Username.hints.precision}"
                            shortDesc="#{bindings.Username.hints.tooltip}" id="it1"
                            value="#{bindings.Username.inputValue}"
                            autoSubmit="true" autoTab="false">
                <f:validator binding="#{bindings.Username.validator}"/>
              </af:inputText>
            </td>
            <td height="24">
              <af:outputLabel value="Branch" id="ol18" showRequired="true"/>
            </td>
            <td width="507" height="24">
              <af:selectOneChoice value="#{bindings.Branch.inputValue}"
                                  required="#{bindings.Branch.hints.mandatory}"
                                  shortDesc="#{bindings.Branch.hints.tooltip}"
                                  id="soc10" simple="true">
                <f:selectItems value="#{bindings.Branch.items}" id="si15"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Persal Number" id="ol5" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.PersalNumber.inputValue}"
                            simple="true"
                            required="#{bindings.PersalNumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.PersalNumber.hints.precision}"
                            shortDesc="#{bindings.PersalNumber.hints.tooltip}"
                            id="it7">
                <f:validator binding="#{bindings.PersalNumber.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Offices" id="ol6" showRequired="true"/>
            </td>
            <td height="32" width="507">
              <af:selectOneChoice value="#{bindings.Office.inputValue}"
                                  required="#{bindings.Office.hints.mandatory}"
                                  shortDesc="#{bindings.Office.hints.tooltip}"
                                  id="soc9" simple="true">
                <f:selectItems value="#{bindings.Office.items}" id="si14"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154" height="27">
              <af:outputLabel value="Surname" id="ol3" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Surname.inputValue}"
                            required="#{bindings.Surname.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Surname.hints.precision}"
                            shortDesc="#{bindings.Surname.hints.tooltip}" id="it3"
                            simple="true">
                <f:validator binding="#{bindings.Surname.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Practitioner Number" id="ol24"/>
            </td>
            <td height="27" width="507">
              <af:inputText value="#{bindings.Accreditationnumber.inputValue}"
                            simple="true"
                            required="#{bindings.Accreditationnumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Accreditationnumber.hints.precision}"
                            shortDesc="#{bindings.Accreditationnumber.hints.tooltip}"
                            id="it12">
                <f:validator binding="#{bindings.Accreditationnumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="First Name" id="ol2" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText simple="true"
                            required="#{bindings.Firstname.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Firstname.hints.precision}"
                            shortDesc="#{bindings.Firstname.hints.tooltip}" id="it2"
                            value="#{bindings.Firstname.inputValue}">
                <f:validator binding="#{bindings.Firstname.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Business Role" id="ol13" showRequired="true"/>
            </td>
            <td width="507">
              <af:selectOneChoice value="#{bindings.Roleaccesscode.inputValue}"
                                  shortDesc="#{bindings.Roleaccesscode.hints.tooltip}"
                                  id="soc7"
                                  simple="true">
                <f:selectItems value="#{bindings.Roleaccesscode.items}" id="si12"/>
              </af:selectOneChoice>
              <af:inputText value="#{bindings.Usertype.inputValue}"
                                                 simple="true"
                                                 required="#{bindings.Usertype.hints.mandatory}"
                                                 columns="#{bindings.Usertype.hints.displayWidth}"
                                                 maximumLength="#{bindings.Usertype.hints.precision}"
                                                 shortDesc="#{bindings.Usertype.hints.tooltip}"
                                                 id="it13" visible="false">
                <f:validator binding="#{bindings.Usertype.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Initials" id="ol4" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Initials.inputValue}" simple="true"
                            required="#{bindings.Initials.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Initials.hints.precision}"
                            shortDesc="#{bindings.Initials.hints.tooltip}" id="it4">
                <f:validator binding="#{bindings.Initials.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Email" id="ol7" showRequired="true"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Emailaddress.inputValue}"
                            simple="true"
                            required="#{bindings.Emailaddress.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Emailaddress.hints.precision}"
                            shortDesc="#{bindings.Emailaddress.hints.tooltip}"
                            id="it5">
                <f:validator binding="#{bindings.Emailaddress.validator}"/>
                <af:validateRegExp pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}"
                                   messageDetailNoMatch="The value provided is not a valid email address"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Title" id="ol16" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneRadio id="sor2" layout="horizontal"
                                 value="#{bindings.Gender.inputValue}"
                                 rendered="false">
                <af:selectItem label="Male" value="M" id="si2"/>
                <af:selectItem label="Female" value="F" id="si8"/>
              </af:selectOneRadio><af:selectOneRadio value="#{bindings.Gender.inputValue}"
                                                     shortDesc="#{bindings.Gender.hints.tooltip}"
                                                     id="sor3" layout="horizontal"
                                                     rendered="false">
                <f:selectItems value="#{bindings.Gender.items}" id="si9"/>
              </af:selectOneRadio>
              <af:selectOneChoice value="#{bindings.Titlecode.inputValue}"
                                  shortDesc="#{bindings.Titlecode.hints.tooltip}"
                                  id="soc1"
                                  valueChangeListener="#{pageFlowScope.InternalUserBean.titlevalue}"
                                  simple="true">
                <f:selectItems value="#{bindings.Titlecode.items}" id="si1"/>
              </af:selectOneChoice>
            </td>
            <td>
              <af:outputLabel value="Confirm Email" id="ol11" showRequired="true"/>
            </td>
            <td width="507">
              <af:inputText label="Confirm Email" id="it9" simple="true"/>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Gender" id="ol17" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneRadio id="sor4" layout="horizontal">
                <af:selectItem label="Female" value="F" id="si7"/>
                <af:selectItem label="Male" value="M" id="si10"/>
              </af:selectOneRadio>
            </td>
            <td>
              <af:outputLabel value="Mobile Number" id="ol8" showRequired="false"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Mobilenumber.inputValue}"
                            simple="true"
                            required="#{bindings.Mobilenumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Mobilenumber.hints.precision}"
                            shortDesc="#{bindings.Mobilenumber.hints.tooltip}"
                            id="it8">
                <f:validator binding="#{bindings.Mobilenumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Date Of Birth" id="ol12" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputDate value="#{bindings.Dateofbirth.inputValue}"
                            required="#{bindings.Dateofbirth.hints.mandatory}"
                            shortDesc="#{bindings.Dateofbirth.hints.tooltip}"
                            id="id1" simple="true" columns="20">
                <f:validator binding="#{bindings.Dateofbirth.validator}"/>
                <af:convertDateTime pattern="#{bindings.Dateofbirth.format}"/>
              </af:inputDate>
            </td>
            <td>
              <af:outputLabel value="Business Number" id="ol23"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Businessnumber.inputValue}"
                            simple="true"
                            required="#{bindings.Businessnumber.hints.mandatory}"
                            columns="#{bindings.Businessnumber.hints.displayWidth}"
                            maximumLength="#{bindings.Businessnumber.hints.precision}"
                            shortDesc="#{bindings.Businessnumber.hints.tooltip}"
                            id="it10">
                <f:validator binding="#{bindings.Businessnumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:selectOneRadio id="sor1" layout="horizontal"
                                 value="#{bindings.chckid.inputValue}"
                                 autoSubmit="true" immediate="true">
                <af:selectItem label="ID" value="1" id="si6"/>
                <af:selectItem label="Passport" value="0" id="si16"/>
              </af:selectOneRadio>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Identitynumber.inputValue}"
                            simple="true"
                            columns="20"
                            maximumLength="#{bindings.Identitynumber.hints.precision}"
                            shortDesc="#{bindings.Identitynumber.hints.tooltip}"
                            id="it11" partialTriggers="sor1"
                            visible="#{bindings.chckid.inputValue eq '0'}">
                <f:validator binding="#{bindings.Identitynumber.validator}"/>
                <f:convertNumber groupingUsed="false"/>
                <f:validateLength minimum="13" maximum="13"/>
              </af:inputText><af:inputText value="#{bindings.Passportnumber.inputValue}"
                                           simple="true"
                                           columns="20"
                                           maximumLength="#{bindings.Passportnumber.hints.precision}"
                                           shortDesc="#{bindings.Passportnumber.hints.tooltip}"
                                           id="it6" partialTriggers="sor1"
                                           visible="#{bindings.chckid.inputValue eq '1'}">
                <f:validator binding="#{bindings.Passportnumber.validator}"/>
              </af:inputText>
            </td>
            <td nowrap="nowrap">
              <af:outputLabel value="Professional Category" id="ol9"
                              showRequired="true"/>
            </td>
            <td width="507">
              <af:selectOneChoice value="#{bindings.Profcatcode.inputValue}"
                                  label="#{bindings.Profcatcode.label}"
                                  required="#{bindings.Profcatcode.hints.mandatory}"
                                  shortDesc="#{bindings.Profcatcode.hints.tooltip}"
                                  id="soc2" simple="true">
                <f:selectItems value="#{bindings.Profcatcode.items}" id="si4"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Expiry Date" id="ol22"
                              showRequired="#{bindings.chckid.inputValue eq '0'}"
                              partialTriggers="sor1"/>
            </td>
            <td width="220">
              <af:inputDate value="#{bindings.Passportexpdate.inputValue}"
                            shortDesc="#{bindings.Passportexpdate.hints.tooltip}"
                            id="id2" simple="true" partialTriggers="sor1"
                            disabled="#{bindings.chckid.inputValue eq '1'}">
                <f:validator binding="#{bindings.Passportexpdate.validator}"/>
                <af:convertDateTime pattern="#{bindings.Passportexpdate.format}"/>
              </af:inputDate>
            </td>
            <td width="163" height="33" nowrap="nowrap"> </td>
            <td width="507" height="33"> </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Country" id="ol10" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneChoice value="#{bindings.Countrycode.inputValue}"
                                  shortDesc="#{bindings.Countrycode.hints.tooltip}"
                                  id="soc3" simple="true" autoSubmit="true">
                <f:selectItems value="#{bindings.Countrycode.items}" id="si3"/>
              </af:selectOneChoice>
            </td>
            <td width="163"> </td>
            <td width="507" align="right">
              <af:commandButton text="Submit" id="cb3"
                                action="#{pageFlowScope.InternalUserBean.onSaveRecord}"/><af:selectOneChoice value="#{bindings.Commcode.inputValue}"
                                  label="#{bindings.Commcode.label}"
                                  required="#{bindings.Commcode.hints.mandatory}"
                                  shortDesc="#{bindings.Commcode.hints.tooltip}"
                                  id="soc4" visible="false">
                <f:selectItems value="#{bindings.Commcode.items}" id="si5"/>
              </af:selectOneChoice>
            </td>
          </tr>
        </table>

    but my values are not inside the forms they are inside html table
    <table border="0" height="280">
          <tr>
            <td width="154" height="24">
              <af:outputLabel value="Username" id="ol1" showRequired="true"/>
            </td>
            <td width="220" height="24">
              <af:inputText simple="true"
                            required="#{bindings.Username.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Username.hints.precision}"
                            shortDesc="#{bindings.Username.hints.tooltip}" id="it1"
                            value="#{bindings.Username.inputValue}"
                            autoSubmit="true" autoTab="false">
                <f:validator binding="#{bindings.Username.validator}"/>
              </af:inputText>
            </td>
            <td height="24">
              <af:outputLabel value="Branch" id="ol18" showRequired="true"/>
            </td>
            <td width="507" height="24">
              <af:selectOneChoice value="#{bindings.Branch.inputValue}"
                                  required="#{bindings.Branch.hints.mandatory}"
                                  shortDesc="#{bindings.Branch.hints.tooltip}"
                                  id="soc10" simple="true" autoSubmit="true">
                <f:selectItems value="#{bindings.Branch.items}" id="si15"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Persal Number" id="ol5" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.PersalNumber.inputValue}"
                            simple="true"
                            required="#{bindings.PersalNumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.PersalNumber.hints.precision}"
                            shortDesc="#{bindings.PersalNumber.hints.tooltip}"
                            id="it7">
                <f:validator binding="#{bindings.PersalNumber.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Offices" id="ol6" showRequired="true"/>
            </td>
            <td height="32" width="507">
              <af:selectOneChoice value="#{bindings.Office.inputValue}"
                                  required="#{bindings.Office.hints.mandatory}"
                                  shortDesc="#{bindings.Office.hints.tooltip}"
                                  id="soc9" simple="true">
                <f:selectItems value="#{bindings.Office.items}" id="si14"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154" height="27">
              <af:outputLabel value="Surname" id="ol3" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Surname.inputValue}"
                            required="#{bindings.Surname.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Surname.hints.precision}"
                            shortDesc="#{bindings.Surname.hints.tooltip}" id="it3"
                            simple="true">
                <f:validator binding="#{bindings.Surname.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Practitioner Number" id="ol24"/>
            </td>
            <td height="27" width="507">
              <af:inputText value="#{bindings.Accreditationnumber.inputValue}"
                            simple="true"
                            required="#{bindings.Accreditationnumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Accreditationnumber.hints.precision}"
                            shortDesc="#{bindings.Accreditationnumber.hints.tooltip}"
                            id="it12">
                <f:validator binding="#{bindings.Accreditationnumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="First Name" id="ol2" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText simple="true"
                            required="#{bindings.Firstname.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Firstname.hints.precision}"
                            shortDesc="#{bindings.Firstname.hints.tooltip}" id="it2"
                            value="#{bindings.Firstname.inputValue}">
                <f:validator binding="#{bindings.Firstname.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Business Role" id="ol13" showRequired="true"/>
            </td>
            <td width="507">
              <af:selectOneChoice
                                  shortDesc="#{bindings.Roleaccesscode.hints.tooltip}"
                                  id="soc7"
                                  simple="true"
                                  valueChangeListener="#{pageFlowScope.InternalUserBean.InternalType}"
                                  value="#{pageFlowScope.InternalUserBean.userType}"
                                  partialTriggers="soc10">
                <af:forEach var="item"
                            items="#{pageFlowScope.InternalUserBean.childRoles}">
                  <af:selectItem value="#{item}" label="#{item}" id="tu7g"/>
                </af:forEach>
              </af:selectOneChoice>
              <af:inputText value="#{bindings.Usertype.inputValue}"
                                                 simple="true"
                                                 required="#{bindings.Usertype.hints.mandatory}"
                                                 columns="#{bindings.Usertype.hints.displayWidth}"
                                                 maximumLength="#{bindings.Usertype.hints.precision}"
                                                 shortDesc="#{bindings.Usertype.hints.tooltip}"
                                                 id="it13" visible="false">
                <f:validator binding="#{bindings.Usertype.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Initials" id="ol4" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Initials.inputValue}" simple="true"
                            required="#{bindings.Initials.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Initials.hints.precision}"
                            shortDesc="#{bindings.Initials.hints.tooltip}" id="it4">
                <f:validator binding="#{bindings.Initials.validator}"/>
              </af:inputText>
            </td>
            <td>
              <af:outputLabel value="Email" id="ol7" showRequired="true"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Emailaddress.inputValue}"
                            simple="true"
                            required="#{bindings.Emailaddress.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Emailaddress.hints.precision}"
                            shortDesc="#{bindings.Emailaddress.hints.tooltip}"
                            id="it5">
                <f:validator binding="#{bindings.Emailaddress.validator}"/>
                <af:validateRegExp pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}"
                                   messageDetailNoMatch="The value provided is not a valid email address"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Title" id="ol16" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneRadio id="sor2" layout="horizontal"
                                 value="#{bindings.Gender.inputValue}"
                                 rendered="false">
                <af:selectItem label="Male" value="M" id="si2"/>
                <af:selectItem label="Female" value="F" id="si8"/>
              </af:selectOneRadio><af:selectOneRadio value="#{bindings.Gender.inputValue}"
                                                     shortDesc="#{bindings.Gender.hints.tooltip}"
                                                     id="sor3" layout="horizontal"
                                                     rendered="false">
                <f:selectItems value="#{bindings.Gender.items}" id="si9"/>
              </af:selectOneRadio>
              <af:selectOneChoice value="#{bindings.Titlecode.inputValue}"
                                  shortDesc="#{bindings.Titlecode.hints.tooltip}"
                                  id="soc1"
                                  valueChangeListener="#{pageFlowScope.InternalUserBean.titlevalue}"
                                  simple="true">
                <f:selectItems value="#{bindings.Titlecode.items}" id="si1"/>
              </af:selectOneChoice>
            </td>
            <td>
              <af:outputLabel value="Confirm Email" id="ol11" showRequired="true"/>
            </td>
            <td width="507">
              <af:inputText label="Confirm Email" id="it9" simple="true"
                            columns="20"/>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Gender" id="ol17" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneRadio id="sor4" layout="horizontal">
                <af:selectItem label="Female" value="F" id="si7"/>
                <af:selectItem label="Male" value="M" id="si10"/>
              </af:selectOneRadio>
            </td>
            <td>
              <af:outputLabel value="Mobile Number" id="ol8" showRequired="false"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Mobilenumber.inputValue}"
                            simple="true"
                            required="#{bindings.Mobilenumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Mobilenumber.hints.precision}"
                            shortDesc="#{bindings.Mobilenumber.hints.tooltip}"
                            id="it8">
                <f:validator binding="#{bindings.Mobilenumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Date Of Birth" id="ol12" showRequired="true"/>
            </td>
            <td width="220">
              <af:inputDate value="#{bindings.Dateofbirth.inputValue}"
                            required="#{bindings.Dateofbirth.hints.mandatory}"
                            shortDesc="#{bindings.Dateofbirth.hints.tooltip}"
                            id="id1" simple="true" columns="20">
                <f:validator binding="#{bindings.Dateofbirth.validator}"/>
                <af:convertDateTime pattern="#{bindings.Dateofbirth.format}"/>
              </af:inputDate>
            </td>
            <td>
              <af:outputLabel value="Business Number" id="ol23"/>
            </td>
            <td width="507">
              <af:inputText value="#{bindings.Businessnumber.inputValue}"
                            simple="true"
                            required="#{bindings.Businessnumber.hints.mandatory}"
                            columns="20"
                            maximumLength="#{bindings.Businessnumber.hints.precision}"
                            shortDesc="#{bindings.Businessnumber.hints.tooltip}"
                            id="it10">
                <f:validator binding="#{bindings.Businessnumber.validator}"/>
              </af:inputText>
            </td>
          </tr><tr>
            <td width="154">
              <af:selectOneRadio id="sor1" layout="horizontal"
                                 value="#{bindings.chckid.inputValue}"
                                 autoSubmit="true" immediate="true">
                <af:selectItem label="ID" value="1" id="si6"/>
                <af:selectItem label="Passport" value="0" id="si16"/>
              </af:selectOneRadio>
            </td>
            <td width="220">
              <af:inputText value="#{bindings.Identitynumber.inputValue}"
                            simple="true"
                            columns="20"
                            maximumLength="#{bindings.Identitynumber.hints.precision}"
                            shortDesc="#{bindings.Identitynumber.hints.tooltip}"
                            id="it11" partialTriggers="sor1"
                            visible="#{bindings.chckid.inputValue eq '0'}">
                <f:validator binding="#{bindings.Identitynumber.validator}"/>
                <f:convertNumber groupingUsed="false"/>
                <f:validateLength minimum="13" maximum="13"/>
              </af:inputText><af:inputText value="#{bindings.Passportnumber.inputValue}"
                                           simple="true"
                                           columns="20"
                                           maximumLength="#{bindings.Passportnumber.hints.precision}"
                                           shortDesc="#{bindings.Passportnumber.hints.tooltip}"
                                           id="it6" partialTriggers="sor1"
                                           visible="#{bindings.chckid.inputValue eq '1'}">
                <f:validator binding="#{bindings.Passportnumber.validator}"/>
              </af:inputText>
            </td>
            <td nowrap="nowrap">
              <af:outputLabel value="Professional Category" id="ol9"
                              showRequired="true"/>
            </td>
            <td width="507">
              <af:selectOneChoice value="#{bindings.Profcatcode.inputValue}"
                                  label="#{bindings.Profcatcode.label}"
                                  required="#{bindings.Profcatcode.hints.mandatory}"
                                  shortDesc="#{bindings.Profcatcode.hints.tooltip}"
                                  id="soc2" simple="true">
                <f:selectItems value="#{bindings.Profcatcode.items}" id="si4"/>
              </af:selectOneChoice>
            </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Expiry Date" id="ol22"
                              showRequired="#{bindings.chckid.inputValue eq '0'}"
                              partialTriggers="sor1"/>
            </td>
            <td width="220">
              <af:inputDate value="#{bindings.Passportexpdate.inputValue}"
                            shortDesc="#{bindings.Passportexpdate.hints.tooltip}"
                            id="id2" simple="true" partialTriggers="sor1"
                            disabled="#{bindings.chckid.inputValue eq '1'}">
                <f:validator binding="#{bindings.Passportexpdate.validator}"/>
                <af:convertDateTime pattern="#{bindings.Passportexpdate.format}"/>
              </af:inputDate>
            </td>
            <td width="163" height="33" nowrap="nowrap"> </td>
            <td width="507" height="33"> </td>
          </tr><tr>
            <td width="154">
              <af:outputLabel value="Country" id="ol10" showRequired="true"/>
            </td>
            <td width="220">
              <af:selectOneChoice value="#{bindings.Countrycode.inputValue}"
                                  shortDesc="#{bindings.Countrycode.hints.tooltip}"
                                  id="soc3" simple="true" autoSubmit="true">
                <f:selectItems value="#{bindings.Countrycode.items}" id="si3"/>
              </af:selectOneChoice>
            </td>
            <td width="163"> </td>
            <td width="507" align="right">
              <af:commandButton text="Submit" id="cb3"
                                action="#{pageFlowScope.InternalUserBean.onSaveRecord}"/><af:selectOneChoice value="#{bindings.Commcode.inputValue}"
                                  label="#{bindings.Commcode.label}"
                                  required="#{bindings.Commcode.hints.mandatory}"
                                  shortDesc="#{bindings.Commcode.hints.tooltip}"
                                  id="soc4" visible="false">
                <f:selectItems value="#{bindings.Commcode.items}" id="si5"/>
              </af:selectOneChoice>
            </td>
          </tr>
        </table>

  • How do i make sequence folders in Premier Pro CC?

    I have only begun using Premiere Pro CC, and I want to know how to make different sequences in the same timeline with the same audio & video clips, so I don't have to save a new file and start all my editing all over again everytime I want to try out a different edit. I asked a friend who has used Final Cut Pro , and Premiere CS6, and she says there should be something called 'Sequence Folders' where you create a new tab for each different edit on the same timeline. However she cannot find where you create the sequence folders in CC like you used to in CS6. I'm sure it's probably a simple button or command hidden in plain sight. Can anyone tell me if this function is still available in CC please?

    It sounds like you just want to create copies of your original sequence.
    One of the ways to do that is to right click the original sequence (before you make any edits) and right click > copy.  The right click  in the media panel or in a folder in the media panel and then paste it as many times as you want copies.
    Another way would be to create new sequences and copy and paste the media from the original sequence into those new sequences.

  • How to provide hyperlink in alv

    Hi,
    how to provide hyperlink only for one column in alv in webdynpro abap
    Thanks and regards,
    Sridevi.D

    DATA:
        lr_column_settings TYPE REF TO if_salv_wd_column_settings,
        lr_link_to_action TYPE REF TO cl_salv_wd_uie_link_to_action,
        lr_col type ref to cl_salv_wd_column.
      lr_column_settings ?= wd_this->alv_config_table.
      lr_col = lr_column_settings->get_column( 'MATNR' ).
      CREATE OBJECT lr_link_to_action.
      lr_link_to_action1->SET_TEXT_FIELDNAME('MATNR').
      lr_col->set_cell_editor( lr_link_to_action ).
    The variable alv_config_table is defined in the attribute tab of the view which is reference to the class CL_SALV_WD_CONFIG_TABLE
    Use this code in the init method of the View.
    Reward points if helpful.
    Thanks in advance.

  • Tab sequence on conditional forms?

    I have a form with several conditional parts stored in fragments. I found some odd behavior with the tab sequence: Using LC Designer v8.2 I set the appropriate tab sequence for both container document and fragements. But when running the form it seems like part's appearing conditionally (based on user interaction) are positioned after regular form-parts in tab sequence. Even though the conditional parts are in the middle of the form! :S
    Does anyone has an idea how to solve this?

    I'm familiar with this new tab-feature and actually did use it to set the proper tab-order. But as a result I get this weird behavior on conditionally shown parts.
    The "geographic order" would be OK for me... if it would work like that, but it doesn't: the tab-indexes of subforms shown in the middle of the form are sequentially ordered AFTER parts that were visible at startup. So now when walking through the form by hitting tab, it skips the conditional parts until the end of the form is reached and than it jumps back to the conditional parts.
    Can it have something to do with fragments that are hidden by default? In the tab-index list you see the indexes of all items. Also the objects part of underlying fragments. But objects part of hidden subforms or fragments disappear in this list and seems not be indexed any longer.
    Any idea on solving this?

  • How to provide text formatting options to user from a text field

    Hi,
    My requirement is - in the interactive form, a comments field needs to be provided where user should be able to enter text with formatting options like
    Headers
    indentations
    bold/italic
    bullet points and numbers
    Once user enters the formatted texts in a text field, data needs to be displayed/printed in the same format. Could you help me on how to provide these formatting options to the user for a particular text field?
    I understand that once I define the text field with format XHTML (with RTF), user formatting can be captured and displayed in the same way. But I am not sure on how to provide the formatting options for the text field.
    Thank you,
    Madhu

    Hi,
    if you select a text field for Rich Text and the press Ctrl + E you'll get a bar for all available text formatting options in Acrobat/Reader.

  • How to provide text editor in dialog program

    i have a requirement to enter upto 300 words in a dialog box how to provide text editor in dialog program

    you can use the custom controls for the same
    check this below link may be useful for you.........
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm

  • How to provide hyperlink for a particular field in ALV

    Hi,
      How to provide hyperlink for a particular field in alv report.
    Regards,
    Ramu.

    Yes you can do that. using the fieldcatalog there is an option for that. give HOT_SPOT = 'X'. for the column you want.
    wa_field-hotspot = 'X'.
    REPORT  ztest_alv.
    TYPE-POOLS:slis.
    DATA:it_fieldcat  TYPE  slis_t_fieldcat_alv,
         wa_field LIKE LINE OF it_fieldcat.
    DATA: BEGIN OF it_likp OCCURS 0,
           vbeln TYPE likp-vbeln,
          END OF it_likp.
    DATA: layout TYPE slis_layout_alv.
    wa_field-fieldname = 'VBELN'.
    wa_field-tabname = 'IT_LIKP'.
    wa_field-hotspot = 'X'.
    wa_field-outputlen = 10.
    wa_field-no_zero = 'X'.
    wa_field-seltext_l = 'Sales'.
    APPEND wa_field TO it_fieldcat.
    SELECT vbeln FROM likp
    UP TO 10 ROWS
    INTO TABLE it_likp.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        is_layout               = layout
        i_callback_user_command = 'USER_COMMAND'
        it_fieldcat             = it_fieldcat
      TABLES
        t_outtab                = it_likp
      EXCEPTIONS
        program_error           = 1.
    *&      Form  user_Command
    *       text
    *      -->UCOMM      text
    *      -->SELFIELD   text
    FORM user_command USING ucomm TYPE sy-ucomm
                        selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN '&IC1'.
          SET PARAMETER ID 'VL'  FIELD selfield-value.
          CALL TRANSACTION 'VL02N' AND SKIP FIRST SCREEN.
      ENDCASE.
    ENDFORM.                    "user_Command

  • How to create tab pages in EP

    Hi Experts,
    Can you please let me know how to create tab pages in EP. I have created one page. In this page, I have to place 2 iViews as tab pages. Can you please let me know how I can acheive this?
    Regards,

    Stuart,
    Within a SAP Portal Tabs are not used like you want them to
    By default Tabs are used inside an iView and not to "tab" between iViews on a page...
    The most straightforward solution would be creating a custom PageLayout that you can assign to your page.
    I would sugest to implement this custom PageLayout with DIV layers and trigger "tabbing" via JavaScript eventing.
    For more infor on how to create a custom PageLayout take a look at here:
    [http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/42/efbac120711a71e10000000a422035/frameset.htm]
    Good Luck,
    Benjamin Houttuin

  • How to setup tab in a pdf form

    can someone explain how to set tabs in a writeable pdf form

    If you're asking about setting tab stops for a text field, there is not a means to do this. Though you can insert a tab character into a field value programmatically, I've never found a way to do it from the keyboard.

Maybe you are looking for

  • My MacBook is a 2009 working on Mac OS X 10.5.8

    and I can't seem to install the latest version of iTunes 11 without OS X 10.6.8 (Lion?) or later... Do I have to buy a new computer?  I don't want to pay for software if it's not compatible. Help!

  • How do I get rid of grey sidebar for bookmarks after software update

    Just did software update, and now there is a grey toolbar on left that displays my bookmarks. Not functional to me. How do I get back original bookmark page. I realize that I can hide left toolbar, but it jus comes up again when I go to bookmarks. Th

  • How to procced with JMS scenario.

    Hello everyone, I want to test File to JMS scenario. I believe XI provides JMS adapter as a part of it, Am I correct? II am totally blank , from where should I start :$---- <b>which jar files i need? From where can I get them ? WhereI should I deploy

  • Lucid keypad locks and gets into a loop

    Does anyone else have a problem with putting a pin # in the Lucid to lock the screen?  After entering my pin it works at first, but I usually shut it down overnight to conserve the battery - usually the next day when I try to put the pin it, it accep

  • 8320 with a problem with BES activation. Phone asking for Activation Server address.

    I have a remote user, whose BB 8320 is asking for am Activation Server address. I looked thru the forms and the KB and the only two suggestion are use the servers SMTP address or leave blank neither have worked. The user wiped the blackberry before t