Quantcast
Channel: SCN : Discussion List - SAP Enterprise Portal : Administration and Development
Viewing all articles
Browse latest Browse all 2686

unable to add multiple dropdown in Reactivation PCR (com.freescale.hcm.pcr_non_employee_reactivation)

$
0
0

Hi Experts,
According to the requirenment we need to add Four dropdown in the IsrMain.jsp which ref to reactivation PCR.

I am able to add 2 dropdown which are working fine, but teh moment I add the third drop down it gives me error.

Also if i add any hbj tab in td it gives error but for input tags its works fine . I am using NWDS 7.01 to change this com.freescale.hcm.pcr_non_employee_reactivation.PAR file

 

Below is my code:

 

------------------------------------------------------------------------------------

<%-- START of 4 questions  --%>

<tr>
               <td>
               <font size="1.95"> Answer the 4 questions below :</font>
               </td>
               </tr>
             
             
              <%-- First Question--%>
            
              <tr>
              <td>
              <font size="1.9">1.The tasks this Contingent Worker will be completing:</font>
              </td>
              <td colspan=2>


               <hbj:dropdownListBox
                 id="SEL_WORKLOAD_EMP"
                 selection='<%= ISR.getValue("SEL_WORKLOAD_EMP") %>'
                 onSelect="submit"
                 jsObjectNeeded="TRUE">


                 <hbj:listBoxItem
                  key="S"
                  value="Select"
                  />
                 <hbj:listBoxItem
                  key="YES"
                  value="Yes"
                  />
                 <hbj:listBoxItem
                  key="NO"
                  value="No"
                  />
                 </hbj:dropdownListBox>
                </td>
                </tr>
            
             <%-- Second Question --%>
              <tr>
                   <td>
               <font size="1.9">2.Freescale pays the contract for the Contingent Worker based on:</font>
               </td>
              <td colspan=2>
             
                <hbj:dropdownListBox
                 id="SEL_PAYHOURS_EMP"
                 selection='<%= ISR.getValue("SEL_PAYHOURS_EMP") %>'
                 onSelect="submit"
                 jsObjectNeeded="TRUE">
                 <hbj:listBoxItem
                  key="S"
                  value="Select"
                  />
                 <hbj:listBoxItem
                  key="YES"
                  value="Yes"
                  />
                 <hbj:listBoxItem
                  key="NO"
                  value="No"
                  />
                </hbj:dropdownListBox>
                </td>
               </tr>
            

<br/>
             <%--   thrid question --%>
      
              <tr>
              <td>
              <font size="1.9">3. The Contingent Worker will primarily be supervised by:</font>
              </td>

 

<td colspan=2>

 

I TRY ADDING THE SAME DROPDOWN HERE N IT THROUGH AN ERROR .(WITH DIFFENT ID and selection parameter)

</td>
              </tr>


             
              <%--   Fourth  question--%>
                      
                 <tr>
             
               <td>
               <font size="1.9"> 4.As the sponsor, I confirm this Contingment Worker:</font>
               </td>
              <td colspan=2>
             
             
             
              </td>
             
              </tr>
             
              
<%--  end of 4 questions  --%>


Viewing all articles
Browse latest Browse all 2686

Trending Articles