Plz chk my country and oprater

plz chk my country and oprater

Ce can NOT do that. Call AppleCare and give them the serial number. They are the only ones who can definitively tell you what carrier it's locked to if whoever you got it from doesn't know.

Similar Messages

  • Converting output list to pdf ... plz chk the code....

    hi
        can any one execute the following code n tell me y its not workin...
    actually the file is getting downloaded and it opens by excel but not with the pdf.
    REPORT  z_output_pdf.
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA:wa_ekpo TYPE t_ekpo,
    p_repid LIKE sy-repid,
        it_ekpo TYPE STANDARD TABLE OF t_ekpo.
    DATA : lv_repid TYPE sy-repid,
            lv_uname TYPE sy-uname.
    data:
      mstr_print_parms like pri_params,
      mc_valid(1)      type c,
      mi_bytecount     type i,
      mi_length        type i.
    data:
      mtab_pdf    like tline occurs 0 with header line,
      mc_filename like rlgrap-filename.
    lv_repid = sy-repid.
    lv_uname = sy-uname.
    SELECT ebeln matnr
    FROM ekpo
    INTO TABLE it_ekpo.
    LOOP AT it_ekpo INTO wa_ekpo.
      WRITE :/ wa_ekpo-ebeln, wa_ekpo-matnr.
    ENDLOOP.
    DATA: print_parameters TYPE pri_params,
            valid_flag(1) TYPE c,
            mi_rqident    LIKE tsp01-rqident.
    DATA:  p_linsz TYPE sy-linsz VALUE 132, " Line size
      p_paart TYPE sy-paart VALUE 'X_65_132'.  " Paper Format
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      IMPORTING
        out_parameters       = print_parameters
        valid                = valid_flag
      EXCEPTIONS
        invalid_print_params = 2
        OTHERS               = 4.
    *-- Explicitly set line width, and output format so that
    *-- the PDF conversion comes out OK
    print_parameters-linsz = p_linsz.
    print_parameters-paart = p_paart.
        print_parameters-pdest = 'LOCL'.
    *SUBMIT (lv_repid) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                    SPOOL PARAMETERS print_parameters
                    VIA SELECTION-SCREEN
                    AND RETURN.
    *IF sy-subrc  <> 0.
    WRITE :' error'.
    *ENDIF.
    *-- Find out what the spool number is that was just created
    PERFORM get_spool_number USING lv_repid
               lv_uname
      CHANGING mi_rqident.
    *-- Convert Spool to PDF
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid = mi_rqident
          no_dialog  = space
          dst_device = print_parameters-pdest
        importing
          pdf_bytecount                  = mi_bytecount
        tables
          pdf        = mtab_pdf
        exceptions
          err_no_abap_spooljob           = 1
          err_no_spooljob                = 2
          err_no_permission              = 3
          err_conv_not_possible          = 4
          err_bad_destdevice             = 5
          user_cancelled                 = 6
          err_spoolerror                 = 7
          err_temseerror                 = 8
          err_btcjob_open_failed         = 9
          err_btcjob_submit_failed       = 10
          err_btcjob_close_failed        = 11
          others     = 12.
    call function 'DOWNLOAD'
         exporting
              bin_filesize            = mi_bytecount
              filename                = mc_filename
             filetype                = 'BIN'
         importing
              act_filename            = mc_filename
         tables
              data_tab                = it_ekpo.
      write :' ============'.
          FORM get_spool_number *
          Get the most recent spool created by user/report              *
    -->  F_REPID               *
    -->  F_UNAME               *
    -->  F_RQIDENT             *
    FORM get_spool_number USING f_repid
         f_uname
                    CHANGING f_rqident.
      DATA:
        lc_rq2name LIKE tsp01-rq2name.
      CONCATENATE f_repid+0(8)
                  f_uname+0(3)
        INTO lc_rq2name SEPARATED BY '_'.
      DATA : ls_tsp01 TYPE tsp01,
            lt_tsp01 TYPE TABLE OF tsp01.
      SELECT * FROM tsp01
      INTO TABLE lt_tsp01
      WHERE  rq2name = lc_rq2name
      ORDER BY rqcretime DESCENDING.
      LOOP AT lt_tsp01 INTO ls_tsp01.
        f_rqident = ls_tsp01-rqident.
        EXIT.
      ENDLOOP.
    SELECT * FROM tsp01 WHERE  rq2name = lc_rq2name
    ORDER BY rqcretime DESCENDING.
       f_rqident = tsp01-rqident.
       EXIT.
    ENDSELECT.
      IF sy-subrc NE 0.
        CLEAR f_rqident.
      ENDIF.
    ENDFORM." get_spool_number
    plz chk n tell me where its goin wrong....
    Message was edited by:
            neha gupta

    Hi neha,
    i do it in this way:
    REPORT ZGRO_ITAB_PDF_SPOOL.
    DATA: BEGIN OF ITAB OCCURS 0,
             TEXT(72),
          END   OF ITAB.
    Länge der PDF-Datei in Byte
    DATA: PDF_FILESIZE TYPE I.
    DATA: BIN_FILESIZE TYPE I.
    Druckparameter mit Gültigkeit
    DATA: PARAMS      LIKE PRI_PARAMS,
          VALID       TYPE C.
    Spoolnummer
    DATA: SPOOL_NR     LIKE TSP01-RQIDENT,
          SPOOL_NR_DEL LIKE TSP01_SP0R-RQID_CHAR.
    PDF Ausgabetabelle
    DATA: BEGIN OF PDF_OUTPUT OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA: END   OF PDF_OUTPUT.
    DATA: PROGRAM(128) TYPE C.
    DATA: DATEI TYPE STRING VALUE 'D:TESTPDF.PDF'.
    DATA: APPL  TYPE STRING.
    START-OF-SELECTION.
    Druckparameter besorgen (hier für LOCA)
    Line-size sollte entsprechende der Ausgabe gesetzt werden
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          DESTINATION    = 'LOCA'
          LINE_SIZE      = 080
          IMMEDIATELY    = ' '
          NO_DIALOG      = 'X'
        IMPORTING
          OUT_PARAMETERS = PARAMS
          VALID          = VALID.
      CHECK VALID <> SPACE.
    Versorgen der internen Tabelle
      READ REPORT 'ZGRO_ITAB_PDF_SPOOL' INTO ITAB.
    Ausgabe der internen Tabelle mit den Druckparametern.
      NEW-PAGE PRINT ON PARAMETERS PARAMS NO DIALOG NO-TITLE NO-HEADING.
      LOOP AT ITAB.
        WRITE:/ ITAB.
      ENDLOOP.
      NEW-PAGE PRINT OFF.
    Spoolnummer besorgen
      SPOOL_NR = SY-SPONO.
    Konvertierung der Ausgabe nach PDF
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = SPOOL_NR
        IMPORTING
          PDF_BYTECOUNT            = PDF_FILESIZE
        TABLES
          PDF                      = PDF_OUTPUT
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
      CHECK SY-SUBRC = 0.
      SPOOL_NR_DEL = SPOOL_NR.
    Spool wieder löschen
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
        EXPORTING
          SPOOLID = SPOOL_NR_DEL.
      BIN_FILESIZE = PDF_FILESIZE.
    Download der Spools
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
        EXPORTING
          BIN_FILESIZE = BIN_FILESIZE
          FILENAME     = DATEI
          FILETYPE     = 'BIN'
        CHANGING
          DATA_TAB     = PDF_OUTPUT[].
    Programmpfad auf PC für PDF ermitteln
      CALL FUNCTION 'SO_PROGNAME_GET_WITH_PATH'
        EXPORTING
          DOCTYPE           = 'PDF'
        IMPORTING
          PATHNAME          = PROGRAM
        EXCEPTIONS
          PATH_NOT_FOUND    = 1
          PROGRAM_NOT_FOUND = 2
          NO_BATCH          = 3
          X_ERROR           = 4
          OTHERS            = 5.
    PDF ausführen
      APPL = PROGRAM.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
        EXPORTING
          PARAMETER   = DATEI
          APPLICATION = APPL.
    Programmende                                                        *
    Regards, Dieter

  • My iphone 4 model number is mc603b so any one tell me plz from which country my  iphone came

    my iphone 4 model number is mc603b so any one tell me plz from which country my  iphone came

    paocc wrote:
    my iphone is MC603B/A and it's for the UK.
    What is your question?

  • Problem with set-up: Blackberry ID- country and language

    Hello, I am setting up my Playbook tablet for the first time and have hit a snag on the third or fourth screen. I am supposed to enter my country and language for Blackberry ID, but I see only 'No country indicated' and I find no way to enter a country and language, as prompted. According to the tutorial, this screen should show a language option immediately. I went to get a Blackberry ID, through my e-mail address but it is obviously not 'connected' in any way (yet) to my Playbook tablet.
    I hope someone might help me with this and I will certainly appreciate said help! Must say the obvious, I am new to this forum, but I am sure I am posting my question in the right forum.
    Thanks a lot!  
    Solved!
    Go to Solution.

    No worries, It could have been that you lost connection. Doing this will make sure that you are connected. Sometimes you may need to delete the connection and try setting up again and then going further will display what you are looking for.
    Regards,
    Nick
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • How many users per country and their names and cities in abap ?

    Hi,
    i want to build a list of my users on PRD per country and their names in an abap programm.
    Do you have any code for that ! Will be pleased to hear  from you.
    Thanks
    Kumar
    Moderator Message: You might be a Basis chap, but that doesn't mean we will do your work for you. Take the help of a ABAPer and get it done.
    Edited by: kishan P on Nov 21, 2010 6:42 PM

    Hi,
    i am just looking for an abap code as i am not a developer. I am a basis chap, i searched in sapnet, but nothing of the sort i am looking for. All RSUSRXXX reports are of general nature. Will be pleased to hear from ABAPERS or basis guyes who have
    faced this problem and solved.
    Thanks in adv.
    Kumar/Germany

  • I make Rest for iPad, and now every time i open it , i chose the country and the network  and tells me he works the activation and then tell me the iPad could not be activated, try again what can i do

    i make Rest for iPad, and now every time i open it , i chose the country and the network  and tells me he works the activation and then tell me the iPad could not be activated, try again what can i do

    Those are the instructions for your computer's iTunes (i.e. using the Store menu at the top of your computer's iTunes and selecting 'View My Account' on it). If you are doing it on your iPad then are you following the instructions for iOS devices :
    To unhide your purchases
    Depending on the content type, open the App Store, iBooks, or iTunes Store on your device.
    Scroll to the bottom of the main page.
    If you're not already signed in, tap Sign In.
    Tap your Apple ID name, then tap View Account.
    Scroll down on the Account pane, and tap Hidden Purchases.
    Locate the item you would like to unhide then tap the Unhide button.

  • My phone does not show contact names for country and area code while having in coming calls. Although, I have endorsed the name with numbers. How do I the problem. My one is a iphone 3s device with updated os. Please text to help

    My iphone does not recognize saved contact number while having incoming calls due to country and area code as auto prefix. How do i fix the problem. How do i ensure that the phone recognize calls with and without the country and area code. Please text to help.

    1) Open the Phone and dial *228. This is a Verizon over-the-air programming number.
    2) When the system answer press 1 for "Program or activate your phone"
    3) Wait for the call to disconnect. You should get a prompt stating something like, "Settings updated."
    4) Open the Task Manager and kill the Phone, Message, and Contacts Applications
    5) Wait a few minutes (I waited 3 just to be extra safe)
    6) Open the Message App to verify the fix

  • I received an e-mail with a hyperlink to a country and western song. I deleted the e-mail but the song still plays everytime I turn on my mail box. How can i delete the music ?

    I tried clearing the history and turning off the computer, which is an i-mac.
    With Firefox turned off I started my itunes and played some of my library music. When I turned on Firefox mail the country and western song came right back.

    I get those all the time. Most annoying. I usually ignore them or mark them as spam.

  • How can i purchase a macbook air in Nigeria? apple has no shop in the entire country and independent dealers charge ridiculously sometimes more than double the prices of mac products without guarantee of getting it with required specifications. its sad cl

    how can i purchase a macbook air in Nigeria? apple has no shop in the entire country and independent dealers charge ridiculously sometimes more than double the prices of mac products without guarantee of getting it with required specifications. its sad cos Nigeria has a very large apple market plus phones and most recently ipads especially. its been frustrating trying to get a macbook, even have to wait for when someone will travel out of the country, then you send the person(thats if you have the money at that time). Please somebody help inform apple maybe they can do something about this, its really disappointing.

    This is a user-to-user technical support forum. You're not addressing Apple here. Use the apporpriate link on fhe Feedback page to let Apple know how you feel:
    http://www.apple.com/feedback

  • HT1311 i have american account but i just now have 0.61$ and i have another gift card from uk.i want to use it but itunes said i have to change my country and its not possible before i spend all my money.my question is how i can spend a 0.61$ ?

    i have american account but i just now have 0.61$ and i have another gift card from uk.i want to use it but itunes said i have to change my country and its not possible before i spend all my money.my question is how i can spend a 0.61$ ?

    If you are now in the UK then you can try contacting iTunes support and see if they can remove the balance from your account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • How can I change the Country and Credit card Apple ID without loose the app installed ?

    Hi, I move from Brazil to Qatar and keep using my account at Brazil since I have a credit card there and the old address.
    Today Ireceived a message when I was updating my app at my iPad that I should change my payment method that was rejected (???), I try to update and keep the same message... So now maybe better to use address and card from Qatar.
    I could not understand how can I change the country and shop since everything at the address is linked to Brazil.
    Also I'm afraid to lose the installed app...
    Please, a step by step will help a lot, I have a very low computer experience ...

    You won't lose apps that are installed.   You will lose the ability to update them
    Business with the App stores is restricted to those stores in your formal country of residence (your billing address) and a bank supported credit card from that same country.   You can buy and update apps with those details only in that country.
    If you have established residences and bank supported accounts in other countries you can also use those.   You can buy and update apps in those countries using those details.
    You cannot interchange them.   You cannot merge IDs or purchase details.

  • I have a balance of 0.95c on my apple id (from gift card) but now i moved, and i want change the country and credit card. How can i do that?

    I have a balance of 0.95c on my apple id (from gift card) but now i moved and i want to change the country and add credit card. Every time i tried to change the info it says that i need to spend the existing balance. What should i do?

    Click here and ask the iTunes Store staff to zero your account balance.
    (92880)

  • Can I set up iTunes account in 1 country and then use it in another

    Hi, I have upgraded my iPad 1 to an iPad 3. I want to set up and send my old iPad 1 to my great auntie (86) in the UK, I am in Spain.
    I started setting it all up for her setting the country as uk, creating an Apple ID etc... But when it comes to iTunes, the Spanish shop opens and asks me to set up the Apple ID for iTunes. my question is can I set everything up from here ? download the few apps I think she will want and send her the iPad and she will have no problems,  or is she going to have problems as the details will be of a Spanish account, I am probably going to have to give my credit card, and the iPad will loose the apps , or won't let her create a uk account further down the line ?
    Thank you, she will not be able to set it up herself so if I cannot set up from here I am going to have to find someone to do it for her over there.

    You can only use the Store in the country where you are resident.  Items purchased in store in another country will no longer be accessible for redownloading when you change country but you can keep on using them as long as you have a copy on your computer.
    It is not easy to change country and requires a valid billing method with a physical billing address in the other country.  There is also a 90 day wait period between country changes.  Furthermore, it is against the terms of service for the iTunes Store to even use your own country's store while not in your country, much less use another country's store.
    "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE  (reads the same for pretty much any country).

  • Hello, i bought a unlock iPhone 5 in 2012 december and i come back to my country and i pay money to use my phone in Turkey and few months later push button didn't work so i take my phone to apple and they give me the new one but they didn't give the box.

    hello, i bought a unlock iPhone 5 in 2012 december and i come back to my country and i pay money to use my phone in Turkey and few months later my push button didn't work so i take my phone to apple in los angeles and they give me the new one but they didn't give the box. and 1 week ago i come back to my country again and i take a message from my line comany and they told that i must give money again to use my phone in Turkey until 30rt of january if i didnt pay i cannot use it anymore. but this is so stupid cause apple change my phone in guaranty covorage. what sould i do now

    You need to pay your mobile network provider for the calls, SMS and data you need to use your phone. This is an ongoing charge, usually paid monthly.
    This is nothing to do with Apple. Apple only provided the handset - not the mobile network you use it on.

  • HT1689 Hello I traveled outside the country and now my ipad cannot update or purchase apps. It tells me to switch the the USA store to continue; therefore how can I change the purchasing process to the USA store?

    How can I swicth stores in order to update or purchase apps.
    I am currently in a different country and I do not know why it changed stores to the local country store. I need to change it to the USA store to perfom updates and purchases?
    Can anyone help?
    Thank you

    Here's a little more information from a previous post:
    iTunes Store content is country specific. When you change countries, you no longer receive app update notifications on your iOS device or in iTunes for the apps you purchased in your original country, nor do those Apps appear on your new country's Purchased page.
    However, you will still be able to download those applications again for free if they are present on your new country's store (even if they are updated).You will not be charged and the download will not appear on your Purchased page. If a previously purchased app is not available in your new country, you will not be able to download it again.
    The following article describes how to review your account's purchase history so that you may view the titles of the Apps you previously purchased:
    http://support.apple.com/kb/HT2727
    Cheers,
    GB

Maybe you are looking for

  • ICal refuses to finish 'restore' ; trying to resolve sync issues.

    trying to fix sync issues. using missing sync. everything worked perfectly for a ling long time before i thought it'd be cute to go in and put birthdays into addressbook, and select the option in iCal preferences to add those events to my calendar. E

  • IDOC / Bapi to create a Controlling Area

    Hi all, I'm searching for an IDOC or a Bapi to be called to distribute controlling areas records between CO system and HR system. Anyone has an idea? Thanks in advance, Roberto.

  • Crop box in pdf

    Anyone know how i can get crop box or bleed box from a pdf in Applescript ? not pagesize, but bleed - or crop box

  • Network location server Certificate binding fails.

    The certificate binding for the network location server has been modified. Without the correct certificate, connectivity for DirectAccess clients located in the internal network will not work as expected. 1. The certificate binding has been changed b

  • IBooks: Any way to share books across multiple iPads? (Family library)

    I'm currently using the Kindle app--which allows my family to share books with ONE account across multiple devices (like 2 iPads and 2 iPhones). Is there any way to do this with iBooks? It appears iBooks is locked to the userid set in iTunes. I love