How to find Education order number

I'll post here the question, as I don't know where else I could post it. I wanted to bye a product from the Europe Education Store and I followed all the instructions of the case but, when I had to send the documents that prove my student status, the page told me that was necessary the Order Number, and that you can find it on the Thank You Page of the store...so what is this Thank You page? and how I can get on it  in order to get the Order Number?

Hi,
Check include LCOIHF9Y. In that one function module CO_BT_TEMP_NR_GET is used to generate next Order number.
SAP using RCOTNR structure for new number assignment.
the code is CALL FUNCTION 'CO_BT_TEMP_NR_GET'
        EXPORTING
             AUFNR_ACT           = CAUFVD-AUFNR
             FINAL               = YX                    "note194995
             I_ORDER_TYPE        = caufvd-auart          "note194995
        IMPORTING
             RCOTNR_EXP = RCOTNR_TMP.
  MOVE: RCOTNR_TMP-AUFNR TO CAUFVD-AUFNR,
        RCOTNR_TMP-RSNUM TO CAUFVD-RSNUM,
        RCOTNR_TMP-AUFPL TO CAUFVD-AUFPL.
Try to debug from that function module.

Similar Messages

  • How Do I Find the Order Number on a Power Mac G5?

    I am trying to find out what order number I have for my Power Mac G5.  I put in the serial number, and I was taken here. 
    Now I have to find out what the order number is, such as M9020LL/A or M9031LL/A
    I tried matching up the specifications with my computer, but nothing matches.  I have "Dual 1.8 Ghz PowerPC G5" processors, but that option isn't on the spec sheet.
    Is there a way to find the Order number?

    Choose About this Mac from the Apple menu and look at the hardware section. If your model is PowerMac7,2, its order number is M9393LL/A. If your model is PowerMac7,3, its order number is M9454LL/A. The LL will be different if the computer was originally sold outside the USA or Canada.
    (69819)

  • Where do i find the 'order number' when installing the Adobe Creative Suite 6?

    I cannot find any 'order number' what so ever. All i have is the 'product code' which is printed on the yellow booklet that came with the software. I have tried entering this code into the 'order number' box and there are too many characters for it to fit in the box. Hense i got an email off Apple saying it didnt work. However they said that this 'product code' was the right code and the one i should be using, so why doesnt it work?? I have found a set of instructions online explaining how to install this software and it said to get the 'order number' i need to go into my 'order history' i did this...and apparently i have no history of buying anything, when clearly that is wrong seeing as i bought the software package along with my macbook on monday 11th march 2013 (3 days ago). I have phoned the Apple Store in Birmingham and the guy i spoke to talked me through installing the software on a trial basis, using the disc that came with the package. He said once it had installed, it would give me the option to make the trial into the real version and would provide me with a code in order to do so. This did not happen. I am nearly tearing my hair out. Someone help me please? I am a student and need the 'serial number' (i think thats what its called) in order to prove i have a legitimate copy of the software. But before i get the serial number i need to sort out this 'order number' so i can send off my application and prove i am a student. I also want to be able to use the software as soon as possible as i study Graphic Design and that is the whole reason i bought it.

    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How to find Outbound Idoc number from inbound Idoc number.

    Hi,
    I have one inbound Idoc in my system, then
    How to find the  idoc number from the system which sends that idoc(Outbound Idoc number).

    Hello
    You can use fm SREL_GET_NEXT_NEIGHBORS for this purpose.
    Scenario: An EDI purchase order is received by SAP-XI and forwarded as Inbound ORDERS IDoc to R/3. SAP-XI generates an (outbound) IDoc number which differs from the (inbound) ORDERS05 IDoc in the R/3 system.
    Calling fm SREL_GET_NEXT_NEIGHBORS with the following parameters:
    OBJECT-OBJKEY = <IDoc number, 16-digits>
    OBJECT-OBJTYPE = 'IDOC'
    MAX_HOPS = '99'            " <<< get all links
    I get the following result:
    0000000000133906                                   IDOC       CUSTOMER   OUTIDOC
    0000000000407402                                   IDOC                  INIDOC
    000000370383                                       BUS2012    CUSTOMER   OUTBELEG
    0010057944                                         BUS2032               INBELEG
    Outbound IDoc number
    Inbound IDoc number (ORDERS05)
    PO number
    Sales order (created from inbound ORDERS IDoc)
    Regards
      Uwe

  • How to trace purchase order number with respect to Purchase requestion numb

    Hi friends,
    Can u please help me how to Trace purchase order number with respect to purchase Requetuion  number. Is there any standard report  available in R/3

    Hi Vamsi,
    Thats what!!!
    Goto SE16 - EBAN - Give PR number in the iput screen.
    In the output screen you will have to do field selection from Menu - Settings - formatlist - choose fields.
    There you choose Purchase Order.
    So the output will display for you POs for the PR that you entered.
    Regards,
    Vishal

  • How to find out spool number from a jobname.

    Hi,
    If I know the jobname and jobcount how to find the spool number of it. Jobname and Jobcount are in table TBTCO and spool number is in TSP01. Is there any link between these tables.
    Your help will be appreciated.
    Thanks & Regards,
    Soumya.

    Hi,
    Check the below link
    [Re:Spool request;
    Regards,
    Surinder

  • How to find out the Number range object for Incident number

    How to find out the Number range object for Incident number ?
    CCIHT_IAL-IALID
    regards,
    lavanya

    HI, an example.
    data: vl_num type i,
          vl_char(6) type c,
          vl_qty type INRI-QUANTITY,
          vl_rc type INRI-RETURNCODE.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = '01'
        OBJECT                        = 'ZRG0000001'
       QUANTITY                       = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
    IMPORTING
       NUMBER                        = vl_num
       QUANTITY                      = vl_qty
       RETURNCODE                    = vl_rc
    EXCEPTIONS
       INTERVAL_NOT_FOUND            = 1
       NUMBER_RANGE_NOT_INTERN       = 2
       OBJECT_NOT_FOUND              = 3
       QUANTITY_IS_0                 = 4
       QUANTITY_IS_NOT_1             = 5
       INTERVAL_OVERFLOW             = 6
       BUFFER_OVERFLOW               = 7
       OTHERS                        = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    vl_char = vl_num.
    write vl_char.
    Regard

  • How to find out the number of songs in my iTunes 11 library

    How to find out the number of songs in my iTunes 11 library

    Welcome to the Apple Support Communities
    To see the number of songs, go to View menu > Show Status Bar, so the number of songs you have will appear at the bottom of the iTunes window

  • How to find out asset number in SAP

    Hi,
    Please let me know how to find out asset number based on the depreciation document number.
    Regards,
    Bhaskar Suruvu

    In the FI document header text / line item text you found back the asset document number like:
    AFB01200900101-0000000001
    In the table ANLP you can found back the document number -0000000001
    On this way you can make the link

  • How to get purchase order number from delivery number?

    hi all,
    how to get purchase order number and item if i have only delivery.
    and in same way how to get po number and item if i know only batch number.
    kindly give me some solution i need this urgently.
    thanks in advance.

    Check the logic below:
    * Selecting the Sales Documents from VBFA for corresponding Invoice
        SELECT vbelv
                     posnv
          FROM vbfa
          INTO TABLE gt_itab3
         WHERE vbeln EQ gt_itab5-vbeln
           AND posnn EQ gt_itab5-posnr
           AND vbtyp_n EQ 'J'.
        IF sy-subrc EQ zero.
          SORT gt_itab3 BY vbelv posnv.
        ENDIF.
      ENDIF.
      IF NOT gt_itab3 IS INITIAL.
    * Selecting the Purchase Orders from VBFA for corresponding Sales Documents
        SELECT vbeln
               posnn
          FROM vbfa
          INTO TABLE gt_itab4
       FOR ALL ENTRIES IN gt_itab3
         WHERE vbelv EQ gt_itab3-vbelv
           AND posnv EQ gt_itab3-posnv
           AND vbtyp_n EQ 'V'.
        IF sy-subrc EQ 0.
          SORT gt_itab4 BY vbeln posnn.
        ENDIF.
      ENDIF.
    Batch number will be there in delivery item.
    Regards
    Kannaiah

  • How to find purchase order bapi

    can any one help how to find purchase order bapi.

    This isn't a Web Dynpro Specific question - moving to ABAP general.
    However have you considered going to SE80 and searching for function modules that begin with the name BAPI and have purc in the name?  Or maybe going to the BAPI Browser transaction (T-Code BAPI) and searching either in the Hiearchy or Alphabetical list.  Probably not too difficult to find the purchase order object.

  • How to find sales order no., purchase order no. using sales order ID,PO ID

    hi,
    how to find sales order no., purchase order no. using sales order ID,PO ID
    Thank you,
    hari om

    Dear Hari Om,
    Could you please tell me, to what are you referring Sales Order ID and P.O. ID?
    meanwhile check with:
    T. Code: SE16
    Table: VBKD
    Execute (F8) the Report.
    On to next Screen, Go to Menu-bar
    Settings --> Format_Lists --> Choose Fields
    Field: VBELN - Sales Order
    Field: BSTKD - Purchase Order No.
    Best Regards,
    Amit

  • How to find ThinkPad serial number if label is worn?

    QuestionI'm having some trouble with my T500 ThinkPad and want to contact service, but am not sure how I can find out the machine type and serial number to provide to support when I call because the sticker on the bottom of the laptop is faded so I don't know what the S/N is. I do have one number though: [serial removed] was what I copied down from it before it became faded. I dont know what to do now, so if you have any ideas, that'd be great.
    Answer 
    Generally the label with type and serial information is found on the bottom of laptops and tablets and on the rear of desktop systems and on the back or along the edge of displays.   As noted by the question asked above, in some cases, the label may become worn.  To reduce / avoid this, the type / serial label was relocated to the battery compartment on some systems with removable batteries, along with the Win 7 COA.  As Win 8 does not have a COA lable, and print technologies for labels have improved, most current systems have the label on the bottom.
    Some tablets may have the type and serial information label on the inside of memory door / SD card slot covers as was the case with the ThinkPad tablet type 1838/1839.
    Here is a link to an article on the support site with examples of label locations for different model Lenovo systems.   If the system will not power up at all, finding the physical label is the best course of action when contacting service.
    If the label is missing and the system will power up, there are several ways to easily find this information as it is written into the BIOS on the system board.
    1) Command Prompt
    Run an elevated command prompt, Enter the command "wmic bios get serialnumber" (without the quotations).
    2) BIOS
    Boot to BIOS (press F1 on startup) and the model type and serial number will be listed.
    3) Diagnostics - Lenovo Solution Center (LSC) or the prior Lenovo ThinkVantage toolbox.

    wmic bios get serialnumber  does not work !!!!all your pages about how to find a serial number are disfunctuional !!! What a bed service

  • Where do i find my order number

    hi i have purchased the Adobe creative suite 6 design standard and having problems activating it.  I can't seem to find my order number.  Where would this be?  The product code on the box isn't working?

    This is something you'll have to research with a live person at Adobe Customer service. Try reaching them through Web Chat or phone.
    Those who help on this forum are mostly users like you and don't have access to your order information.

  • How to find my serial number in downloaded logic pro X

    how to find my serial number in downloaded logic pro X

    There is no serial number for Logic Pro X

Maybe you are looking for

  • I tunes 7.3  and Windows Vista ultimate 64 bit ( not 32-bit) compatibility

    Dear All, I tried succesfully to sync my I tunes with my HP Laptop with the Windows Vista Ultimate OS 64 bit not 32-bit version.Has anyone been able to sync it succesfully? If not does anyone know of a patch or when apple is going to come up with a v

  • Messages and FaceTime failing

    Everytime I connect to messages and FaceTime I'm faced with these two errors "There was a problem with Messages. You need to quit and open Messages again." and There was a problem with FaceTime. You need to quit and open FaceTime again. It was fine w

  • Using Power shell script how to hidden SharePoint existing features.

    Hi Firends, Using Power shell script how to hidden SharePoint existing features. Please help me. Thanks, Tiru Tiru

  • Creating Cells with differing heights in Numbers '09

    In any given Row is it possible to have different cells with different heights because I've found that if I set the cell height to be e.g. 1cm then all the cells in the whole row are 1cm which isn't always the desired effect. Thanks

  • HR_INFOTYPE_OPERATIONS FM usage

    Hi    the follwoing code is not updating the SPRPS field in PA0001 infotype.  Can you plz let me know if there any mistake.... I have used MOD operation also. READ TABLE it_p0001 INTO wa_p0001  INDEX 1.   IF sy-subrc EQ 0.     IF wa_p0001-sprps IS IN