ValueChangeListener on LOV not invoked 2nd time

Hi All ,
I am using Jdev 11.1.1.6 with WLS 10.3.5 and ADF BC.
I have a LOV which is bound to an attribute of a VO. Below the LOV I have the same VO dropped as a table.
Initally I am creating an empty row for the table since no rows exist. So the LOV (showing a certain Type of value) shows up as empty.
The LOV is tied to a ValueChangeListener (VCL) and autoSubmit=true. My valueChangeListener is as follows ->
    public void rateTypeCommonValueChangeListener(ValueChangeEvent vce) {
        vce.getComponent().processUpdates(FacesContext.getCurrentInstance());
      //further logic
}The VCL fires properly the 1st time I change the value from blank to a particular value. But doesnot fire after that.
I debugged and figured that it doesnot even call the VO Attribute setter the 2nd time :(
Here is the jspx code bit if needed ->
<af:showDetail disclosed="true" id="sd1">
       <af:selectOneChoice value="#{bindings.RateType.inputValue}" // The LOV in question
                          label="#{bindings.RateType.label}"
                          required="#{bindings.RateType.hints.mandatory}"
                          shortDesc="#{bindings.RateType.hints.tooltip}"
                          id="soc8" autoSubmit="true"
                          valueChangeListener="#{pageFlowScope.RateBean.rateTypeCommonValueChangeListener}"> // The VCL in question
        <f:selectItems value="#{bindings.RateType.items}" id="si13"/>
        <f:attribute name="rateType" value="01"/>
        <f:attribute name="binding" value="RateType"/>
      </af:selectOneChoice>
      <af:panelGroupLayout id="pgl1" layout="horizontal">
        <af:panelCollection id="pc1">
           <af:table value="#{bindings.TariffRateForAirtime.collectionModel}"// the Table and LOV both point to the same iterator Binding in the pageDef
                    var="row" rows="#{bindings.TariffRateForAirtime.rangeSize}"
                    emptyText="#{bindings.TariffRateForAirtime.viewable ? 'No data to display.' : 'Access Denied.'}"
                    fetchSize="#{bindings.TariffRateForAirtime.rangeSize}"
                    rowBandingInterval="0"
                    selectedRowKeys="#{bindings.TariffRateForAirtime.collectionModel.selectedRow}"
                    selectionListener="#{bindings.TariffRateForAirtime.collectionModel.makeCurrent}"
                    rowSelection="single" id="t2"
                    partialTriggers="::ctb1 ::ctb2 ::pc2:ctb3 ::pc2:ctb4"
                    autoHeightRows="4" contentDelivery="immediate"
                    columnStretching="column:c29">
            <af:column sortProperty="Price" sortable="false" headerText="Cost"
                       id="c12">
              <af:inputText value="#{row.bindings.Price.inputValue}"
                            label="#{bindings.TariffRateForAirtime.hints.Price.label}"
                            required="#{bindings.TariffRateForAirtime.hints.Price.mandatory}"
                            columns="#{bindings.TariffRateForAirtime.hints.Price.displayWidth}"
                            maximumLength="#{bindings.TariffRateForAirtime.hints.Price.precision}"
                            shortDesc="#{bindings.TariffRateForAirtime.hints.Price.tooltip}"
                            id="it5" autoSubmit="true">
                <f:validator binding="#{row.bindings.Price.validator}"/>
                <af:convertNumber groupingUsed="false"
                                  pattern="#{bindings.TariffRateForAirtime.hints.Price.format}"/>
              </af:inputText>
            </af:column>
            <af:column sortProperty="UnitType" sortable="false"
                       headerText="#{bindings.TariffRateForAirtime.hints.UnitType.label}"
                       id="c9">
              <af:selectBooleanCheckbox value="#{row.bindings.UnitType.inputValue}"
                                        label="#{row.bindings.UnitType.label}"
                                        shortDesc="#{bindings.TariffRateForAirtime.hints.UnitType.tooltip}"
                                        id="sbc3" autoSubmit="true"/>
            </af:column>
            <af:column sortProperty="IntervalId" sortable="false"
                       headerText="#{bindings.TariffRateForAirtime.hints.IntervalId.label}"
                       id="c10">
              <af:selectOneChoice value="#{row.bindings.IntervalId.inputValue}"
                                  label="#{row.bindings.IntervalId.label}"
                                  required="#{bindings.TariffRateForAirtime.hints.IntervalId.mandatory}"
                                  shortDesc="#{bindings.TariffRateForAirtime.hints.IntervalId.tooltip}"
                                  id="soc1" autoSubmit="true">
                <f:selectItems value="#{row.bindings.IntervalId.items}"
                               id="si1"/>
              </af:selectOneChoice>
            </af:column>
            <af:column id="c29" headerText="Interval Desc"/>
            <af:column id="c11" headerText="Tax"
                       binding="#{pageFlowScope.RateBean.taxesColumnAirtime}"
                       visible="#{bindings.TaxesApplicable.inputValue}">
              <af:selectManyChoice label="Tax" id="selectManyChoice2"
                                   value="#{pageFlowScope.RateBean.taxes}"
                                   readOnly="true">
                <af:forEach items="#{bindings.TariffTax.rangeSet}" var="item">
                  <af:selectItem value="#{item.TaxId}" id="selectItem2"
                                 label="#{item.TaxName}"/>
                </af:forEach>
              </af:selectManyChoice>
            </af:column>
          </af:table>
        </af:panelCollection>
      </af:panelGroupLayout>
    </af:showDetail>I know alternatively I can have an independant LOV populated programmatically but I have a number of such combinations in my page and I am trying to reduce my coding effort out here.
Also this issue sounds similar to me to - Re: Value Change Listener In af:table

Yahoo .. I was able to get this work just now after struggling with it for a few hours :(
basically in my VCE called an AM method in which I was resetting the value of the LOV Attribute due to some requirement.
When I was getting the value from the SelectOneChoice (not the Index) using https://blogs.oracle.com/shay/entry/getting_the_value_from_a_selec ,
I was being returned a Row instead of a Value... this was causing the Issue.For some strange reason I had to get an attribute out of it... and doing that resolved the issue for me.
    private Object getValueForSelectOneChoice(String bindingName){
        JUCtrlListBinding listBinding=(JUCtrlListBinding)ADFUtils.getBindingContainer().get(bindingName);
        Object selectedValue=listBinding.getSelectedValue();
        return ((CustomViewRowImpl)selectedValue).getAttribute("Id");//I have no idea why we need to do this to get value from a ListBinding !
    }

Similar Messages

  • CommandLink not invoking every time in table

    Hi All,
    I have a Command Link inside one of the af:columns of the table. I just dragged and dropped the column from component pallet to the table for the link. I have set the ActionListener and Action to the managed bean but, when i try to click the link, its not invoking the action and action listener every time. Don't know whats wrong ?
    code:
    <af:column id="c10" headerText="Link">
    <af:commandLink text="Details" id="cl4"
    action="#{someScope.myBean.myAction}"
    actionListener="#{someScope.myBean.myListener}">
    <f:attribute name="name" value="#{row.someThing}"/>
    </af:column>
    I tried these:
    1. Tried with PartialSubmit:true
    2. tried with ChangeEventPolicy for iterator as PPR and also default
    3. Command Link outside table always invokes the methods
    Additional Info:
    1. I have my bean registered in the TF
    2. Iterator is based on read only VO
    Please help me with this.

    Hi Ramandeep,
    I have these inside my code:
    System.out.println ("In Action Listner");
    System.out.println ("In Link Action ");
    It prints the above lines only on the second time i click, 1st time it does not invoke the methods

  • Program Should not execute 2nd time for the same input

    HI,
        My requriment is to download a file for some input . i did that. In the same program,the user executed the report with one set  of input.
        Again if they try to execute for same input , program should throw error. .
        i.e. Program Should execute only  once for those input.
        For that, i need to store those input in some where. where i need to stored those values, except storing in table.
        Is there any other solution to solve this?

    Hi,
    I mean Memory id is Let say your Program Name and what to export is one internal Table which has fields like( userid,Req inputfiled.....) and when ever you run check at start of program whether there is an entry in that internal table exported if not then append and then again export .
    Though You say this as System System dependent That meory Id is also spec to system
    Right ??? as told before not sure ..
    Regards,
    Poornima

  • IPad will not Synch 2nd Time

    New iPad won't sync to MacBook Pro (new computer).
    Had the problem after I migrated all files/programs from my 13" to the new 15" laptop. Tried everything in the help section, finally re-installed iTunes on the laptop. Everything worked fine and iPad was recognized and sync'd.
    Now a couple of days later, tried to sync again and nothing - iTunes does not recognize the iPad, iPad doesn't launch iTunes - basically nothing.
    iTunes works fine on it's own. iPad works fine on it's own.
    Apple iPad Tech Support was lame - they just emailed me a link to the Help Page. Thanks Apple !!!

    I had a problem where iTunes would just lock up. Don't know if the cause is the same for you but for me it was a problematic iTunes plugin (iToner). Uninstalled it and it is mostly working fine now (misc sync issues now) - you can look in ~/Library/Itunes/Itunes Plugins/ and see what plugins you have. Back them up and remove them, test itunes then replace them back one by one until you find a problematic one - only a possibility.

  • Firefox will not start; new profile fixes it for 1 time, then 2nd time its back to broken

    Windows 7 x64, ff3.6.8
    ff3 will not run, clicking on .exe will not begin any app in taskmanager. the most i get is when clicking ff3 from the taskbar in win7 it will flash as if it is trying to do something, but nothing happens and the flashing stops.
    uninstalled ff3.6.5; reinstalled 3.6.8, still same issue.
    i created a new profile and started ff3, ff3 started & i got to a generic home page. i closed ff3, copied my bookmark file from the default profile to the new profile, restarted ff3, same problem as in the beginning.
    i created a new profile & again it starts up, but when i close out, even without copying the bookmarks over (i was assuming that was the corrupted file), it will not run the 2nd time.
    i have done this for 7 profiles and all of them work the first time, but none will work after that even without copying any profile information from the original default profile.
    in addition i cut all the profiles out of the profile folder and cc'd to another location on another drive thinking that'd prevent the default from corrupting the other files, nothing.
    brief history(sorry for the long post)
    I ran a windows update prior to leaving on vacation, shut the PC down & when I came back the pc wouldnt boot. reset my bios to default and finally got back into windows & it finished the update.
    when i got back in, ff3 was giving me problems and kept hanging up for some reason. so i hard reset & tried to implement my OC profile in bios. i was not able to get back into windows w/ my OC profile again, so i again went back to default bios.
    ever since then ff3 will not work. ie8 works fine, no viruses reported thru mse, i cant figure it out!
    any help would be greatly appreciated, thanks.

    well i kinda fixed it i spose...
    i deleted everything in appdata under mozilla & macromedia and deleted the plugins folder from my installation folder for ff3. uninstalled ff3, reinstalled ff3. now everything works fine. just have to redo my bookmarks & settings.
    sorry to waste anyone's time...but hopefully if someone else has the problem, now they can fix it. peace.

  • ValueChangeListener not invoked inside h:dataTable h:inpuText

    Hi,
    I'm creating a simple dataTable with an inputText in each row. Each inputText has a valueChangeListener that is never invoked.
    Does anyone know why this is happening ?
    Thanks in advance,
    - Juan

    Thanks for your answer.
    First option is excluded.
    Third option also, because we are using RichFaces dataTable components.
    You are saying that getter method for dataTable value attribute needs to return exactly the same object list which was returned in the request before when the list was populated for the first time, in order for commandButton in dataTable action method to be invoked, right?
    In my case loading managed bean fields in constructor is excluded, because we are using EJB dependency injection, so our EJB's from which we are getting data aren't available in managed bean constructors. They are available in other methods. That leaves me to the field initialization in dataTable value getter method, when the list is populated for the first time. Which is the most elegant way to preserve this list between requests, and retrieve this list in later requests? Is saving object list in FacesContext session possible solution?

  • Searching LOV is not invoking any method

    Hello JHeadstart team:
    I have the following behaviour with my LOVs generated from JHeadstart (10.1.2)
    The "Go" button seems to not invoke anything, just give back the same page, not doing any filter.
    By watching the log window in JDeveloper, seems like no event is invoked.
    Also, I don't see in the generated lov.uix page an event called lovFilter under handlers (should I have one?)
    When the page is invoked from the parent page, I have the following log, and the advancedSearch is being invoked giving me the filter, if I typed something before clicking the flashlight:
    12:01:56 DEBUG (JhsActionServlet) -Setting current HttpServletRequest on jhsUserRoles wrapper object on session to allow EL access to request.isUserInRolefunction
    12:01:56 DEBUG (JhsActionServlet) -Request class: com.evermind.server.http.EvermindHttpServletRequest
    12:01:56 DEBUG (JhsActionServlet) -Request URI: /BugTracker-ViewController-context-root/LovUpdProcess2.do
    12:01:56 DEBUG (JhsActionServlet) -Request Character Encoding: windows-1252
    12:01:56 DEBUG (JhsActionServlet) -Parameter baseUIModel: MeineFMUIModel
    12:01:56 DEBUG (JhsActionServlet) -Parameter searchText: <Unbekannt>
    12:01:56 DEBUG (JhsActionServlet) -Parameter multiSelect: false
    12:01:56 DEBUG (JhsActionServlet) -Parameter event: lovFilter
    12:01:56 DEBUG (JhsActionServlet) -Parameter lovUsage: form
    12:01:56 DEBUG (JhsActionServlet) -Parameter searchAttribute:
    12:01:56 DEBUG (JhsActionServlet) -Parameter contextURI: /BugTracker-ViewController-context-root
    12:01:56 DEBUG (JhsActionServlet) -Parameter pageTimeStamp: ignore
    12:01:56 DEBUG (JhsActionServlet) -Parameter source: VB_MeineFMProzess
    12:01:56 DEBUG (JhsActionServlet) -Parameter enc: windows-1252
    12:01:56 DEBUG (JhsActionServlet) -Parameter configName: BaseUIPBCfg1
    12:01:56 DEBUG (JhsDataAction) -Executing action /LovUpdProcess2
    12:01:56 DEBUG (JhsDataAction) -MultiSelect stored on session Context with value false
    12:01:56 DEBUG (JhsDataAction) -lastIssuedPageTimeStamp NOT updated because pageTimeStamp parameter has value 'ignore'
    12:01:56 DEBUG (JhsDataAction) -Found existing searchBean for UpdProcess2UIModel
    12:01:56 DEBUG (JhsDataAction) -Stored searchBean for UpdProcess2UIModel on request
    12:01:56 DEBUG (JhsDataAction) -No commit event in request and multiRowUpdateEvent request param not set, multi-row update NOT executed
    12:01:56 DEBUG (JhsDataAction) -executing onLovFilter
    12:01:56 DEBUG (JhsDataAction) -Lov icon clicked, clear searchText in searchBean
    12:01:56 DEBUG (JhsDataAction) -executing onQuickSearch
    12:01:56 DEBUG (JhsDataAction) -Populating bean: searchBean
    12:01:56 DEBUG (JhsApplicationModuleImpl) -executing advancedSearch for ProzessList
    12:01:56 DEBUG (JhsDataAction) -Storing table binding factory under key jhsTableBindings on request
    12:01:56 DEBUG (JhsDataAction) -Forward set by parameter property returned: /WEB-INF/page/LovUpdProcess2.uix
    But nothing happens when clicking "Go". Is it a bug? Do I have any workaround?

    Here goes my workaround. JHeadstart Team, please check if what I'm doing is right. If yes, I believe this is an important correction for future releases:
    Reason:
    The LOV page generated has in the <listOfValues> tag the attribute searchAreaMode="filter".
    The onLovFilter event has the code:
    String searchAreaMode = request.getParameter(SEARCH_AREA_MODE);
    if ("advanced".equals(searchAreaMode))
    onAdvancedSearch(daContext);
    else if ("simple".equals(searchAreaMode))
    onQuickSearch(daContext);
    else
    // if we get here, we are not yet in the LOV page, the user
    // has invoked the page through clicking on the lov icon.
    // we must clear the search text so it is not displayed as search
    // criterium in the lov (searchAttribute is already empty when
    // clicking the lov icon)
    // And onQuickSearch should only execute the query if iterator
    // is not inf find mode. To signal to the onQuickSearch method that
    // this check is needed and to clear the search text, we set a
    // request attribute
    request.setAttribute(LOV_CHECK_FIND_MODE, "true");
    mLog.debug("Lov icon clicked, clear searchText in searchBean");
    onQuickSearch(daContext);
    But this code is setting the LOV_CHECK_FIND_MODE to true when searchArea = "filter", making the onQuickSearch event to set the searchText to null
    I overriden the whole event adding also the
    else if ("filter".equals(searchAreaMode))
    onQuickSearch(daContext);
    and now is working fine.
    In my previous post I mentioned that also the attribute was wrong, but this was my mistake in the ApplicationStructure file.

  • When Webdynpro popup is opened for the 2nd time, image is not shown

    Hi Experts,
    We have created a WebDynpro with a popup window.
    This is shown in an iView in the portal.
    If the popup is opened for the first time it looks good.
    If the popup is opened for the 2nd time the image is not shown and the title is shown with a different font.
    If we do a preview of the iView in PCD content area, the title and image is shown and the right font is used: also when you open this for the second time.
    If the iView is in a role the problem appears.
    How can this be solved?
    Thanks in advance,
    Joeri

    Sounds like a wrong reference to a stylesheet.
    Use IE Developer Toolbar or Firefox to debug the code. Or view source (of the popup) and search for .css. Do the same for the popup that doesn't work. Check if there are differences.
    Good luck!
    Noel

  • TS1292 I purchased a $25.00. Card, redeemed it on my IPAD, but it shows no money in my account.  I went to the store I purchased it at but they to.d me I had to deal with ITUNES.  This is the 2nd time it happened.  As of now I will not buy another card or

    I purchased a ITunes card for the amount of 25.00, after I redeemed it it showed no balance on my account.  So I went to the store I purchased it and they told me I would have to contact ITunes,  this is the 2nd time it has happened to me, and to tell you the honest truth, I don't think I will buy another card.  Can you help me with this

    I'm sure is something simple here. Most likely you're looking on the wrong account, or it's a refresh thing.
    Check here to see what happened:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Why does system preferences not pop up after 2nd time accessing it using right click on desktop?

    Any help? Genius bar was stumped. I reinstalled mt. lion, but it still persists. Thanks.

    Your question is very confusing ... especially "after 2nd time accessing it using right click on desktop".
    "Using right click" -- why would you do that?  What are you right clicking?
    "On desktop" -- does that mean on a vacant area of your desktop?
    Anyway, a quick way to System Preferences is to simply click normally on the System Preferences icon in the dock, which looks like this:

  • When i select the Full Screen option in video streams (like youtube, veoh, anything like that) i can do that 1 time 2nd time the screen goes blank and can only exit it with the Esc button and then i have to restart firefox and again i have my one Full ...

    When i select the "Full Screen" option in video streams (like youtube, veoh, anything like that) i can do that one(1) time second(2nd) time the screen goes blank and can only exit it with the escape(Esc) button and then i have to restart firefox and again i have my one "Full-screen Ticket"

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • I want to set up the Time Machine and I would love to use the Time  Capsule but since I already have a wireless router I need suggestions on  what other external disks Apple could recommend to use with the Time Machine and  how to configure that disk

    I want to set up the Time Machine and I would love to use the Time
    Capsule but since I already have a wireless router I need suggestions on
    what other
    external disks Apple could recommend to use with the Time Machine and
    how to configure that disk.
    A complication that I need to resolve is the fact that I am using Vmware
    Fusion to be able to use Windows on my Mac. Now it seems that Time
    Machine is not backing up my files
    on that virtual Windows without additional configuration and my question
    is whether you can advise me here or whether this is only a matter for
    the Fusion virtual machine.

    If you want to use Time Capsule you can.. you simply bridge it and plug it into the existing router.. wireless can be either turned off or used to reinforce the existing wireless.. eg use 5ghz in the TC which is much faster than your 2.4ghz.
    You can also use a NAS.. many brands available but the top brands are synology, qnap and netgear readynas  series. These will all do Time Machine backups although how well always depends on Apple sticking to a standard. There are cheaper ones.. I bought a single disk zyxel which was rebadged and sold through my local supermarket. It actually works very well for TM at least on Snow Leopard. Major changes were made in Lion and again ML so do not instantly think it will work on later versions. I haven't tried it yet with those versions.
    Any external drive can be plugged into the mac. Use the one with the fastest connection or cheapest price according to your budget. USB2 drives are cheap and plentiful. But no where near as fast as USB3 or FW800. So just pick whichever suits the ports on your Mac. Interesting Apple finally moved to USB3 on their latest computers.
    TM should exclude the VM partition file.. it is useless backing it up from Mac OS side.. and will slow TM as it needs to backup that partition everyday for no purpose.. TM cannot see the files inside it to backup just the changes.
    You need to backup windows from windows. Use MSbackup to external drive.. if you have pro or ultimate versions you can backup to network drive. But MSbackup is a dog.. at least until the latest version it cannot restore the partition without first loading windows. There are about a zillion backup software versions for windows.. look up reviews and buy one which works for you. I use a free one Macrium Reflect which does full disk backups and is easy to restore.. to do incremental backups though you have to pay for it.

  • Brand new ideapad u300s going into depot for 2nd time in in less than a month

    Hi,
    I can't seem to get any help on the phone, all I get told is send the unit in.  I ask to speak to a supervisor and you tell me they will call back in 24-48 hours; it's been a week.  I call back and ask to speak to a supervisor and you tell me it's the weekend and none are available, maybe we can have one call you back later.  This is considered lenovo support.  
    I bought a computer for my wife's birthday, an ideapad u300s, and the first week everything is working great.  However, the LCD turns out to be faulty.  So we send it in to the depot thinking no big deal they'll fix it immediately and send it back to us. However,  the computer sat in the depot for over a month and we heard nothing.  We called tech support and asked a for a refund or a new unit but, basically, we were just transferred, told a supervisor would call us - which they did not -  and given the standard answer that they would prioritize our situation.  Finally,  it's repaired and in the mail.
    We receive the computer everything seems fine, then my wife notices that it doesn't recognize the a/c adapter so the battery is now drained and we can't do anything.  We call lenovo again they tell us send it in, I ask for them to send someone here since last time I called you tried to sell me an extra warranty after I've only had the computer for a week.  Lenovo tells me that's impossible if you want someone to come onsite we have to pay for it.  Fine I give up I am tired of dealing with you over the phone I am sending the computer back for a 2nd time.  
    My wife has used the computer all of about 2 weeks and her birthday was in late March.  
    I cannot understand how you can operate like this; I've never experienced such poor customer support and general apathetic attitude of your phone reps.  
    Simply put, I will never buy another Lenovo product again; I am sure you don't care though if it's anything like your phone support.

    It depends on how critical your connection is. Business customers get a much faster repair time, and are given priority over residential customers, and will pay compensation on some of their SLAs.
    If you do not mind being without service for three to seven days, then the residential service should be fine, otherwise you should be on a business package, with a proper SLA (Service Level Agreement).
    Its not simply the amount of usage you make of the service.
    The residential service is aimed at the general public, who use it for web browsing, e-mail, gaming, and streaming services like YouTube.
    You can get advise on this forum from other residential customers, but they are not going to be able to fix your faults, as this is only a customer to customer forum.
    The firmware issue is discussed on a number of threads on the  forum. Alternative VHDSL modem/routers are also suggested.
    https://community.bt.com/t5/BT-Infinity-Speed-Connection/HH5-constantly-reboots-every-3-minutes/td-p...
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Songs dont even show up on my ipod anymore 2nd time happening

    I have a 4th generation ipod with color that shows the photo
    My ipod had recently somehow got rid of all my songs the first time i didnt kno how but by the 2nd time i had all my songs on there and i just plugged it into my computer last night to charge, there was songs on it before i plugged it in but in the morning when i check on it there was no songs left at all.
    I have zero songs, and about 7gb of free space left? wth is wrong with my ipod?

    Kingnitro wrote:
    I went to search for a song on my iphone 6+ the other day, it doesnt even show up on my song list!  Yet on my Mac Mini I open up my Itunes, its there and it plays right away!   What is wrong?
    The song is not on your iPhone.
    See this -> https://www.apple.com/support/itunes/syncing/

  • 2nd time Loop error in rejection reason/changes req

    Hello experts,
    I have created an wf with loop step.
    In that loop branch,m displaying a doc in approvers inbox, then i have put a decision step with 2 button - 'Approve' and 'Changes req'.
    For button Changes req, loop will continue.ok
    In tht changes req branch, i hv put a task of BO SOFM, method- create for approver so tht he can enter thr wht r the changes he wants.
    thn i hv put task as BO SOFM, method-display for initiator so tht he can see the changes req.
    thn doc will opened in edit mode for initiator to make req changes.
    thn it will agn go back to approver for approval.
    he will agn get the decision screen with 2 buttons.
    now while testing this....this all worked fine when approver clicked in button 'changes req' in decision box..after tht SOFM create worked fine.
    But during 2nd time whn approver is checking the doc 2nd time and still he again wants some other changes to be done so he will agn click on button 'changes req'. this 2nd time tht SOFM-create is not working and wf goin to error as -
    1. Notification of completion cannot be generated
    2. Problems occurred when generating a mail
    3.Error '9' when calling service 'SO_OBJECT_SEND'
    4.Error handling for work item 000000006050
    PLz suggest how this can be solved.
    Best Regards
    Nitin

    I think you might have to use the EDIT method of SOFM Business Object as you are going to change the existing document.
    Thanks
    Arghadip

Maybe you are looking for

  • How do i play windows games on mac?

    its probably a simple software install or something but i do not know, and are new to the apple computer system. i have a macbook pro that i just bought and i didnt realize half of the games on my steam wernt mac compatable, thanks

  • How to change translation text in XLF file without re deploying?

    Hi All, I want to change the translation text of WebDynpro application without using NWDS. The application is already deployed in Production. Is there any way to change the translation text directly from the server (without changing the message in XL

  • Banner image will not display in Dreamweaver; can you help?

    Banner image will not display in Dreamweaver; can you help?

  • Displayport to hdmi to TV.  No Sound

    Using a Displayport to HDMI connector and HDMI cable to connect  my MacBook Air to a TV. I Can twin the displays in Preferences, but no sound from the television.

  • My sound keep shutting down on my DAW.

    I have read some threads on this. Most pointo to Motu. But I am having te same issue with my Presonus Firepod, My Sony DSR 11. A Matter of fact I'm having issues with all my firewire devices. Last but not lease I have recently gotten they dreaded gre