Purchase wont register!

I have tried several times to buy an album on itunes. I click purchase then it says its purchasing then it just stops and the purchase doesnt go through! Please help

hi,
check BSET table.
First get MIRO records from rbkp + rseg.
take corresponding a/c record from bkpf.
pass a/c doc to bset for tax data.
raj
Message was edited by:
        raj desai
Message was edited by:
        raj desai

Similar Messages

  • Quicktime pro 7 wont register, please help.

    hi, i just purchased quicktime pro 7 upgrade, i copied and pasted the Name and registration code from the email to the quicktime pro registration setting. but it always give s me the invalid registration code error. im using quicktime 7.0.3 atm, all i wanan do is chuck in some videos into my ipod video i jsut bought 2 days ago. please, someone tell me why it wont register? the $44.95AUS isnt cheap for a software upgrade.

    I had the same problem tried pasting the key, typing the key, same response. make sure that in the Registered To field, you enter the name EXACTLY how it appears in the Email you have received (it's the Registered Name).
    This helped me after 2 hours of installing and reinstalling the product...
    quitcktime pro   Windows XP  

  • My itunes is telling me to now authorize my computer after 6years of use and showing me an itunes account i havent used in all that time but now songs i have purchased wont sync to devices and are no longer in my music library

    my itunes is telling me to now authorize my computer after 6years of use and showing me an itunes account i havent used in all that time.... but now songs i have purchased wont sync to devices and are no longer in my music library

    see if these articles will help
    http://support.apple.com/kb/PH12303
    http://support.apple.com/kb/HT2519
    make sure you are signed in with correct appleid in itunes store and authorize for any appleid that has purchases.
    Peace, Clyde

  • Hii all, how  can we create a report for purchase tax register

    Purchase Tax Register 2:
           Fields on selection screen (input screen) : Vendor Code from to , Date from to, Material Type from to, Tax Code from to .
                 Field in the output List : Document Number , PO Number ,PO      Date ,     Vendor Code ,Vendor Name , Bill Number , Bill Date , Material Code , Material Description , Qty ,Unit ,  Basic Value , BED , CESS , Tax Code,  Total Tax Amount ( BED +  CESS ) amount , LST or CST Amount , Gross Amount.

    Hi Umesh,
        Use The Following Tables
       EKBE  History per Purchasing Document,
       EBAN  Purchase Requisition,
       EKKO  Purchasing Document Header,
       LFA1    Vendor Master (General Section),
       KONV  Conditions (Transaction Data),
    Konv Is Cluster Table U have To Write Seperate Select query for that Using KNUMV Field form ekbe, eban, ekko
    Reward Points If Usefull,
    THanks & regards.
    Shiva

  • Purchase tax register

    hi all,
    can anybody help me for purchase tax register,
    my code is as follows
    TABLES : BSEG, MKPF, BKPF,J_1IEXCDTL, LFA1, RSEG, RBKP, MARA,EKKO,BSET,KONP.
    DATA : BEGIN OF ITAB OCCURS 0,
             NAME1        LIKE     LFA1-NAME1,
             C_CODE       LIKE     RBKP-BUKRS ,      "COMPANY CODE.
             EBELN        LIKE     EKKO-EBELN ,      "PURC ORDER NO.
             TAX_CODE     LIKE     RBKP-MWSKZ1 ,     "TAX CODE
             AD_NO        LIKE     BSEG-BELNR ,      "Acnting Doc Number
             BELNR        LIKE     BKPF-BELNR ,      "Accountg Doct No.
             GJAHR        LIKE     BSEG-GJAHR ,      "FISCAL YEAR
             DATE         LIKE     RBKP-BUDAT ,
             LIFNR        LIKE     LFA1-LIFNR ,      "VENDOR no.
             BUDAT        LIKE     EKKO-AEDAT ,      "PO DATE.
             VBELN        LIKE     VBRK-VBELN,       "EXCISE INVC NO.
             QTY          LIKE     BSEG-MENGE ,      "Quantity
             AMT          LIKE     RSEG-WRBTR ,      "Amount Currency
             BED          LIKE     BSET-HWSTE ,      "TAX AMOUNT
             ADD          LIKE     LFA1-ORT01,       "VENDOR ADD
             CN_TYPE      LIKE     BSET-KSCHL,       "CONDITION TYPE
             HWBAS        LIKE     BSET-HWBAS,      "TAX AMT.
             KBETR        LIKE     KONP-KBETR,      "COND BASE TAX AMT
             KNUMH        LIKE     KONP-KNUMH,      "COND REC NO.
             ECESS        LIKE     BSET-HWSTE,
           END OF ITAB .
    DATA:  BEGIN OF ITAB1 OCCURS 0,
             V_CODE       LIKE     LFA1-LIFNR,       "VENDOR CODE
             NAME         LIKE     LFA1-NAME1,       "VENDOR NAME.
             ADD          LIKE     LFA1-ORT01,       "VENDOR ADD
             VBELN        LIKE     vbrk-vbeln,       "EXCISE INVC NO.
             BDATE        LIKE     VBRK-FKDAT_RL,    "EX INVOICE DATE
             QTY          LIKE     BSEG-MENGE,       "FOR QUENTY
             UNIT         LIKE     BSEG-ERFME,       "FOR UNIT
             AMT          LIKE     BSEG-WRBTR ,      "Amount Currency
             L_CST        LIKE     BSEG-REWRT,       "FOR LST_CST AMOUNT
             EBELN        LIKE     EKKO-EBELN ,      "PURC ORDER NO.
                    LIKE     BSEG-BELNR ,      "Accountg Doct No.
            T_AMOUNT  "AMOUNT BED+CESS
           END OF ITAB1.
    DATA: BITAB LIKE TABLE OF BSEG WITH HEADER LINE.
    DATA  EITAB LIKE  EKKO OCCURS 0 WITH HEADER LINE.
    DATA  BSITAB LIKE TABLE OF BSET WITH HEADER LINE.
    DATA RITAB LIKE RSEG OCCURS 0 WITH HEADER LINE.
    DATA RBITAB LIKE TABLE OF RBKP WITH HEADER LINE.
    DATA BKITAB LIKE TABLE OF BKPF WITH HEADER LINE.
    DATA LITAB LIKE LFA1 OCCURS 0 WITH HEADER LINE.
    DATA KITAB LIKE TABLE OF KONP WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B_1 WITH FRAME.
      SELECT-OPTIONS  C_CODE      FOR BSEG-BUKRS.
      SELECT-OPTIONS  AD_NO       FOR BSEG-BELNR.
      SELECT-OPTIONS  GJAHR       FOR BSEG-GJAHR.
      SELECT-OPTIONS  DATE        FOR RBKP-BUDAT.
      SELECT-OPTIONS  TAX_CODE    FOR BSEG-KTOSL.
    SELECTION-SCREEN END OF BLOCK B_1 .
          SELECT MWSKZ1 BUDAT LIFNR BUKRS BELNR GJAHR
              FROM RBKP
              INTO (RBITAB-MWSKZ1,RBITAB-BUDAT,RBITAB-LIFNR,RBITAB-BUKRS,RBITAB-BELNR,RBITAB-GJAHR)
              WHERE BUKRS IN C_CODE AND GJAHR IN GJAHR.
                   ITAB-C_CODE = RBITAB-BUKRS.
                   ITAB-DATE = RBITAB-BUDAT.
                   ITAB-TAX_CODE = RBITAB-MWSKZ1.
                   ITAB-LIFNR = RBITAB-LIFNR.
                   ITAB-BELNR = RBITAB-BELNR.
                   ITAB-GJAHR = RBITAB-GJAHR.
          SELECT SINGLE LIFNR NAME1 ORT01
              FROM LFA1
              INTO (LITAB-LIFNR,LITAB-NAME1,LITAB-ORT01)
              WHERE LIFNR EQ ITAB-LIFNR.
                   ITAB-NAME1 = LITAB-NAME1.
                   ITAB-ADD = LITAB-ORT01.
         SELECT SINGLE BELNR FROM BKPF INTO BKITAB-BELNR WHERE BUKRS = ITAB-C_CODE.
              ITAB-BELNR = BKITAB-BELNR.
           SELECT SINGLE BELNR FROM BSEG INTO BITAB-BELNR WHERE BUKRS = ITAB-C_CODE.
               ITAB-AD_NO = BITAB-BELNR.
            SELECT SINGLE KSCHL HWBAS KNUMH FROM BSET INTO (BSITAB-KSCHL,BSITAB-HWBAS,BSITAB-KNUMH) WHERE MWSKZ = ITAB-TAX_CODE.
               ITAB-BELNR = BSITAB-BELNR.
               ITAB-CN_TYPE = BSITAB-KSCHL.
               ITAB-HWBAS = BSITAB-HWBAS.
               ITAB-KNUMH = BSITAB-KNUMH.
             SELECT SINGLE WRBTR
                  FROM BSEG
                  INTO BITAB-WRBTR
                  WHERE  EBELN = ITAB-EBELN.
                    ITAB-AMT = BITAB-WRBTR.
            CONCATENATE ITAB-BELNR ITAB-C_CODE ITAB-GJAHR INTO BKITAB-AWKEY .
            SELECT SINGLE BELNR FROM BKPF INTO BKITAB-BELNR WHERE AWKEY = BKITAB-AWKEY.
                     ITAB-AD_NO = BKITAB-BELNR.
             SELECT SINGLE MENGE EBELN WRBTR
                 FROM RSEG
                 INTO (RITAB-MENGE,RITAB-EBELN,RITAB-WRBTR)
                 WHERE BELNR = ITAB-BELNR.
                      ITAB-QTY   = RITAB-MENGE.
                      ITAB-EBELN = RITAB-EBELN.
                      ITAB-AMT = RITAB-WRBTR.
           SELECT SINGLE KBETR FROM KONP INTO (KITAB-KBETR) WHERE KNUMH = ITAB-KNUMH.
               ITAB-KNUMH = KITAB-KNUMH.
               ITAB-KBETR = KITAB-KBETR.
            SELECT * FROM BSET INTO TABLE BSITAB WHERE BELNR = ITAB-BELNR.
                LOOP AT BSITAB.
                  IF BSITAB-KSCHL = 'ZPI1'.
                      ITAB-AMT = BSITAB-FWBAS.
                      CONTINUE.
                  ENDIF.
                  IF BSITAB-KSCHL = 'ZPIJ'.
                      ITAB-BED = BSITAB-FWBAS.
                  ENDIF.
                  IF BSITAB-KSCHL = 'ZPIO'.
                      ITAB-ECESS  = BSITAB-FWBAS.
                  ENDIF.
                ENDLOOP.
       APPEND ITAB.
       CLEAR ITAB.
    ENDSELECT.
    LOOP AT ITAB.
      WRITE: / ITAB-BELNR,ITAB-NAME1,ITAB-ADD,ITAB-LIFNR,ITAB-TAX_CODE,ITAB-DATE,ITAB-QTY,ITAB-EBELN,ITAB-AMT,ITAB-CN_TYPE,ITAB-HWBAS.
    ENDLOOP.
    My problem is that i can't take tax amount from BSET table b'coz i select BELNR from RBKP and there is differ entry of BELNR in BSET so plz help me for take out the tax amount from BSET.
    Thnx and Regard
    Anirudh

    hi,
    check BSET table.
    First get MIRO records from rbkp + rseg.
    take corresponding a/c record from bkpf.
    pass a/c doc to bset for tax data.
    raj
    Message was edited by:
            raj desai
    Message was edited by:
            raj desai

  • Sales tax register and purchase tax register

    Dear All,
    Is there any standard report for sales tax register and purchase tax register? give me your valuable inputs appraisals are waiting.
    Thanks inadvance.
    Nauma.

    Please refer T code J1I2 for Sales Tax Register. There is no Standard Purchase Tax Register.
    Regards
    Bhavesh Mistry
    Edited by: Bhavesh Mistry on Jul 15, 2009 7:10 AM

  • Purchase & Sales Register

    Hi All,
    In XL reporter there is Purchase & Sales Register. But whenever after importing i am trying to open that it shows "Security settings in Microsoft Excel prohibit XL reporter from running".
    What are the other ways for same?
    Regards,
    Rupa Sarkar

    In Microsoft Excel 2003, go to Tools->Options and select Security Tab.
    Then select Macro Security to open the Macro security box. In the Security Level select Medium.
    Beside, in the Trusted Publishers tab select the 2 option:
    -Trust access to Visual Basic Projects
    -Trust all installed add-ins and templates
    Finally click OK button.
    In Microsoft Excel 2007,  go to Excel options
    click  trust center ---trust centre settings
    select macro settings--and select enable all macros
    also check trust access to VBA Project object model.
    Thanks,

  • Itunes purchase wont stay off my phone

    I'm running iOS 7 on an iPhone 5s. Old song purchases wont stay off of my phone. I've unselected 'show all songs', 'automatic download', etc... I've logged off from iTunes app, and re-logged on. This technique has made the songs "go away", but once I shuffle songs or connect to bluetooth, these songs reappear. I cannot figure this out. Any hints?

    Hello simplyamazingyu,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    If you go to music > songs > and store    does it open?
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Restoring your iOS device
    Connect your device to your computer.
    Select your iPhone, iPad, or iPod touch when it appears in iTunes. Select the Summary tab, and click the Restore button.
    Click Restore.
    iTunes may prompt you with a software license agreement. If you click Agree, iTunes will download the iOS software file (.ipsw file) before restoring.
    After a restore, the iOS device restarts. You should then see "Slide to set up". Follow the steps in the iOS Setup Assistant.
    If needed, restore your device from a previous backup.
    Best of luck,
    Mario

  • Purchases / sales register report

    Hi,
    I have two problem in a purchases / sales register report.
    1) In the report of the purchases / sales register, SAP show me both purchases and sales also when I select only one or the other. How I show only one or the other in a report?
    2) There is a way to show at the end of report the totals divided by IVA codes?
    Best regards.

    Hi,
    This is SAP business one forum. Please find correct forum and repost your discussion to get quick assistance.
    Please close this thread here with helpful answer.
    Thanks & Regards,
    Nagarajan

  • I recently purchased a new iPad mini at a silent auction fundraiser. I only received a credit card receipt. What can I to show proof of purchase and register the product?

    I recently purchased a new iPad mini at a silent auction fundraiser. I only received a credit card receipt. What can I to show proof of purchase and register the product?

    Go here to add the iPad to your support profile. That should work. Keep the credit card receipt as well.
    https://supportprofile.apple.com/

  • Getting the Testversion Nag-Window although i purchased and registered the Creative Suit 6 Design Standard correctly

    Why am i getting the Testversion Nag-Window although i purchased and registered the Creative Suit 6 Design Standard correctly?
    My Version is already regesterd and this NAG came up for second Time now. What can i do to pemanently get rid of this annoying window?
    AND YES IT IS 100% Registred

    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Mylenium

  • Where can I find a list of all products I have purchased and registered with apple, including serial numbers?

    Where can I find a list of all products I have purchased and registered with apple, including serial numbers?

    Hi,
    Look under https://supportprofile.apple.com.
    It has all products associated with your apple ID.
    Richie

  • My itunes wont register my ipad

    My iTunes wont register my iPad after I upgraded my iTunes and my iPad. It use too however for some reason now it wont. I've restarted my iPad and computer as well as uninstall iTunes and re-stalled again. What do I do?

    Hello DanniGill,
    Welcome to the Apple Support Communities!
    I understand that after running updates, your iPad is no longer being recognized in iTunes on your Windows computer. To troubleshoot this situation, I would recommend reading over and working through the steps located in the attached article. 
    iPhone, iPad, or iPod not recognized in iTunes for Windows - Apple Support
    Have a great day,
    Joe

  • Phone wont register saved contact name

    i own a n85 and 6500classic. the issue is it wont recall my bros names when they send or sms or call me. or either would only register one of my bros nos. my brother's nos are +63922XXXXXXX and +63917XXXXXXX. the xxxxxxx are the last 7 digits in their nos. they have both the same last 7 digits but belong to two different neworks. when one of them call me the mobile no will just display on the phone. and when they send me sms only the +63917xxxxxxx name will register eventhough +63922xxxxxxx is the one who sent the sms. i think the phones issued in the phils only recognizes the last 7 digits to register in the caller id. which should not be since ther are several networks providing service wherein there would be 2 or more people sharing the same 7digit no but having different prefix or service providers. is it solved by updating software? should it be recognizing 10 digits (service provider prefix + mobile no)?
    for example 0922abcdefg, 0919abcdefg,0917abcdefg,0918abcdefg, 0929abcdefg etc. will only be recognized as a single no and if you have these 5 different nos registered to 5 different persons the phonebook will go crazy on who to display upon sms or a call.
    somebody help me on this. you could email me thru  it is impractical for me to ask my brother to change his mobile no. since it is not good for him to change nos and update all the people he knows to update their phonebooks just because it wont register in my phone. thanks in advance.
    Moderator Note: Email address removed
    Message Edited by prodigy on 02-Oct-2009 04:43 AM

    any comments and suggestions from n85 or 6500 classic users here? thanks in advance.

  • Ipod wont register what songs i have listened to?

    i've had an ipod nano for a few years now and it work fine up until a few months ago when it froze on me. i was able to reset it and it still works but i have recently noticed that when i connect my ipod to my computer to charge it wont register want songs i have listened to (for example the play count or when it was last played) it's not much of a problem cause i can still listen to it but i was just wondering if anyone else has had this problem?

    Your sync settings may have changed. I have my ipod to NOT automatically sync and it never tells iTunes how many times I have played the song. But because I have my iPhone sync, it tells the computer how many times I listen to the songs.
    I do not know if this will help you, but it may point you in the right direction.

Maybe you are looking for