Pop up not working

I am having table and i have to delete the record from that table........when i click that delete button the popup to be displayed.....
for the generation of the popup i have used the below coding.........
DATA: LR_API_COMP_CONTRL      TYPE REF TO IF_WD_COMPONENT,
       LR_WINDOW_MANAGER       TYPE REF TO IF_WD_WINDOW_MANAGER,
       LR_POPUP_WINDOW         TYPE REF TO IF_WD_WINDOW,
       LR_VIEW_CONTROLLER      TYPE REF TO IF_WD_VIEW_CONTROLLER,
       POPUP_MSG               TYPE STRING_TABLE.
       LR_API_COMP_CONTRL = WD_COMP_CONTROLLER->WD_GET_API( ).
       LR_WINDOW_MANAGER = LR_API_COMP_CONTRL->GET_WINDOW_MANAGER( ).
clear POPUP_MSG[].
APPEND 'Are You Sure to Delete The Records?' TO POPUP_MSG.
       CALL METHOD LR_WINDOW_MANAGER->CREATE_POPUP_TO_CONFIRM
         EXPORTING
           TEXT                 = POPUP_MSG
           BUTTON_KIND          = IF_WD_WINDOW=>CO_BUTTONS_YESNO
           MESSAGE_TYPE         = IF_WD_WINDOW=>CO_MSG_TYPE_QUESTION
          CLOSE_BUTTON         = ABAP_TRUE
            WINDOW_TITLE         = 'Message Box'
          WINDOW_LEFT_POSITION =
          WINDOW_TOP_POSITION  =
          WINDOW_POSITION      =
          WINDOW_WIDTH         =
          WINDOW_HEIGHT        =
         RECEIVING
           RESULT               = LR_POPUP_WINDOW
LR_VIEW_CONTROLLER = WD_THIS->WD_GET_API( ).
CALL METHOD LR_POPUP_WINDOW->SUBSCRIBE_TO_BUTTON_EVENT
     EXPORTING
       BUTTON            = IF_WD_WINDOW=>CO_BUTTON_YES
      BUTTON_TEXT       =
      TOOLTIP           =
       ACTION_NAME       = 'YES'
       ACTION_VIEW       = LR_VIEW_CONTROLLER
      IS_DEFAULT_BUTTON = ABAP_FALSE
LR_POPUP_WINDOW->OPEN( ).
And on action YES (For the popup's Yes button) I have written the code for deleting the record.........
DATA:
    NODE_MODULE                         TYPE REF TO IF_WD_CONTEXT_NODE,
    ELEM_MODULE                         TYPE REF TO IF_WD_CONTEXT_ELEMENT,
    STRU_MODULE                         TYPE IF_V_MODULE=>ELEMENT_MODULE .
  DATA id TYPE ZAC_MODULES-ZMODULE_id.
navigate from <CONTEXT> to <MODULE> via lead selection
  NODE_MODULE = WD_CONTEXT->GET_CHILD_NODE( NAME = `MODULE` ).
  ELEM_MODULE = WDEVENT->GET_CONTEXT_ELEMENT( 'CONTEXT_ELEMENT' ).
   CALL METHOD ELEM_MODULE->GET_ATTRIBUTE
    EXPORTING
      NAME  = 'ZMODULE_ID'
    IMPORTING
      VALUE = id.
  NODE_MODULE->REMOVE_ELEMENT( ELEM_MODULE ).
delete FROM zac_modules WHERE zmodule_id = id.
wd_comp_controller->filltablemodule( ).
  get message manager
  DATA: L_CURRENT_CONTROLLER TYPE REF TO IF_WD_CONTROLLER,
        L_MESSAGE_MANAGER    TYPE REF TO IF_WD_MESSAGE_MANAGER.
  L_CURRENT_CONTROLLER ?= WD_THIS->WD_GET_API( ).
  CALL METHOD L_CURRENT_CONTROLLER->GET_MESSAGE_MANAGER
    RECEIVING
      MESSAGE_MANAGER = L_MESSAGE_MANAGER
  report message
  CALL METHOD L_MESSAGE_MANAGER->REPORT_SUCCESS
    EXPORTING
      MESSAGE_TEXT  = 'Record Deleted Successfully'
     PARAMS        =
     MSG_USER_DATA =
While clicking on the YES button of that popup "Null Object Reference error has occured". The above coding works fine without popup..........plz help me regarding with this.............
THANKS IN ADVANCE
ALAGAPPAN.S

Hello
you need to modify the code little bit to get the index number of the row or element to be deleted.
for this
1. create one context attribute say name 'INDX' of type i.
2. then the code for generating the popup should be like
data el type ref to if_wd_context_element.
  el = wdevent->get_context_element( 'CONTEXT_ELEMENT' ).
  data indx type i.
  indx = el->get_index( ).
  wd_context->set_attribute(
  name = 'INDX'
  value = INDX
  DATA: LR_API_COMP_CONTRL TYPE REF TO IF_WD_COMPONENT,
LR_WINDOW_MANAGER TYPE REF TO IF_WD_WINDOW_MANAGER,
LR_POPUP_WINDOW TYPE REF TO IF_WD_WINDOW,
LR_VIEW_CONTROLLER TYPE REF TO IF_WD_VIEW_CONTROLLER,
POPUP_MSG TYPE STRING_TABLE.
LR_API_COMP_CONTRL = WD_COMP_CONTROLLER->WD_GET_API( ).
LR_WINDOW_MANAGER = LR_API_COMP_CONTRL->GET_WINDOW_MANAGER( ).
clear POPUP_MSG[].
APPEND 'Are You Sure to Delete The Records?' TO POPUP_MSG.
CALL METHOD LR_WINDOW_MANAGER->CREATE_POPUP_TO_CONFIRM
EXPORTING
TEXT = POPUP_MSG
BUTTON_KIND = IF_WD_WINDOW=>CO_BUTTONS_YESNO
MESSAGE_TYPE = IF_WD_WINDOW=>CO_MSG_TYPE_QUESTION
* CLOSE_BUTTON = ABAP_TRUE
WINDOW_TITLE = 'Message Box'
* WINDOW_LEFT_POSITION =
* WINDOW_TOP_POSITION =
* WINDOW_POSITION =
* WINDOW_WIDTH =
* WINDOW_HEIGHT =
RECEIVING
RESULT = LR_POPUP_WINDOW
LR_VIEW_CONTROLLER = WD_THIS->WD_GET_API( ).
CALL METHOD LR_POPUP_WINDOW->SUBSCRIBE_TO_BUTTON_EVENT
EXPORTING
BUTTON = IF_WD_WINDOW=>CO_BUTTON_YES
* BUTTON_TEXT =
* TOOLTIP =
ACTION_NAME = 'YES'
ACTION_VIEW = LR_VIEW_CONTROLLER
* IS_DEFAULT_BUTTON = ABAP_FALSE
LR_POPUP_WINDOW->OPEN( ).
3. modify the code for yes action event handler also like below
DATA:
NODE_MODULE TYPE REF TO IF_WD_CONTEXT_NODE,
ELEM_MODULE TYPE REF TO IF_WD_CONTEXT_ELEMENT
*STRU_MODULE TYPE IF_V_MODULE=>ELEMENT_MODULE
DATA id TYPE ZAC_MODULES-ZMODULE_id.
** navigate from <CONTEXT> to <MODULE> via lead selection
NODE_MODULE = WD_CONTEXT->GET_CHILD_NODE( NAME = `MODULE` ).
DATA IND TYPE I.
WD_cONTEXT->GET_ATTRIBUTE(
EXPORTING
NAME = 'INDX'
IMPORTING
VALUE = IND
ELEM_MODULE = NODE_MODULE->GET_ELEMENT( INDEX = IND ).
CALL METHOD ELEM_MODULE->GET_ATTRIBUTE
EXPORTING
NAME = 'ZMODULE_ID'
IMPORTING
VALUE = id.
NODE_MODULE->REMOVE_ELEMENT( ELEM_MODULE ).
delete FROM zac_modules WHERE zmodule_id = id.
wd_comp_controller->filltablemodule( ).
* get message manager
DATA: L_CURRENT_CONTROLLER TYPE REF TO IF_WD_CONTROLLER,
L_MESSAGE_MANAGER TYPE REF TO IF_WD_MESSAGE_MANAGER.
L_CURRENT_CONTROLLER ?= WD_THIS->WD_GET_API( ).
CALL METHOD L_CURRENT_CONTROLLER->GET_MESSAGE_MANAGER
RECEIVING
MESSAGE_MANAGER = L_MESSAGE_MANAGER
* report message
CALL METHOD L_MESSAGE_MANAGER->REPORT_SUCCESS
EXPORTING
MESSAGE_TEXT = 'Record Deleted Successfully'
* PARAMS =
* MSG_USER_DATA =
thanks
sarbjeet singh

Similar Messages

  • Lion 10.7 / pop mail not working...

    on an intel mac pro... pop mail not working... problems with 110 port connecting to server... any suggestions?

    The only possible way to get my mail working with Mac OS X 10.7.4 was to use Thunderbird (latest version, 13) instead of Apple Mail. I don't know if this was related to my ISP only but I'm surprised that there aren't more discussions about this problem. Apparently, it is very widespread from what my ISP said. They said there is a problem with (or change in) the way Apple Mail handles POP accounts under Mac OS X 10.7.x. They are getting dozens of calls about it every day. My POP account, which worked perfectly under Mac OS X 10.6.8, simply would not retrieve mail under Mac OS X 10.7.4 using the exact same settings. I tried absolutely everything that I could find on the Internet to resolve the problem in order to continue to use Apple Mail.
    So for anyone else experiencing this problem, forget Apple Mail. Download Thunderbird and set up your POP account exactly as it was set up under Snow Leopard and your problem will be solved. Looks like Apple has some fixing to do. This is unacceptable, regardless of what Apple's excuse is or whatever their reason was for making this change.
    I like Thunderbird. I'm actually kind of glad this happened now

  • Mail yahoo pop access not working.

    This has been going on for 2 days now. Re set up my account in mail but nothing just the ! next to the mailbox. Anyone else having problems?

    Sending an email is something totally different again - you can send yourself or anyone else an email to any email address.
    You can also send or forward any email while on your Yahoo account to yourself or anyone else.
    Setting up Yahoo to automatically forward emails to your home email address is something else. Here is an excerpt from Yahoo Help:
    +The ability to access Yahoo! Mail using an email reader program such as Outlook, Eudora, or Thunderbird is only available to customers of our premium Yahoo! Mail Plus service. To determine whether you have purchased this service, please visit the My Services page.+
    Although this does not mention Apple Mail, it functions exactly like Outlook, etc. so it will not work. Here is the link to the entire help page:
    http://help.yahoo.com/l/us/yahoo/mail/yahoomail/mailplus/pop/pop-35.html;_ylt=An EHIP08O6GRC7cEYzjbTbe7myN4
    I have no idea why it might have worked for you previously, but according to Yahoo, it cannot be done unless you pay for the service.
    So, unless I've totally misunderstood what you are trying to say, I do not have a different answer and it does not have anything to do with your Mac or OS.

  • Gmail POP will not work after upgrade to Leopard (Mail 3.5)

    Hi,
    I recently upgraded to Leopard and was previoulsy using Gmail for my POP service, whuch worked fine.
    I was a little disappointed that the upgrade disabled by HTTP app that allowed me to access my Hotmail, but no big.
    The big deal here is tht I have tried everything listed on Gmail's troubleshooting page for POP accounts and I can't get Mail to connect to the smtp nor pop server. I tried deleting recreting the account, verified settings with what's listed, opening the firewall, testing the telnet connection (nothiing happened, so I guess that's good?).
    I sent this issue to Gmail but all I got back was a redirect to the Troubleshooting page and an .exe tool that I can't use.
    Anyone else out there that may have this problem or have a clue as to what I could be missing?
    I was also loged in to Gmail while setting up account so I know I can access the mail outside of POP.
    Thanks for reading!!!

    After spending a couple of hours researching this the solution that worked perfectly for me was to delete all plist files.
    1. Start with Finder/Macintosh HD/Mail/ look for the plist file there and delete it.
    2. Go back to Finder, ctrl click and select Go to Folder
    3. paste this: ~/Library/Mail/
    4. Find all plist files and delete.
    If you feel more comfortable, you may save them someplace as a backup.
    After deleting all plist files related to Mail, restart your PC. If you don't it may not work.
    Either prior to doing this or after, be sure your settings are correct for gmail.
    Once I did this, all of my incoming and outgoing messages loaded properly and everything worked perfectly.
    If you need additional assistance feel free to leave a message.

  • SP.UI.ModalDialog.showModalDialog(options); pop-up not working in IE8

    When i click a button, a pop-up should be opened. i have written below code into a function and called it to button... It works perfect in IW 9 and IE10. but its not working in IE8. please guid me to fix it.
    var options = SP.UI.$create_DialogOptions(); 
            options.title ="CDP Access";
            options.width = 400;
            options.height =150;   
            options.html = createDialogElementCDP(); 
            options.dialogReturnValueCallback = dialogCallback;
            SP.UI.ModalDialog.showModalDialog(options);
    function createDialogElementCDP()
    here my content goes..
    Please help me run the popup in IE8 also. 
    Thank you!

    What if you try something like below:
    EnsureScriptFunc('SP.js', 'SP.ClientContext', function () {
    EnsureScriptFunc("SP.UI.Dialog.js", "SP.UI.ModalDialog.showModalDialog", function () {
    var options = {
    title: "CDP Access",
    html:'this is html',
    dialogReturnValueCallback: callback
    SP.UI.ModalDialog.showModalDialog(options);
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Close Pop up not working

    Dear experts,
    we are facing the following issue:
    we create an external window using window manager.
    wd_this->go_window  = lo_window_manager->create_window(
                          window_name            = 'WI_XXX
                          title                  = XXX
    *                      close_in_any_case      = abap_true
                          message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                          close_button           = abap_true
                          button_kind            = if_wd_window=>co_buttons_ok
                          message_type           = if_wd_window=>co_msg_type_none
    *                      default_button         = if_wd_window=>co_button_ok
    *                      default_button         = if_wd_window=>co_buttons_okcancel
    We assigned an action to the pop up ok button.
    wd_this->go_window->subscribe_to_button_event(
                     button            = if_wd_window=>co_button_ok
                     action_name       = 'POPUP_OK_XXX
                     action_view       = lo_view_controller "wd_this->wd_get_api( )
                     is_default_button = abap_true ).
    Clicking on OK Button, the action fires - the code is working fine.
    But: after our code is finished, the screen has to be refreshed. We fired an exit plug of the current window, providing the url of the current application. This is working fine too, but the pop up window is still open and modal, even if we invoke the close method of the popup window directly before fireing the exit plug. In the background we can see the refreshed application, but it is not possible to do anything.
    Does anyone have a solution for this?
    We tried setting close_in_any_case to true and so on ... but nothing works.
    The problem occurs both create_window and pop_up_to_confirm ...
    Regards, Florian

    Hi,
    alright..in this case i would say create your own close btn on the view you are embeding inside this pop-up window and try to close the window in its action method....
    here is the code to get rid of all the standard btns:
    DATA lo_window_manager TYPE REF TO if_wd_window_manager.
          DATA lo_api_component  TYPE REF TO if_wd_component.
          DATA lo_window         TYPE REF TO if_wd_window.
          lo_api_component  = wd_comp_controller->wd_get_api( ).
          lo_window_manager = lo_api_component->get_window_manager( ).
          lo_window         = lo_window_manager->create_window(
                             window_name            = 'POPUP_WINDOW'
                             title                  = title_txt
    *                         close_in_any_case      = abap_false
                             message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                       close_button           = abap_false
    *                   button_kind            = if_wd_window=>co_buttons_ok
                             message_type           = if_wd_window=>co_msg_type_none
    *                   default_button         = if_wd_window=>co_button_ok
          wd_comp_controller->lo_popup_window = lo_window.
          lo_window->open( ).
    Thanks..
    AS

  • After changing from cs5.5 to cs6 my javascript pop-up not Working??

    Hello, maybe someone could figure this one out.
    I have a file that I have done on CS5.5 and everything works fine, just simple ActionScript 2 and a script: on (release) { getURL("javascript:openNewWindow('http://xxxxxxx.html','thewin','height=800,width=800,toolbar=no,scrollbars=no,top=560,left= 140')"); }
    when I then open the SAME file in CS6 and publish it, everything else works BUT not this pop-up??
    anyone? ideas?
    - Norskuli

    test online or adjust your player security settings,  http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html

  • GoogleMail POP account not working with Mail

    I am trying to setup my GoogleMail account in mail. Going through the tests, everything works correctly (POP and SMTP). However, I cannot receive any mail via POP...I can however send mail via SMTP. I deleted the GoogleMail setup and tried it again with the same result. If I go to my GoogleMail account directly in a browser, all the sent mail from Mail is going through.
    What could be the problem?

    Ah! If you were talking about messages sent to yourself, then this is a Gmail issue; Mail has no bearing on it. Gmail POP access doesn’t work as a normal POP mail server would. Here are some of its idiosyncrasies:
    1. Messages downloaded by any conventional POP mail client are marked as downloaded at the server (but not as read on the web), and no longer available to either the same or any other POP mail client.
    2. To make already downloaded Gmail messages available for POP access again, you must go to Gmail’s Settings > Forwarding and POP page, select Enable POP for all mail, and click Save Changes, which will cause everything (and I mean everything) still there to be downloaded again. Alternatively, if you only want to download the last 30 days of mail, you can configure Mail in “recent mode” as described in How should I use POP on mobile or multiple devices?.
    3. Any Mail > Preferences > Accounts > Advanced > Remove copy from server settings have absolutely no effect on the messages stored on Gmail’s server.
    4. Messages created and sent using the web interface will be downloaded by your POP mail client as if they were incoming messages. You can set up a rule in Mail to automatically route those messages to the appropriate Sent mailbox (or to any other mailbox for that matter) if that's what you want. Although this may seem weird, it's good because it allows archiving all messages locally in Mail, regardless of how they were sent -- as long as you don't access the same Gmail account with more than one POP mail client, that is.
    5. Messages created and sent using a POP mail client such as Mail are also treated as if they were incoming messages for POP purposes, just as in 4. What prevents them from being downloaded is that Gmail marks them as already downloaded immediately. They would, however, be downloaded if Gmail settings were changed as described in 2 above.
    6. As a particular case of 5, messages sent to yourself will appear in your Inbox on the web, but cannot be downloaded by either the same or any other POP mail client.

  • POP account not working

    I just recreated my POP account for the umpteenth time because I cannot get it to respond correctly - will not go online, retrieve mail, show any messages that should still be in there, etc.
    I used the sam settings from my Tiger machine which sends mail just fine in this same POP account.
    I have 3 IMAPS and a .Mac/MobileMe account and they work just fine.
    I have tried different port settings based on what I've read in here and no luck. What port should a POP acct use? My other machine says 110, but no luck in Leopard.
    I keep getting a request for my passsword.
    HELP! HELP! HELP!! Please!!

    MobileMe offered a POP options, and people who have migrated have sometimes found that the facility hung over for a bit before disappearing.
    If you were using it in POP mode and had received the emails they should be on your computer - receiving them would download them and probably remove them from the server. However the POP access was probably set up as a separate account to the IMAP, so if you deleted the POP account you would have deleted the emails along with it unless you took steps to save them. Time Machine?...

  • Exchange 2013 / Eudora POP-account not working

    I have a MAC (version 9) user who has Eudora (6.2.4). User tries to connect to Exchange 2013 server with POP-account but is unable to get this to work.
    I tried to search the web for this answer but couldn't.
    I would be happy to know if this is even possible to set up before I spend my time and customer's money on this.
    I got Eudora 7.1 working with IMAP on my XP Virtual machine, but I have no way of testing it with MAC-computer.
    Edit: I also got POP account working on my XP Virtual machine.

    Thanks for your reply. I do not know the specific error message as this happens to one of our end-customer and he has not provided detailed information about this.
    User can't update Eudora, because he is using older version of MAC.
    I would just like to know if it is even possible to connect Eudora 6.2.4 to Microsoft Exchange 2013.

  • Droid RazR Maxx - pop email not working (with Comcast)

    On 10/14/2014 my phone starting giving me a message "couldn't sign in" message saying username or password invalid. However, I have used the same username/password via the web and other email clients, so that is NOT the problem. I've searched and searched but have not found anything. I called Comcast and they said they could reset my password, which obviously isn't the problem, and if that didn't work to call Verizon. I've completely removed the email account and tried to setup again and now it gives me the same message during the incoming setup process.
    Anybody else experiencing this problem? It's been 2.5 days and no luck resolving despite many attempts.
    Thanks

        durginpark,
    Oh no! Sorry that your Comcast email isn't working. I had to do some research on this one myself. As an Android user, and someone who knows a decent amount about this type of stuff, I was stumped. So I reached out to Comcast myself as well. They advised to use the Xfinity App that is available in Google Playstore and sign in with the App to receive all the Emails going forward. This is also listed as an option in Xfinity Website Support Page. Were you previously just using the email app that came with the phone? Try the Xfinty App and see if that works.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • Caps lock/scrol​l lock/num lock/ LEDs not working - instead pop-ups in bottom RH corner of screen

    Specific details; p/n: GS066PA#ABG,  4 GBytes DDR2 RAM, OS Windows 7 (6.1) Ultimate Edition 64-bit Service Pack 1 (Build 7601) DirectX 11.0.  LED's were working but during one of the windows automatic updates they stopped working.  I don't know which update.  Now I get little pop-ups "CAPS LOCK: ON" etc (black text on white background).  If I rename bttray.exe to bttray1.exe and restart the laptop, that kills the pop-ups in the bottom RH corner of the screen but it does not restore the operation of my blue indicator LED's.  Can anyone help please?

    Hi @haggis1 ,
    I saw your post regarding the problems with the pop-ups and LED lights not working after a Windows Update. Most likely there was a problem with the update when it was installed. This Microsoft Support link will show you how to uninstall an update. Try uninstalling the most recent updates and the restart the notebook and see if the LEDs start working again.
    If that fixes the issue then there is another section in that link entitled: I remove an update but it gets automatically installed. That will show you how to hide an update.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • HT1926 my itunes is not working at all, so I uninstalled it and reinstalled.  I get to the point where is says it is starting up and a messages box pops up and says "Service Apple Mobile Device failed to start.  Verifty that you have sufficient privileges

    my itunes is not working at all.  A message pops up to say that I may not have suffient privileges to start system services on my apple mobile device.
    I have uninstalled and reinstalled itunes but the same message still appears and itunes will not start.
    Any help would be appreciated!
    Thanks, mormick

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • My Ipad 2 external speakers does not work and headphones has popping sound. This all occured at the same time as my Iphone and Ipod headphones only played mono (no, the "mono" option is not on). How can there be audio issue for all these devices?

    My IPad 2 external speaker does not work and the original headphones have popping sound when used. This all occurred at the same time as my IPhone and IPod headphones only plays mono (and no, the "mono" option is not on) with the original headphones, as well as, other headphones tested.  How can there be audio issue for all these devices at the same time?
    As you may have noted from the list of Apple devices I own, I believed in the Apple and the products it was producing; but it is hard to believe from my experience and the other voices within the Apple Community that we are all experiencing the same hardware issues. Especially since I recently, I upgraded to an IPhone 4g (no, my faith in IPhone 5 series is very little) and is experiencing the same audio problem as described above. So now, I am off to the Apple store again to be told that it’s a hardware problem on new IPhone. Really? Apple, what happen to the pride in the product you were producing?

    Everyone does things a little differently. I love to "jam " along with iTunes ( or old Lp's) . Always have. That's where/how I've learned to play .
    I'm sure leonieDF is giving a proper way to jam along on a keyboard with an iTune. He blows my mind all the time with what he knows. Nuff respects to him !
    What I do is make a GB project I call "Jam With". I'll make several new tracks that are blank. Just has a few instruments named in the blank tracks. You can change those per song ...
    Because I'm not concerned about changing the pitch / key.... of the iTune or the tempo ... I can simply play along with it.
    Peace,
    P. Dreadie

  • I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    The Game Center app is pre installed and cannot be removed from the device.
    Best thing to do is move it to the last available screen.
    Hold down the Game Center app until all the apps jiggle then sliide the Game Center app to the right from one screen to the next. This requires a bit of finesse, but it's doable.
    Press the Home button one time to stop the apps from jiggling.
    For the Apple ID issue, try resetting.
    Tap Settings > General > Reset > Reset All Settings
    Then try your Apple ID and password for the Game Center app.

Maybe you are looking for

  • Getting windows domain login name into java application

    Hi, I am looking how can i get user name of windows logged in user. I want to display the user name in the welcome message of the application. The user will be logging into the domain. Please note that I need windows logged in client user name. Pleas

  • Coverting from a string to an integer

    Hi: Is it possible to covert a string to an integer? For example I want to convert the following string values to integers so that I can develop a method to use java.util.Date to test for overlapping appointments. Ex: markCalendar.addApp(new Appointm

  • How do I connect my 20" iMac ...

    to my surround sound stereo system? What cords do I need to get the sound rather than just the speakers from the computer? Lame question yes I know! Sorry? Greg

  • Drill down in webi report

    Hi, Is there any way to display the drill down in webi report.  For example: YearQuarterMonth--Week....... if the drill the Year option I can able to see all Quarter level measures and if I drill down further I can get into Month level measures and W

  • How to update iMac from Safari 4.0.3 to 5.x?

    Verizon says it only supports Safari 5.x. Was there an automatic Software Update for Safari to 5.x ... or is that something I have to buy?