Binding containe gets reset on button click ?

Hi All
In my page i am calling a method of AMIMpl class :
    public void refreshEmpTable(){
      String pRefresh = "Y";
      requeryViewObjectWithBindVariable(getEmp(), "bRefresh", pRefresh);
and
    private void requeryViewObjectWithBindVariable(ViewObjectImpl pViewObjectImpl,
                                                   String pVariableName,
                                                   String pVariableValue) {
        ViewObjectImpl vo = pViewObjectImpl;
        vo.setNamedWhereClauseParam(pVariableName, pVariableValue);
        vo.executeQuery();
    }And i can see the following log
<DebugDiagnostic> <print> [12497] DBG: afterActionPerformed :refreshEmpTable
<ADFLogger> <begin> Refreshing binding container
<DCBindingContainer> <internalRefreshControl> [12498] **** refreshControl() for BindingContainer :com_xyz_abc_ui_flow_om_omf_omf_prepareSessionSessionPageDef_WEB_INF_com_xyz_abc_ui_flow_om_om_xml_omf
prepareSession() - default method of the taskFlow
The button that triggers the refreshEmpTable() of impl class has partial submit as true. What i can see here is it is resetting the task flow. Can some some give a clue as to what i have done wrong here.
thnks,
JDev 11.1.1.4
Edited by: in the line of fire on Jun 22, 2011 5:03 PM
Edited by: in the line of fire on Jun 23, 2011 11:52 AM

<ViewObject xmlns="http://xmlns.oracle.com/bc4j" Name="DeptView" Version="11.1.1.59.23" AutoRefresh="true"
set this value to false if its there... in any of your VO

Similar Messages

  • Result handler not getting invoked on button click - URGENT

    Hi Folks,
    We are working on a form submit application where we populate the form and finally click on button to submit the completed form. We are using BlazeDs On button click I call java service and expect a response object back to flex UI. We are getting the java call invoked successfully and the log clearly shows that the appropriate objects are returned from java service, however, the result handler is not getting inviked to capture the result in flex mxml. I am in urgent need of your help on this
    Code snippet:
    <mx:Script>
    <![CDATA[
    protected  
    function Service_resultHandler(event:ResultEvent):void
    Alert.show(
    "event.result.troubleTicketId ::"+event.result.status); 
    var u:URLRequest = new URLRequest("http://www.adobe.com/flex");navigateToURL(u,
    "_blank"); 
    private function faultHandler_exitService(event:FaultEvent):void {Alert.show(event.fault.faultString +
    '\n' + event.fault.faultDetail); 
    var u:URLRequest = new URLRequest("http://www.google.com");navigateToURL(u,
    "_blank"); 
    protected  
    function submit_clickHandler():void
    //Alert.show("1");
    createTicketForm.setCallDetails_callRegion(FlexUI_callDetails_callRegion);
    //Alert.show("2"+FlexUI_callDetails_callRegion);
    createTicketForm.setCallDetails_callRegion2(FlexUI_callDetails_callRegion2);
    exitService.createTroubleTicket(createTicketForm);
    ]]>
     </mx:Script>  
    <mx:RemoteObject id="exitService" destination="ExitService" fault="faultHandler_exitService(event)">
    <mx:method name="createTroubleTicket" result="Service_resultHandler(event)"/>
    </mx:RemoteObject>
    <mx:Button 
    label="submit Ticket" width="65" height="22" textAlign="right" x="904" y="-10" click="submit_clickHandler()" />
    My Java service:
    public  
    class ExitService {  
    public CreateTmsTicketResponse createTroubleTicket(CreateTicketForm createTicketForm){
    return  
    createTmsTicketResponse;}
    remoting-config.xml:
     <destination id="ExitService">  
    <properties>  
    <source>com.qwest.qportal.flex.createTicket.ExitService</source>  
    </properties>
     </destination>

    Please refer to below link, hope it helps:
    http://forums.asp.net/t/1927214.aspx?The+IListSource+does+not+contain+any+data+sources+
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • Performance Point Service Filter Reset on button click?

    Hi.
    Is it possible to reset the PPS filter on button click (Common "Reset" button).
    Is it possible to do by using Javascript?
    I need some work around to achieve it.
    Thanks & Regards
    Poomani Sankaran

    Hi,
    According to your post, my understanding is that you want to reset Performance Point Service Filter on button click.
    You can follow the article
    SharePoint Dashboard with Common Filters using PerformancePoint Services 2010 to create a dashboard with common filters using SharePoint PerformacePoint services 2010 and SQL Server Analysis Services (SSAS) Data Source.
    Then you will see the filters on top of your dashboard. You can change the filters and see that both the reports are rendering the data as per your filter choice.
    If you'd like to default the filter to a particular value on page load, you might want to try a JavaScript based approach:
    Define the function 'NotifyBrowserOfAsyncUpdate(elem)', which PPS will call after any PPS render request completes (i.e., when your filter renders).
    Within the function, check that elem.control exists and then check that elem.control.webPartTitle equals your filter's title.
    If it does, search elem (the filter web part's main container DIV) for the actual filter control and change the value. If you're using a dropdown, this is pretty simple - just remember to call the 'onchange' method on the select as well so that connected
    PPS objects refresh.
    Here is a similar thread for your reference:
    http://sharepoint.stackexchange.com/questions/61939/default-pps-filter-for-pps-dashboard-in-sharepoint-2010-not-showing
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • TextField text changed during parent's container gets reset

    I'm having an aggravating issue which I think might be an inherent problem with Flash, but maybe I'm missing something. I'm finding that if I write a class file for a MovieClip in my library that contains a TextField, and try to change the TextField text in the constructor, it gets reset or doesn't set or something. I'm thinking maybe Flash runs the code to create the library version of the MovieClip after your custom constructor?
    So for example right now, I've got a MovieClip in my library called "MenuBar". MenuBar has a background bitmap and a TextField with instance name lblTitle, which has the text "Title" within the library.
    I've written a class file for MenuBar which has this function:
              /**The title of the menu displayed in the center of the menu bar
                        public final function set title(text:String):void {
                                       trace(lblTitle);
                                       if (lblTitle != null) {
                                                      trace(text);
                                                      lblTitle.text = title;
                                                 trace(lblTitle.text);
    Then I've got a MovieClip in the library called "MenuScreen". It has an instance of MenuBar called menuBar. MenuScreen also has its own class file which starts like this:
    public function MenuScreen(titleText:String)
                        super();
                        menuBarTop = MenuBar(this.getChildByName("menuBar"));
                        trace(titleText);
                        trace("Old Title:" + menuBarTop.title);
                        menuBarTop.title = titleText;
                        trace("New Title:" + menuBarTop.title);
    Now say I run this code:
    var menu:MenuScreen = new MenuScreen("New Title");
    The debug output comes out like this:
    New Title
    Old Title:Title
    TextField: [object TextField]
    Incoming Text: New Title
    New text: Title
    New Title:Title
    It's running the code to change the text in the TextField, and doesn't throw an error, but it doesn't change the text. What am I missing?

    I usually do not try to do constructor injection on View Classes (but then again, I usually allow the Flash Player/timeline to handle the instantiation and population of all my instances). I find that when the Flash player creates timeline instances, all of their children (that are present on frame 1, of course) are accessible from within the constructor, simply by referencing the instance name.  So if you did something more like this:
    public var menuBarTop:MenuBar;
    protected var _title:String='default title';
    public function MenuScreen() {
      if (menuBarTop) {
        menuBarTop.title= 'default title';//this should work fine
    public function get title():String {
       return _title;
    public function set title(value:String) {
      if (value != _title) {
        _title = value;
        if (menuBarTop) {
          menuBarTop.title = _title;
    For tighter control, you can use a getter/setter for menuBarTop as well.
    So, you're probably wondering how you are going to "get hold" of MenuScreen in order to populate it if you allow Flash to instantiate it? If you're not sure, check out http://www.developria.com/2010/04/combining-the-timeline-with-oo.html or http://www.meetup.com/atlflex/files/ (the files there all relate to this discussion)

  • MVVM Light Bind value to list on button click

    I am trying to build an simple universal app and I have followed the MVVM light setup. So far everything has fallen in place. Now I have a button and a listview on the same page. What I am trying to achieve is when I click on the button I want the list
    view to show values. I have the list view bound to an observable collection and the button bound to RelayCommand. When I click the button the relay command is executing and returning values which I add to the observable collection, but myview is not getting
    updated. when i directly create object in my design mode and in runtime the view is updating properly. Please provide any suggestion.
    Code Section
    View
    <Page
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="using:CorrectMetroCardFare"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:ViewModel="using:CorrectMetroCardFare.ViewModel"
        x:Class="CorrectMetroCardFare.MainPage"
        mc:Ignorable="d"
        Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
        DataContext="{Binding Main, Mode=OneWay, Source={StaticResource Locator}}">
        <Grid Height="640" Margin="0,0.333,0,-0.333" VerticalAlignment="Top">
            <TextBlock x:Name="title" Text="Metro Card Fare"  Margin="0,10,0,603"/>
            <TextBox x:Name="txtCurrentValue" InputScope="Number" PlaceholderText="Enter your Current Balance" Margin="0,53,0,0" Text="{Binding CurrentBalance, Mode=TwoWay}"/>
            <Button Content="Show Fares" HorizontalAlignment="Left" Margin="96,113,0,0" VerticalAlignment="Top" Command="{Binding ShowFaresCommand, Mode=OneWay}" CommandParameter="{Binding
    CurrentBalance}" />
            <ListView x:Name="nbc" SelectionMode="Single" Margin="10,182,10,150" ItemsSource="{Binding Charges}">
                <ListView.Resources>
                    <DataTemplate x:Key="FareTemplate">
                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                            </Grid.ColumnDefinitions>
                            <TextBlock Text="{Binding AmountToRecharge}" TextAlignment="Right" Grid.ColumnSpan="4"
    Margin="0,0,-28,0" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource TextStyleLargeFontSize}"></TextBlock>
                            <TextBlock Text="{Binding BonusAmount}" TextAlignment="Right" Margin="118.333,0,-128.333,0"
    Grid.Column="3" FontSize="{StaticResource TextStyleLargeFontSize}"/>
                            <TextBlock Text="{Binding NewBalance}" TextAlignment="Right" Margin="118,0,-229.333,0"
    Grid.Column="3" FontSize="{StaticResource TextStyleLargeFontSize}"/>
                            <TextBlock Text="{Binding NumberofRides}" TextAlignment="Right" Margin="298,0,-308.333,0"
    Grid.Column="3" FontSize="{StaticResource TextStyleLargeFontSize}"/>
                        </Grid>
                    </DataTemplate>
                    <ItemsPanelTemplate x:Key="FaresPanelTemplate">
                        <VirtualizingStackPanel Orientation="Vertical"></VirtualizingStackPanel>
                    </ItemsPanelTemplate>
                    <DataTemplate x:Key="headerTemplate">
                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="90" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                            </Grid.ColumnDefinitions>
                            <TextBlock Text="Amount to Recharge" Grid.Column="0" TextWrapping="WrapWholeWords" FontFamily="{StaticResource
    PivotHeaderItemFontFamily}" FontSize="{StaticResource ContentControlFontSize}"/>
                            <TextBlock Text="Bonus Amount" Grid.Column="1" TextWrapping="WrapWholeWords" FontFamily="{StaticResource
    PivotHeaderItemFontFamily}" FontSize="{StaticResource ContentControlFontSize}"/>
                            <TextBlock Text="New Balance" Grid.Column="2" TextWrapping="WrapWholeWords" FontFamily="{StaticResource
    PivotHeaderItemFontFamily}" FontSize="{StaticResource ContentControlFontSize}"/>
                            <TextBlock Text="Number of Rides" Grid.Column="3" TextWrapping="WrapWholeWords" FontFamily="{StaticResource
    PivotHeaderItemFontFamily}" FontSize="{StaticResource ContentControlFontSize}"/>
                        </Grid>
                    </DataTemplate>
                </ListView.Resources>
                <ListView.HeaderTemplate>
                    <StaticResource ResourceKey="headerTemplate"/>
                </ListView.HeaderTemplate>
                <ListView.ItemsPanel>
                    <StaticResource ResourceKey="FaresPanelTemplate"/>
                </ListView.ItemsPanel>
                <ListView.ItemTemplate>
                    <StaticResource ResourceKey="FareTemplate"/>
                </ListView.ItemTemplate>
                <ListView.DataContext>
                    <ViewModel:MainViewModel/>
                </ListView.DataContext>
            </ListView>
        </Grid>
    </Page>
    View Model
         /// <summary>
                    /// Sets and gets the DayList property.
                    /// Changes to that property's value raise the PropertyChanged event.
                    /// </summary>
                    public ObservableCollection<BonusChargesValue> Charges
                        get
                            return _charges;
                        set
                            if (_charges == value)
                                return;
                           // RaisePropertyChanging(ChargesListPropertyName);
                            _charges = value;
                            RaisePropertyChanged(ChargesListPropertyName);
                    public RelayCommand ShowFaresCommand
                        get;
                        set;
              /// <summary>
                    /// Initializes a new instance of the MainViewModel class.
                    /// </summary>
                    public MainViewModel()
                        if (IsInDesignMode)
                            // Code runs in Blend --> create design time data.
                           // BonusChargesValue bnc = new BonusChargesValue();
                            _charges = new ObservableCollection<BonusChargesValue>();
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 10.0, BonusAmount = 5, NewBalance = 15, NumberofRides = 5 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 12.0, BonusAmount = 6, NewBalance = 17, NumberofRides = 6 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 14.0, BonusAmount = 7, NewBalance = 19, NumberofRides = 7 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 16.0, BonusAmount = 8, NewBalance = 21, NumberofRides = 8 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 18.0, BonusAmount = 9, NewBalance = 23, NumberofRides = 9 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 10.0, BonusAmount = 5, NewBalance = 15, NumberofRides = 5 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 12.0, BonusAmount = 6, NewBalance = 17, NumberofRides = 6 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 14.0, BonusAmount = 7, NewBalance = 19, NumberofRides = 7 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 16.0, BonusAmount = 8, NewBalance = 21, NumberofRides = 8 });
                            _charges.Add(new BonusChargesValue { AmountToRecharge = 18.0, BonusAmount = 9, NewBalance = 23, NumberofRides = 9 });
                        else
                            // Code runs "for real"
                            Charges = new ObservableCollection<BonusChargesValue>();
                            ShowFaresCommand = new RelayCommand(GetValues, () => { return true; });
                          //  ShowFares = new RelayCommand(() =>
                               // Words = new string(Words.ToCharArray().Reverse().ToArray());
                            //_charges = new ObservableCollection<BonusChargesValue>();
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 10.0, BonusAmount = 5, NewBalance = 15, NumberofRides = 5 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 12.0, BonusAmount = 6, NewBalance = 17, NumberofRides = 6 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 14.0, BonusAmount = 7, NewBalance = 19, NumberofRides = 7 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 16.0, BonusAmount = 8, NewBalance = 21, NumberofRides = 8 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 18.0, BonusAmount = 9, NewBalance = 23, NumberofRides = 9 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 10.0, BonusAmount = 5, NewBalance = 15, NumberofRides = 5 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 12.0, BonusAmount = 6, NewBalance = 17, NumberofRides = 6 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 14.0, BonusAmount = 7, NewBalance = 19, NumberofRides = 7 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 16.0, BonusAmount = 8, NewBalance = 21, NumberofRides = 8 });
                            //_charges.Add(new BonusChargesValue { AmountToRecharge = 18.0, BonusAmount = 9, NewBalance = 23, NumberofRides = 9 });
                    private void GetValues()
                        CalculateMetroFare cmcf = new CalculateMetroFare();
                        if (!string.IsNullOrWhiteSpace(CurrentBalance))
                            var chr = cmcf.Add2ExistingCard(Convert.ToInt32(CurrentBalance));
                            foreach (BonusChargesValue bncv in chr)
                                Charges.Add(bncv);
                        }`enter code here`
                       // return _charges;
    VAravind ---------------------------------------------------------------------------------------------------------------------------------- Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post
    has been useful to you. Blog
    VAravind ---------------------------------------------------------------------------------------------------------------------------------- Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post
    has been useful to you. Blog

    I am not getting error but the Listview is not getting updated after the relay command
    VAravind ---------------------------------------------------------------------------------------------------------------------------------- Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post
    has been useful to you. Blog

  • How to redirect to library on button click in sandbox visual web part solution for office 365

    Hi,
    I have created a sandbox solution for Office 365 with one text box and a button. 
    On button click i am creating a library with name from text box. 
    So, what i want is redirect to newly created library as soon it get created on button click.
    how could i do that?
    Thanks

    Got the solution
    <asp:Literal ID="litRedirect" runat="server" />
    string redirectURL =
    listurl;
    litRedirect.Text = "<script type='text/javascript'>window.location = '" +
    redirectURL + "/';</script>";

  • In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    Thank you so much for your reply . . . but . . . I should have shared my original script with you -- it was a little more complicated than I led you to believer. I was triggering a group of text fields to become disabled as well as gray. Below is the original script so that when the checkbox is checked, it causes several "Co" fields to be disabled and gray.
    // Mouse Up script for check box 
    // If checked, certain fields should be disabled 
    var f_prefix = "Co"; 
    // Get a reference to all of the "Co" fields 
    var f = getField(f_prefix); 
    // Reset the Co fields 
    resetForm([f_prefix]); 
    if (event.target.value === "Off") { 
        // Enable the Co fields 
        f.readonly = false; 
        f.fillColor = color.transparent; 
    } else { 
        // Disable the Co fields 
        f.readonly = true; 
        f.fillColor = color.gray; 
    To recap -- my goal is to get those gray fields to revert to transparent if the form is reset. I'm willing to create my own custom "Reset Form" button but I'm not sure I understand how that would look. Wouldn't it be quite lengthy? I think I'm having a brain freeze -- can't figure it out!

  • How can you get your submit buttons to be a single click instead of the default double click?  (The

    How can you get your submit buttons on the quiz template to be a single click instead of the default double click?  (The option to choose double click or not is not showing in properties for this).

    Hmmm... Submit button doesn't need a double click at all. Maybe you are talking about the two-step process? When you click on Submit, the feedback appears with the message to click anywhere or press Y. Is that what you are talking about? If you are talking about a real double-click, something must be wrong in your file. And which version are you using?
    http://blog.lilybiri.com/question-question-slides-in-captivate
    Lilybiri

  • The back button no longer works. I have disabled all add-ons, rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    the back button no longer works. I have disabled all add-ons,rebooted & reset the defaults for the browser and nothing has changed. This happens on all webpages.How do I get the back button to light up again?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    Another possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Trackpad - tap to click gets reset on laptop restart

    I have set my trackpad setting to "tap to Click" but it gets reset every time I restart my macbook pro. Could you please help me overcome this problem!?

    Tap to click has to be enabled separately in your Windows partition. I'm assuming you've installed all the Boot Camp drivers - in which case you need to navigate to the bottom right of your task bar and press the little arrow to reveal all of your background services. You should see the Boot Camp logo. Double click on it (or if that fails, right click on it and open the Preferences menu) and you should see some tabs such as 'Startup Disk', 'Keyboard' etc. Navigate to the one called 'Trackpad' and you should find a checkbox for the tap to click option.

  • How to get iterator used on jsff from button clicked on jspx

    Hi All,
    I am using jdeveloper 11.1.1.5.
    I have a bounded task flow and inside that I have a jsff and I have added one iterator in its bindings. Now I have dragged that jsff on my jspx page as a region.
    I have a button on my jspx page I want to find the iterator of the jsff on button click.
    How to find it.
    Please help.
    -- NavinK

    Thanks Timo for your reply.
    Does that mean We have to add the same iterator in the bindings of jspx as well ?
    In my case I have added the iterator to my jspx page but I am getting the error described in InputText value is not getting updated in Iterator
    Please help.
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can I permanently save my customized toolbars and navigation button settings? When I run Norton Utilities CleanUp, Firefox gets reset to 'factory'.

    I like to clean things out on a regular basis but when I run the Norton Clean-up utility all of my custom toolbar and navigation button settings get reset to 'factory' condition. How can I permanently save these changes to my config or preference settings?

    Cookies, Completed Forms, .tmp files are all that's set to be cleared. If I can identify the appropriate elements I can protect them from deletion. Does anyone know?

  • Show image on the form Java WS gets image. Call this WS on button click

    Hi,
    Is there a way to show an image on the form. On the form I have along with the data I have a button that when clicked get and show the image itself on the form. I have a Java WebService that gets the image from the remote location. How can I make the button click event to call this Web Service and show the image on the form itself. Any help is appreciated.
    Thanks

    WHiteSox, are you on client/server or web version.
    which version of forms are you using.
    something i can think of is.
    during the click to call the webservice, copy the image to the local system.
    next step is, using READ_IMAGE_FILE built in which reads the image from the local file system and displayed on the forms image item.

  • Today  my iPod touch 4 generation was dropped. now it just has a white screen. i tried reseting it by clicking the home and lock buttons but nothing helped. what is my problem and how do i fix it?

    Today  my iPod touch 4 generation was dropped. now it just has a white screen. i tried reseting it by clicking the home and lock buttons but nothing helped. what is my problem and how do i fix it?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              

  • BackingBean Method call from Task flow isnot getting  the Binding Container

    Hi All,
    I am trying to call a backing bean method from a task flow using method call activity, where my page belongs to.
    In this method I am trying to get the binding container,
          DCBindingContainer dcbindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
          OperationBinding operationCreate = dcbindings.getOperationBinding("CreateInsert"); but it is evaluating to null and throwing null pointer exception.
    javax.el.ELException: java.lang.NullPointerException
         at com.sun.el.parser.AstValue.invoke(AstValue.java:161)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:168)
         at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:161)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:989)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:878)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:777)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:551)
         at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:147)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
         at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)I guess, I miss something in this process, but no idea what it is ...!!!!
    Any help will be appreciated.
    I am using Studio Edition Version 11.1.1.3.0
    Ranjith

    Hi Arun,
    In my task flow i am calling a jspx page as a popup,
    through my jspx page I can do all these operations,
    but the problem is when I am trying to call a method written in the Backing bean of that page, at that time only the method is not getting the bindings.
    Create insert operation is there in the bindings....
    Ranjith

Maybe you are looking for