Umair: I want to know about the new Apple Trade in program?If any apple employee on the forum,get in contact with me.

Umair: I want to know about the new Apple Trade in program?If any apple employee on the forum,get in contact with me.

iUmair wrote:
I want to know how Apple measure the value of old iPhone?
Then contact Apple and ask them.  Nobody here woul know.
How can people from outside US can participate.
They can't at this time.

Similar Messages

  • HT201441 i bought a apple iphone 4s and it came locked from ebay & i cant get into contact with the guy its no possible way ! and im pretty ******

    bought a apple iphone 4s and it came locked from ebay & i cant get into touch with the guy its no possible way annd im getting ****** !

    File a complaint with eBay to get a refund on the useless iPhone.

  • Want to know about EP...

    Hi all,
    i m doing abap programming, i want to know about EP and SAp netweaver can u tell me Books name for the begginer so i can refere that or can any one give me PDF or link regarding both EP and Netweaver.
    Thanks & Regards,
    yunus

    Hi Yunus,
    A simple Demo for the EP Lanscape Architechure,Portal Content Architechture& configurations,Basic Content object like iviews, pages, worksets, roles, Diffr between EP5.0 and EP6.0 is explained here u just have to use ur ear plugs and hear the session.  And also a simple Quiz to check ur understandings at last                                   
    1)  https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9801b8f9-0701-0010-3f98-bceb17f62a4f                                   
    2)  https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/5f99129d-0701-0010-ab85-bc43ac86ba7c                                   
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm                                   
    For portal concepts and overview you can start with the link below:                                   
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm                                   
    For EP development, you can start by accessing the online help for EP developers. This is a part of the portal documentation.                                   
    http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/content.htm                                   
    SAP developer's guide                                   
    https://www.sdn.sap.com/irj/sdn/developersguide                                   
    https://www.sdn.sap.com/irj/sdn/devguide2004s                                   
    Cheers,                                   
    Javed.

  • I keep getting an error when trying to receive the new update iOS7 on iPhone5.  Any suggestions?

    I keep getting an error when trying to receive the new update iOS7 on iPhone5.  Any suggestions?

    Do the update using iTunes on your computer.
    Plug your iPhone into iTunes (current version), let it sync, then click "Check for Updates" on the iPhone's summary page in iTunes.

  • I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine

    I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine
    and if it yes i want to know if i have 1TB hard disk to use the 500gb for time machine and the other 500gb for normal use

    thank you very much because i am considering to buy the porsche design hard disk 1TB and i want to have it for normal use and for time machine is a pitty to give 1TB for back up only again thanks and i know seperate the back and the working jobs are better but the i have to have 2 hardisks and i want only 1

  • HT1349 I want to know about the service of my computer with a serial number CO2GG9LCDJWT

    I want to know about the service of my computer with a serial number CO2GG9LCDJWT.   As I recall, I bought the service for three years...

    Are you perhaps trying to reach Apple Support?
    We are all users here, just like you.
    Contact Apple Support here:
    http://www.apple.com/support/contact/

  • I want to know about wen the iphone 5 launch in india and also what will the price

    i want to know about wen the iphone 5 launch in india and also what will the price

    Anyone here knows or has access to the same info that you do or can access.
    If Apple has a website and online store in India, check Apple's website in India for an announcement.

  • I want to know about the J2ME Polish

    Hi all,
    I am developing a application in that i was supposed to display the text in align to the String.I am getting the content from the file and i want to display the text in align.
    when i am retreiving the text from the specified file it was displaying in the horizantal manner.
    Is there is any method to display the text in align
    THANKS IN ADVANCE

    Hello
    i am having an hard time understanding and using J2ME polish.
    (Why make things so hard when they can be made easy..... )
    I am trying to use J2ME polish to change the background color of my application. I coded the application using netbeans mobility 5.0 and i used objects likes form, waitscreen and UI components of Netbeans.
    I did not manage to compile it using j2ME polish build.xml file, He does not find the netbeans classes, he cannot not obfuscate and i can not really compile it for MiDP 2.0 CLDC 1.1
    please icould you provide me a build.xml file running with netbeans, something not too huge like the one in J2ME polish samples?i work under Linux which make the process even more complex...
    Any advises or guildelines are welcome
    thanks a lot
    sebastien

  • Want to know about User exit in detail

    Hi ALL,
    I M NEW TO sap ABAP. I WANT TO KNOW ABOUT USER EXIT IN DETAIL. PLS DO THE NEEDFUL . If there are eny document regarding this pls mail to this id [email protected]
    thanks and regards
    Nandha

    Hi Nanda,
    Welcome to SDN,
    Userxits allow us to add our own functionality to SAP standard program
    without modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.
    User exits are used when the flow for a particular transaction has to take some other route other then the normal flow. this can be the case when you have to attach some additional functionality lik u need a customised screen, or new functionality (using a functional module). based on these things user exits can be classified as screen exits, function module exits, field exits( not used anymore). hope this gives some help on userexits.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    To find a Exit.
    Goto Transaction -- Find The Package
    SMOD >f4>Use the Package here to Find the Exits In the Package.
    Else if you Want to search by Application Area wise ,
    There is one more tab to find the Exits in the Respective Application Area.
    Implementing the Exit-- CMOD Create ProjectsAssgn your Component .
    Now Run ur Transaction to Check if it Triggers.
    Thats it..
    For More information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/ab038.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.sap-basis-abap.com/sapab013.htm
    http://sap.ittoolbox.com/documents/popular-q-and-a/user-exits-for-the-transaction-code-migo-3283
    These links will help you to learn more on user exits.
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.allsaplinks.com/user_exit.html
    www.sap-img.com/abap/what-is-user-exits.htm
    Also please check these threads for more details about user exits.
    Re: Screen exit
    user exit and customer exit
    user exit
    1. Document on UserExits in FI/CO
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    2. Finding User Exits...
    http://sap.ionelburlacu.ro/abap/sap2/Other_Useful_Tips.html#Finding_User_Exits
    3. List of all User Exits...
    http://www.planetsap.com/userexit_main_page.htm

  • I want  to know about smartforms

    hi experts tell me
    i want to know about smartforms
    anybody have material pls send me
    thanks in advance

    SAP Smartforms can be used for creating and maintaining forms for mass printing in SAP Systems. The output medium for Smartforms support printer, fax, e-mail, or the Internet (by using the generated XML output).
    According to SAP, you need neither have any programming knowledge nor use a Script language to adapt standard forms. However, basic ABAP programming skills are required only in special cases (for example, to call a function module you created or for complex and extensive conditions).
    1. Create a new smartforms
          Transaction code SMARTFORMS
          Create new smartforms call ZSMART
    2. Define looping process for internal table
    Pages and windows
          First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
          Here, you can specify your title and page numbering
          &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
          Main windows -> TABLE -> DATA
          In the Loop section, tick Internal table and fill in
          ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
    Global settings :
    Form interface
    Variable name    Type assignment   Reference type
    ITAB1               TYPE                  Table Structure
    Global definitions
    Variable name    Type assignment   Reference type
    ITAB2               TYPE                  Table Structure
    4. To display the data in the form
    Make used of the Table Painter and declare the Line Type in Tabstrips Table
    e.g.  HD_GEN for printing header details,
            IT_GEN  for printing data details.
    You have to specify the Line Type in your Text elements in the Tabstrips Output options.
    Tick the New Line and specify the Line Type for outputting the data.
    Declare your output fields in Text elements
    Tabstrips - Output Options
    For different fonts use this Style : IDWTCERTSTYLE
    For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming
                        http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
            INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
       MOVE-CORRESPONDING MKPF TO INT_MKPF.
       APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
      EXCEPTIONS
        NO_FORM                  = 1
        NO_FUNCTION_MODULE       = 2
        OTHERS                   = 3.
    if sy-subrc <> 0.
       WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        GS_MKPF                    = INT_MKPF
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    if sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    also refer
    http://www.erpgenie.com/abap/smartforms_detail.htm
    http://www.sap-basis-abap.com/abphy.htm
    <b>http://sap.ionelburlacu.ro/sap0/sapsf001.htm
    http://www.ionutz.ro/sap/sapabap01.htm[very imp links]</b>
    http://www.sap-basis-abap.com/sapsf001.htm
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • I want to know about change pointers generally we have C,R,N change pointers

    I want to know about change pointers generally we have C,R,N change pointers
    where they are configured

    IHi Virender,
    I don´t think you can create new methods.
    There are 4 methods:
    N – New order created [New]
    C – Order changed [Changed]
    D – Order deleted or partially deleted [Delete]
    R – Complete order deleted [Removed]
    Please read the following document about Change Pointer:
    Processing Change Pointers - Integration via APO Core Interface (CIF) - SAP Library
    Read SAP note about CIF and Change Pointer administration.
    563806
    - FAQ: APO CIF
    Kind Regards,
    Mariano

  • I have a new computer and I want to make it my home device for I tunes. I have home sharing, and all of the music and files are on the new computer. Now what do I do to make the new computer the home computer for Itunes?

    I have a new computer and I want to make it my home device for I tunes. I have home sharing, and all of the music and files are on the new computer. Now what do I do to make the new computer the home computer for Itunes?

    The computer (windows platform) where I initially began using Itunes has four other computers/devices that are shared with it. All four of the other computers show up in my account, and can be managed. Or I can remove them. But on the new computer that I want to be my base computer (home if you will). The computer I want it to replace, when ITunes is open, has a tool bar, with various functions. All of the other devices are linked to that computer in ITunes, under Home SHaring. The new computer, shows the downloads via Home Sharing, but it does not show/have any tool bar.
    I want to activate the new computer to be the computer via ITunes where all of the devices are linked to it as the base for ITunes. And, I don't know how to make that happen.
    I hope that makes sense.

  • Hi Gurus, I want to know about SAP Insurance Certification course

    Hi Gurus,
    I want to know about SAP Insurance Certification course.  Can anyone guide me how to proceed.
    Regards
    Raghu

    Hi Raghu,
    Check this link.... https://training.sap.com/in/en/curriculum/sfi_ins-sap-for-insurance-g-en
    This will give high level view of the available certifications in this space.
    Regards,
    Sanijan

  • Want to know about SAP course and SAP modules

      I am Sandeep, done BBM and have 3 years experience as Medical Representative(Pharma sales), and i'm perusing MBA in Sikkim Manipal University Distance Education, i came to know that SAP course has lot of scope in major industries, so that want to know about SAP course and SAP modules available and which module is suitable for me and details about the cost, duration of course please guide me
    Message was edited by: Colleen Lee - moving from Careers space to Training and Education.Also removing the bold text formating

    Ashok,
    Hi! Excellent that you are take the next steps in your education and applying them to work experiences.
    The best approach in taking SAP-related courses is to contact the university and confirm their approach. View SAP UA member schools here - http://uaaroundtheworld.informatik.tu-muenchen.de/overview(bD1lbiZjPTEwMQ==)/start.htm
    ...and assess the ones in the UK which does include Brunel.
    Ask if they provide SAP-related curricula (or supplements) and hands on SAP software in this course or others that you can take in your program.
    Best regards,
    Richard

  • I want to know about two year contract

    hai i am sudharsan i am want to know about the two year contract of iphone 5s @99$ at uk but i bought that but i have to go to india for a month .just expalin about that for me

    Ask the carrier. The contract is with the cellular carrier, not Apple.

Maybe you are looking for

  • Print iCal Calendar - ? Portrait View

    Is there a way to print my iCal Calendar in Portrait View other than saving it as a .pdf file & then printing? I cannot find the Portrait - Landscape options when printing in iCal. Many thanks! ...John

  • Re: Help needed in AP Check Printing R12 XML Tags

    Hi, I am trying to print the 'Overflow' Image on top of the check area in first page instead of 0.00. and nicely align the check print on the bottom of the 2nd page. I am unable to keep the number of invoices stub as static so that check can be stati

  • Troubled iTunes

    When I burn some cds the numbering gets messed up. I don't know how to fix this problem. Sincerely, Troubled iTunes

  • How to start OC4J at Linux boot time

    Hello, I am using Linux AS 3.0 and i have installed OC4J ( 9.0.4) ok, and OC4J also work fine.But each time i want to start OC4J , i must execute command java -jar oc4j.jar at console. Now, I want to start OC4J automatic at System startup ( ie: Linux

  • Removing object from kodo datacache doesnt always work.

    Hi, We're using a very old version of kodo - 3.4.1 but it seems to work well. We seem to have come across an intermittent issue where if we remove an object from the datacache using the DataCache.commit call, then the object doesnt actually seem to g