OutputLabes, values in selectOneChoice are appearing twice in the jspx page

Hi All,
In a Jspx Page, there are two menu tabs. Each Tab has a PanelForm and each panelform has certain components.
By default the first panelform in the first tab will be shown on page load and while clicking on second tab, the second panelform will be shown.
The first panelform has three selectonechoices and three command buttons.
If i click on reset button, these 3 selectonechoices are set to null by backing bean.
Here comes the problem, after clicking on reset, if you click on second tab where the second panel form available, certain components like outputLabel and the values in selectOnechoice, are appearing twice on the page.
Can anyone suggest me how to get rid of this problem..
Here is my Jspx Page..
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces"
xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
<jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
doctype-system="http://www.w3.org/TR/html4/loose.dtd"
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
<jsp:directive.page contentType="text/html;charset=windows-1252"/>
<f:loadBundle basename="GeneralAdmin" var="gadmin"/>
<f:loadBundle basename="HoldCapabilites" var="holdc"/>
<f:view>
<afh:html>
<afh:head title="editManualProfileAttributes">
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1252"/>
<script type="text/javascript">
function cancel() {
var flag = false;
flag=window.confirm('You want to discard the entered data');
return flag;
</script>
</afh:head>
<afh:body>
<af:messages/>
<h:form>
<afh:tableLayout>
<afh:rowLayout width="100%">
<jsp:include page="/jsps/webutils/template/header.jsp"/>
</afh:rowLayout>
<afh:rowLayout>
<afh:rowLayout width="100%">
<af:menuPath>
<af:commandMenuItem text="#{gadmin.admin}" action="adminHome"/>
<af:commandMenuItem text="#{gadmin.epaAttr}" selected="true"/>
</af:menuPath>
</afh:rowLayout>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="20"/>
</afh:rowLayout>
<afh:rowLayout halign="center" valign="bottom">
<afh:cellFormat width="20%" height="20px" valign="bottom">
<af:menuTabs>
<af:commandMenuItem text="#{gadmin.epAttr}"
action="#{EditManualProfileAttributes.firstTab}"
binding="#{EditManualProfileAttributes.commandMenuItem2}"
id="commandMenuItem2"/>
<af:commandMenuItem text="#{gadmin.auditHistory}"
action="#{EditManualProfileAttributes.secondTab}"
binding="#{EditManualProfileAttributes.commandMenuItem1}"
id="commandMenuItem1"/>
</af:menuTabs>
</afh:cellFormat>
<afh:cellFormat styleClass="bottomLine" width="80%"
height="20px" valign="bottom">
<af:objectSpacer height="1" width="1"/>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="100%" height="10"/>
</afh:rowLayout>
<af:panelForm id="panelForm1" width="100%"
binding="#{EditManualProfileAttributes.panelForm1}">
<afh:rowLayout width="100%">
<afh:cellFormat width="15%">
<af:outputText value="#{gadmin.mpAttr}"
inlineStyle="font-family:Arial; font-size:9.0pt; font-weight:bold;"/>
</afh:cellFormat>
<afh:cellFormat width="85%">
<f:verbatim>
<hr align="left"
style="border-width:2.0px; color:rgb(219,238,243);"/>
</f:verbatim>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="20"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="5%"/>
<afh:cellFormat width="15%">
<af:outputText value="#{gadmin.refName}"
styleClass="outputText"/>
<af:outputText value=" * "
inlineStyle="font-size:10.0pt; font-family:Arial; color:rgb(255,0,0);"/>
</afh:cellFormat>
<afh:cellFormat width="80%">
<af:selectOneChoice id="navList1" autoSubmit="true" partialTriggers="commandButton2"
valuePassThru="true" unselectedLabel="Select"
binding="#{EditManualProfileAttributes.navList1}"
valueChangeListener="#{EditManualProfileAttributes.getDetails}">
<af:forEach var="li"
items="#{bindings.GetRefNamesVO1.rangeSet}">
<af:selectItem label="#{li.ReferenceName}"
value="#{li.Id}"/>
</af:forEach>
</af:selectOneChoice>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="10"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="5%"/>
<afh:cellFormat width="15%">
<af:outputText value="#{gadmin.refId}"
styleClass="outputText"/>
<af:outputText value=" * "
inlineStyle="font-size:10.0pt; font-family:Arial; color:rgb(255,0,0);"/>
</afh:cellFormat>
<afh:cellFormat width="15%">
<af:selectOneChoice id="navList2" autoSubmit="true"
partialTriggers="navList1 commandButton2"
binding="#{EditManualProfileAttributes.navList2}"
valueChangeListener="#{EditManualProfileAttributes.getColumns}">
<af:forEach var="li"
items="#{bindings.LookupRefTableVO1.rangeSet}">
<af:selectItem label="#{li.LookupDesc}"
value="#{li.LookupId}"/>
</af:forEach>
</af:selectOneChoice>
</afh:cellFormat>
<afh:cellFormat width="15%">
<af:selectOneChoice id="navList3"
binding="#{EditManualProfileAttributes.navList3}"
partialTriggers="navList1 navList2 commandButton2">
<af:forEach var="li"
items="#{bindings.EditRefColumnVO1.rangeSet}">
<af:selectItem label="#{li.DetailDesc}"
value="#{li.DetailsId}"/>
</af:forEach>
</af:selectOneChoice>
</afh:cellFormat>
<afh:cellFormat width="50%"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="10"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="5%"/>
<afh:cellFormat width="6%">
<af:outputText value="#{gadmin.stDt}"
styleClass="outputText" id="outputText1"
binding="#{EditManualProfileAttributes.outputText1}"/>
</afh:cellFormat>
<afh:cellFormat halign="left">
<af:outputText value=" * " id="outputText2"
binding="#{EditManualProfileAttributes.outputText2}"
inlineStyle="font-size:10.0pt; font-family:Arial; color:rgb(255,0,0);"/>
</afh:cellFormat>
<afh:cellFormat width="4%"/>
<afh:cellFormat width="80%">
<af:selectInputDate id="startDate"
binding="#{EditManualProfileAttributes.startDate}"
partialTriggers="navList1 commandButton1 commandButton2">
<af:convertDateTime pattern="dd/MMM/yy"/>
</af:selectInputDate>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="10"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="5%"/>
<afh:cellFormat width="15%">
<af:outputText value="#{gadmin.edDt}"
styleClass="outputText" id="outputText3"
binding="#{EditManualProfileAttributes.outputText3}"/>
</afh:cellFormat>
<afh:cellFormat width="80%">
<af:selectInputDate id="endDate"
binding="#{EditManualProfileAttributes.endDate}"
partialTriggers="navList1 commandButton1 commandButton2">
<af:convertDateTime pattern="dd/MMM/yy"/>
</af:selectInputDate>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="10"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="20%"/>
<afh:cellFormat width="7%">
<af:commandButton text="#{gadmin.save}"
action="#{EditManualProfileAttributes.save}"
id="commandButton1"
binding="#{EditManualProfileAttributes.commandButton1}"/>
</afh:cellFormat>
<afh:cellFormat width="7%">
<af:commandButton text="#{gadmin.reset}"
action="#{EditManualProfileAttributes.reset}"
id="commandButton2"
binding="#{EditManualProfileAttributes.commandButton2}"/>
</afh:cellFormat>
<afh:cellFormat width="7%">
<af:commandButton text="#{gadmin.cancel}"
id="commandButton3"
binding="#{EditManualProfileAttributes.commandButton3}"
action="adminHome"
onclick="return cancel()"/>
</afh:cellFormat>
<afh:cellFormat width="59%"/>
</afh:rowLayout>
</af:panelForm>
<af:panelForm id="panelForm2" rendered="false" width="100%"
binding="#{EditManualProfileAttributes.panelForm2}">
<afh:rowLayout width="100%">
<afh:cellFormat width="15%">
<af:outputLabel value="#{holdc.mpaAttr}" id="abc"
inlineStyle="font-family:Arial; font-size:9.0pt; font-weight:bold;"/>
</afh:cellFormat>
<afh:cellFormat width="85%">
<f:verbatim>
<hr align="left"
style="border-width:2.0px; color:rgb(219,238,243);"/>
</f:verbatim>
</afh:cellFormat>
</afh:rowLayout>
<afh:rowLayout width="100%">
<af:objectSpacer width="10" height="20"/>
</afh:rowLayout>
<afh:rowLayout width="100%">
<afh:cellFormat width="15%">
<af:outputLabel value="#{holdc.refeName}"
styleClass="outputText"/>
<af:outputLabel value=" * "
inlineStyle="font-size:10.0pt; font-family:Arial; color:rgb(255,0,0);"/>
</afh:cellFormat>
<afh:cellFormat width="85%">
<af:selectOneChoice id="navList4" autoSubmit="true"
unselectedLabel="Select"
valuePassThru="true"
binding="#{EditManualProfileAttributes.navList4}"
valueChangeListener="#{EditManualProfileAttributes.getVersions}">
<af:forEach var="li"
items="#{bindings.AuditRefNamesVO1.rangeSet}">
<af:selectItem label="#{li.ReferenceName}"
value="#{li.Id}"/>
</af:forEach>
</af:selectOneChoice>
</afh:cellFormat>
</afh:rowLayout>
</af:panelForm>
</afh:tableLayout>
</h:form>
</afh:body>
</afh:html>
</f:view>
</jsp:root>

Hi Puthanampatti,
Thanks a lot for your reply, but i am using JDev 10.1.3.3. There is no panelFormLayout component and i am not using that component.
Even i am strange this duplicating of components and values in selectoneChoice occuring from past 2 days in the old file. I am wondering whether my file got corrupted by any sort.
Regards,
R N V Prasad

Similar Messages

  • In va01 condition types are appearing twice

    Hi
    In the pricing conditions screen of sales order I find that all the condition types are appearing twice and also calculted taxes twice.please give me solution

    Hi Swapna,
    Make  Exclusive checkbox in your access sequence in V_T682I.Check your calculation of pricing also.Check there are no of threads on this topic.
    Regards,
    Madhu.

  • On my drop down menus, the items listed are appearing twice.

    On my drop down menus, the items listed are appearing twice.  For instance, there are two "shut down" and two "restart."  How do I fix this?

    Hi Peter, and a warm welcome to the forums!
    See Tom Gewecke's post here...
    http://discussions.apple.com/thread.jspa?messageID=4395251&#4395251
    This problem has been reported serveral times. It seems to be a loss of access to the main system font. I've not heard of any cure except a reinstall.
    It appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • Loops appear twice in the loop browser. Huh?

    I just installed iLife '06 and have been "messing around" with the various programmes. One thing I noticed was that exactly the same loops appear twice in the loop browser. Not all loops are doubled, which is obviously what is confusing me. Is this normal (not my confusion!!)?
    I've checked the folder in the library and each loop is only available once, but GarageBand insists on having two of quite a number of loops. Any tips would be greatly appreciated, as I haven't found any way to delete just one of the loops (deleting the file obviously deletes both . . .)
    Thanks in advance,
    Steve
    G5 Dual 2.3, G4 Powerbook   Mac OS X (10.4.3)  

    Do you really have only one copy of each? Do a Finder/Spotlight search. There are several places where the loops could show up:
    - the general Library/Audio folder
    - the user Library/Audio folder
    - the general Library/Application Support folder
    - the User Library/Application Support folder
    Did you install over an old version of GB? That might explain the duplicate loops. And the "single" loops that were either part of your old installation and not of GB3 or vice versa.
    In order to repair that, you should trash the duplicate loops and the content of the Loops Index folder and then drag the remaining loops into the loop browser.

  • GL account is appearing twice in the report

    Hi Xperts,
    We have a report in that particular report we can see the Balances of TOTAL COST OF SALES,Total wages & salaries,Total other staff costs,Total designing & merchantiging, Total selling, Total Depriciation,Total Distribution & TOTAL SUNDRY & GENERAL .
    It is a customised report.
    I am new to reports.
    In the above report one GL account is appearing twice (The acct name SMALL DIFFERENCES ACCT) in the section of  TOTAL COST OF SALES    &     TOTAL SUNDRY & GENERAL
    Why it is appearing twice?
    Pls. help me.
    Thanks in Advance

    You have not mention that which report like Z report or standard one.
    However, if it is Z report, the GL may be grouped twice in the report. and ask your ABAP team to find from where it is getting value. So that, it is easy to track why it is appearing twice in the report.
    If it is standard report, check your FSV for the correct grouping.
    Rgds
    Satheesh Vallepu

  • A Characteristci appears twice under the Rows Column on the left hand side.

    Hi All,
    According to the requirement , there are 2 Material Numbers ,1 of them is used for Compounding,which is not required in the Report,but as it is used for Compounding ,we need to place that in the rows.
    We have put tat in "NO DISPLAY" mode,but  Material Number appears twice under the Rows  column, on the left hand side of the screen, in the Portal when we execute the Report.How Can we have to display only 1 Material Number on the left hand side of the screen?
    Thanks in Advance,
    Sravani

    the left hand side of the screen is reakky vague....you should be more specific...
    Probably you need to filter out the compounding characteristics in the global filter area.
    Thanks...
    Shambhu

  • How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?

    How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?
    All I need is ONE INBOX (like Windows Mail used to do) ...
    I can see in the 'Account' column of each message which email account it's using.
    Then, I either junk or read the message, followed by delete or file to one of my created folders.
    As it is, half my page is depth is taken up by 12 lines of Account names !!!

    That still leaves SIX lines of Account names down the side. All I want is ONE INBOX ... (I can see which account each message belongs to in the 'Account' column...)

  • Why report section is appearing twice in the output of report designer

    Hi Gurus,
    I have created a report in the report designer and my report contains 5 sections.
    each report section is one query view.
    i inserted all the query views and done some formatting .
    but when i executed the report , one of the report section is appearing twice in the output.
    ex: i need the output like this
    section1
    section2
    section3
    section4
    section5
    But the output i am getting is as follows.
    section1
    section2
    section3
    section3
    section4
    section5
    report designer experts can please let me know why this problem is coming and also please provide possible solution for this.
    Thanks in advance.
    Raj.

    Hi Gurus,
    I have created a report in the report designer and my report contains 5 sections.
    each report section is one query view.
    i inserted all the query views and done some formatting .
    but when i executed the report , one of the report section is appearing twice in the output.
    ex: i need the output like this
    section1
    section2
    section3
    section4
    section5
    But the output i am getting is as follows.
    section1
    section2
    section3
    section3
    section4
    section5
    report designer experts can please let me know why this problem is coming and also please provide possible solution for this.
    Thanks in advance.
    Raj.

  • (No notification) word appears twice on the notification center of my iPhone 6 plus

    (No notification) word appears twice on the notification center of my iPhone 6 plus

    Try a reset.
    Hold the on/off and home buttons together for about 10 seconds until the Apple logo appears.

  • Some pages of my website are not active from the home page

    Built my website with iweb.  When I go to the site the tabs to all the pages show, but several of them are not active from the home page.  If I go to one of the active pages I can then click on the other pages.  Is there a way to fix this?  I've tried reloading the entire site, but several of the tabs remain inactive from the home page.  Any help would be greatly appreciate - Thanks,  Jodi

    Thanks Roddy - I tried moving it down and it didn't work - That line is in the Template I used to build the site and is on every page.  I did finally get the command A to work, but there's nothing covering those bottom three tabs.
    However, when I put my mouse in the area of the box where it has my name (the image you sent me above) it shows a link desktop/site/booker_files and I noticed I have one of the rss feed blue arrows, but I can't seem to delete it.  I wonder if that has something to do with it.  It does the same thing on the website if you hover with your mouse. 
    Truly appreciate your help.
    Jodi

  • Items must appear only on the last page of a report region

    Hello everybody,
    I have a report region1, the report can contain many records thus I will have to paginate it....
    In the same page, I must have another region2 with some fields on it, but theses fields must appear only on the last page of my report,
    I don't succed to find a condition to apply to region2 in order to make it appear only on the last page of the report region1.
    Any help on this ???

    Assuming you have other content, you could:
    set the Print Object On property to be last page.
    anchor it to the main content that repeats on every page, so this frame only prints after the other one is done
    Assign a format trigger where you make it display only if current page is equal to total number of pages
    create a trailer and move the frame there

  • View on ekpo,ekbe quantities are appearing twice

    hi experts,
    I have created view based on EKPO, EKBE.
    Key is EBELN in the VIEW.
    When i check the data in VIEW the data appearing twice from both the tables.
    for example
    EBELN   EBELP QUANTITY
    10000      10         20
    10000      10         20
    so its appearing twice which is not right.
    when i check the ME23N
    it shows only
    EBELN    EBELP    QUANTITY
    10000      10             20.
    what is the problem, and wot is the solution for this?
    regards
    venuscm

    hi,
    join the two tables on as many key fields as possible, eg mandt, gjahr, bukrs, etc.
    Harshita Saxena

  • Pictures in email are showing twice within the same email

    Hi,
    For every email I receive that contains a picture, the picture itself shows up twice in the same email, how do I correct this proble??
    Thanks

    More than likely, every one of these messages were composed in HTML or received and forwarded by an email client using HTML for message composition.
    There are two versions of the same message sent when HTML is used for message composition - an HTML version and a Plain Text version for those who prefer turning off the rendering all HTML when received.
    There isn't anything you can do to correct this.
    If using HTML for message composition was no longer supported and allowed, the majority if not all problems experienced with the exchange of email would be eliminated.

  • Favorite themes appear twice in the Themes window

    Whenever I save a theme as a favorite, it appears twice in my Themes window. When I click on each duplicate instance of any given theme in the Themes window, it seems to produce the same result, so operationally it's not a problem. Still, it's a nuisance to have to scroll through twice as much stuff to find what I want, and it doesn't seem right that each favorite should appear twice.
    I've searched my drive for two instances of each .favorite file, but I can only find one instance, located in *~/Library/Application Support/iDVD/Favorites*.
    I tried trashing the preferences file, but when I re-opened iDVD, I got the following prompt:
    +*Project Duration*+
    +Your project exceeds the maximum content duration. To burn this project, remove some content.+
    That's nonsense. I had already "burned" (saved) the project to a disk image, and it burned just fine. Besides, the project is shorter than other projects I've burned with no problem. The upside of having replaced the preferences file is that the double instances of my favorite themes were gone.
    I had saved the old preferences file, so I restored that and trashed the new one. That got rid of the bogus Project Duration message, but now I'm back to double instances of my favorite themes again. There is definitely something screwy going on with iDVD.
    Can anyone help?
    Thanks!

    Never mind...I solved it. When you trash the preferences file and iDVD creates a new one, it automatically selects "Best Performance", which naturally increases the filesize of the disk image file. It's sufficient to just acknowledge the Project Duration message and then go into Preferences:Projects and change the Encoding to "Best Quality". That fixes project duration problem.
    Actually, there's a far more serious problem with "missing themes", but that will be the subject of another thread if the complete reinstall of iDVD I'm doing now doesn't solve it. Grrrrr......

  • One of my email accounts appears twice in the Folders pane. No idea why.

    I have several accounts in Thunderbird. One of them appears twice - I know it's an exact copy becasue if I rename one folder, both accounts have the new name. The other accounts show only once. Mystified.

    @christ1 Yes, using the same logic windows limit is something like 16 extbytes. Reality is 4Gb pulls it up.
    There has been recent work on the messageid that will be in the next release, might even have made it into a recent security and stability release. But until that happens Thunderbird has 4Gb limited messageid numbers. I am still not convinced a non IMAP folder can be successful in the 4Gb plus range. Only time will convince me all the ugly realities have been fixed.

Maybe you are looking for

  • Workflow without 'save as' and huge storage consumption.

    I use Aperture & photoshp daily. Aperture no longer has 'save as' .. Photoshop hasn't, as yet followe suit, I am told. Very concerned about workflow changes incurring more complexity, more steps and hughe storage waste. Current work flow: I open one

  • Report Spool Printing Font Change

    Hello All, While printing the spool request created by ABAP report(ALV)  print document is not much clear due to small font , is there any technique to change the font size while printing the spool request or any technique to print horizontal line be

  • Macbook pro 2008 startup with lines then shuts down

    I have a 2008 macbook pro that will startup with lines on display then shut down. 

  • Which is the Best

    Hi, every body I just want to purchase a new nokia hs. but little confused. I am in India and belong the same. N73 looks nice and N95 also( little costly also). but stil even in other than N series hell of confusion. Can anybody help me. pl. guide me

  • A subcontracting Scenario

    Hi , In  subcontarcting PO scenario please explain me the following. I am sending x kg of material A to SC Vendor . I am expecting y kg of Material B from SC vendor. By product in the procedure is C. I have maintained BOM as A material to be send A,