What is the process to update song plays count ?

Hi,
i'm using iTunes Match on 5 devices : 2 windows, iPad, iPhone and MacBook
Everything is ok, sync is perfect for new songs i add anywhere.
If i rate a song, it appears rated the same way on all other devices in a fex seconds.
BUT
what is the process to update the song plays count ? 
because it doesn't seem to sync correctly.
I have updated song plays count by scripts on one iTunes and it doesn't update at all anywhere else. I havez tried to "Update iTunes Match" and it just brought back the old song plays counts.
How can i update the song plays and make the value change on all devices ?
Thanks

Take a look here:
Purchasing iOS 3.1 Software Update for iPod touch (1st generation)
Regards.

Similar Messages

  • About Home sharing on two Macs and the option to update on play count...

    There is an option under the Home Sharing tab in the Preferences of iTunes to update the play count on "all devices and computers". But if I click this option, what count does it take into account? That of the computer on which I tick the option or the highest of all the computers that are "shared"? You see, my main computer at home is my iMac. It's the one computer with the biggest HD and on which most of the music I listen to is played. Well if I tick this option on my MacBook, I'm afraid it will erase my play counts on the iMac! If I tick it, will it ask me which computer's information I want to use as the start of the update? Unless I get confirmation that this will be the case, I won't do anything that might make me lose my play counts! Any help would be much appreciated!

    The import button remains greyed out and therefore unavailable.
    Quickly doublechecking ... has the MacBook gone to sleep? If it's awake, does the Import button become active for you?

  • What's the process for updates?

    I have an app on the app store. I have an update to that app in review and it has been since Monday (possibly Tuesday). After I submitted my update a competitor got updated. Now my app still hasn't been approved and my competitor has been updated a SECOND time. What is going on with the review process and why are some apps seemingly jumping the queue? Before you ask, there's nothing remotely controversial about my app (it's a shopping list app). The reason I'm getting a bit antsy (aside from the fact that my competitor is staying on the front page while I'm pushed to page 2) is that I have a second update with bug fixes I need to publish once the current one gets through the approval process (there's even no way to withdraw the current one in limbo and submit a new one either).

    We are sort of in the same boat. It would be nice to know what the update ordering/policy is. Our initial version was submitted on June 27th early morning (around 1am) and we got approved on June 30th. Then we submitted the update on July 3rd. This was well before the deadline given to developers to be considered for the app store launch (July 7th). We assumed the update would be the version released on the app store. That update has yet to be released or reviewed.

  • What are the process and updations in session and calltransaction?flow

    hi
    experts
    can u help me plzzzzzzzzzzzzzzzzzzzzzz
    for this

    See the Sample BDc Code for Vendor Master Upload:
    Look at the Include BDCRECX1 for Seesion and Call Transaction types:
    REPORT zmm_vendor_master_upload
    NO STANDARD PAGE HEADING
    LINE-SIZE 255.
    ABAP Name : ZMM_VENDOR_MASTER_UPLOAD
    Description : This Program is used to Upload the Vendor Master.
    Modification Log:
    Date Programmer Correction Description
    Standard Include for Selection Screen
    INCLUDE bdcrecx1.
    Internal Table for Upload Data
    DATA: BEGIN OF i_vendor OCCURS 0,
    bukrs(004), " Company Code
    ekorg(004), " Purchase Orgn
    ktokk(004), " Account Group
    Address Screen
    anred(015), " Title
    name1(035), " Name1
    sortl(010), " Sort Field
    name2(035), " Name2
    name3(035), " Contact Person1
    name4(035), " Contact Person 2
    stras(035), " Street
    pfach(010), " PO Box
    ort01(035), " City
    pstlz(010), " Postal Code
    land1(003), " Country
    spras(002), " Language
    telf1(016), " Telephone No
    telfx(031), " Fax Number
    lfurl(132), " URL-Mail Id
    Material Group Characteristics
    klart(003), " Class Type '010'
    class(018), " Class 'Vendor'
    mname_01(030), " Characteristic
    mname_02(030), " Characteristic
    mname_03(030), " Characteristic
    mwert_01(030), " Charct.Value
    mwert_02(030), " Charct.Value
    mwert_03(030), " Charct.Value
    Control Data
    emnfr(010), " Manufact.Part No
    Bank Details
    banks_01(003), " Country of Bank1
    banks_02(003), " Country of Bank2
    bankl_01(015), " Bank Key of 1
    bankl_02(015), " Bank Key of 2
    bankn_01(018), " Account No Bank1
    bankn_02(018), " Account No Bank2
    Accounting Info
    akont(010), " Reconcillation Account
    zuawa(003), " Sort Key
    fdgrv(010), " Cash Management Group
    Payment Transactions
    zterm(004), " Payment terms
    reprf(001), " Check Double Inv.
    zwels(010), " Payment Method
    hbkid(005), " House Bank
    xpore(001), " Individ.Payment
    Correspondence
    mahns(001), " Dunning Level
    xausz(001), " Account Statement
    Withholding Tax Details
    qland(003), " Withholding Tax Country
    witht_01(002), " WH tax Type
    wt_withcd(002), " WH Tax Code
    wt_subjct(001), " Indicator:WH Tax
    Purchasing Data
    waers(005), " Currency
    zterm1(004), " Payment Terms
    END OF i_vendor.
    Data Variables & Constants
    CONSTANTS : c_x VALUE 'X'. " Flag
    Paramters
    PARAMETERS: p_file LIKE ibipparms-path. " Filename
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = p_file.
    Start of Selection
    START-OF-SELECTION.
    Open the BDC Session
    PERFORM open_group.
    Upload the File into internal Table
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    filename = p_file
    filetype = 'DAT'
    TABLES
    data_tab = i_vendor
    EXCEPTIONS
    conversion_error = 1
    invalid_table_width = 2
    invalid_type = 3
    no_batch = 4
    unknown_error = 5
    gui_refuse_filetransfer = 6
    OTHERS = 7.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Upload the Data from Internal Table
    LOOP AT i_vendor.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    i_vendor-bukrs.
    PERFORM bdc_field USING 'RF02K-EKORG'
    i_vendor-ekorg.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    i_vendor-ktokk.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-SPRAS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=KLAS'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    i_vendor-anred.
    PERFORM bdc_field USING 'LFA1-NAME1'
    i_vendor-name1.
    PERFORM bdc_field USING 'LFA1-SORTL'
    i_vendor-sortl.
    PERFORM bdc_field USING 'LFA1-NAME2'
    i_vendor-name2.
    PERFORM bdc_field USING 'LFA1-NAME3'
    i_vendor-name3.
    PERFORM bdc_field USING 'LFA1-NAME4'
    i_vendor-name4.
    PERFORM bdc_field USING 'LFA1-STRAS'
    i_vendor-stras.
    PERFORM bdc_field USING 'LFA1-PFACH'
    i_vendor-pfach.
    PERFORM bdc_field USING 'LFA1-ORT01'
    i_vendor-ort01.
    PERFORM bdc_field USING 'LFA1-PSTLZ'
    i_vendor-pstlz.
    PERFORM bdc_field USING 'LFA1-LAND1'
    i_vendor-land1.
    PERFORM bdc_field USING 'LFA1-SPRAS'
    i_vendor-spras.
    PERFORM bdc_field USING 'LFA1-TELF1'
    i_vendor-telf1.
    PERFORM bdc_field USING 'LFA1-TELFX'
    i_vendor-telfx.
    PERFORM bdc_field USING 'LFA1-LFURL'
    i_vendor-lfurl.
    PERFORM bdc_dynpro USING 'SAPLCLCA' '0602'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-KLART'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTE'.
    PERFORM bdc_field USING 'RMCLF-KLART'
    '010'. "i_vendor-klart.
    PERFORM bdc_dynpro USING 'SAPLCLFM' '0500'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-CLASS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=AUSW'.
    PERFORM bdc_field USING 'RMCLF-CLASS(01)'
    'Vendor'."i_vendor-class.
    PERFORM bdc_dynpro USING 'SAPLCTMS' '0109'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RCTMS-MWERT(03)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=BACK'.
    PERFORM bdc_field USING 'RCTMS-MNAME(01)'
    'MATERIALGROUP'." i_vendor-mname_01.
    PERFORM bdc_field USING 'RCTMS-MNAME(02)'
    'MATERIALGROUP'." i_vendor-mname_02.
    PERFORM bdc_field USING 'RCTMS-MNAME(03)'
    'MATERIALGROUP'." i_vendor-mname_03.
    PERFORM bdc_field USING 'RCTMS-MWERT(01)'
    i_vendor-mwert_01.
    PERFORM bdc_field USING 'RCTMS-MWERT(02)'
    i_vendor-mwert_02.
    PERFORM bdc_field USING 'RCTMS-MWERT(03)'
    i_vendor-mwert_03.
    PERFORM bdc_dynpro USING 'SAPLCLFM' '0500'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-CLASS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENDE'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-ANRED'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-EMNFR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFA1-EMNFR'
    i_vendor-emnfr.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFBK-BANKS(01)'
    i_vendor-banks_01.
    PERFORM bdc_field USING 'LFBK-BANKS(02)'
    i_vendor-banks_02.
    PERFORM bdc_field USING 'LFBK-BANKL(01)'
    i_vendor-bankl_01.
    PERFORM bdc_field USING 'LFBK-BANKL(02)'
    i_vendor-bankl_02.
    PERFORM bdc_field USING 'LFBK-BANKN(01)'
    i_vendor-bankn_01.
    PERFORM bdc_field USING 'LFBK-BANKN(02)'
    i_vendor-bankn_02.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-FDGRV'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB1-AKONT'
    i_vendor-akont.
    PERFORM bdc_field USING 'LFB1-ZUAWA'
    i_vendor-zuawa.
    PERFORM bdc_field USING 'LFB1-FDGRV'
    i_vendor-fdgrv.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-XPORE'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB1-ZTERM'
    i_vendor-zterm.
    PERFORM bdc_field USING 'LFB1-REPRF'
    c_x. "i_vendor-reprf.
    PERFORM bdc_field USING 'LFB1-ZWELS'
    i_vendor-zwels.
    PERFORM bdc_field USING 'LFB1-HBKID'
    i_vendor-hbkid.
    PERFORM bdc_field USING 'LFB1-XPORE'
    c_x. "i_vendor-xpore.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB5-MAHNS'
    i_vendor-mahns.
    PERFORM bdc_field USING 'LFB1-XAUSZ'
    i_vendor-xausz.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0610'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBW-WT_SUBJCT(01)'.
    PERFORM bdc_field USING 'LFB1-QLAND'
    i_vendor-qland.
    PERFORM bdc_field USING 'LFBW-WITHT(01)'
    i_vendor-witht_01.
    PERFORM bdc_field USING 'LFBW-WT_WITHCD(01)'
    i_vendor-wt_withcd.
    PERFORM bdc_field USING 'LFBW-WT_SUBJCT(01)'
    c_x.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    i_vendor-waers.
    PERFORM bdc_field USING 'LFM1-ZTERM'
    i_vendor-zterm1.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0320'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-LIFNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPLSPO1' '0300'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=YES'.
    Call the Transaction
    PERFORM bdc_transaction USING 'XK01'.
    ENDLOOP.
    Close the BDc Session
    PERFORM close_group.

  • What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    akovash wrote:
    But there's no where where it says "Authorize this computer"  Now what?
    Have you read the article that Rysz posted a link to? It explains it there!
    The only thing you may need is to display the menubar at the top of the iTunes window. Use the CTRL button, CTRL+B and Store is on that menu.

  • HT4623 I am in the process of updating my IOS and my phone screen is showing a picture of the itunes symbol with a USB cord.  I can't get the phone to turn back on.  What do I do?

    I am in the process of updating my IOS and my phone screen is showing a picture of the itunes symbol with a USB cord.  I can't get the phone to turn back on.  What do I do?  Help!!

    Your device is in recovery mode. Connect the device to iTunes and the computer and follow the instructions in this support document. http://support.apple.com/kb/HT1808

  • I'm in the process of updating my iPhone4 to IOS. The installation has stopped half way in the process. And it has ben like that for almost two hours. Now what do I do?

    I'm in the process of updating my iPhone4 to IOS6. The installation has stopped half way in the process. And it has ben like that for almost two hours. Now what do I do?

    Hello scrapperdw,
    Thank thank you for using Apple Support Communities. 
    The following article provides steps and troubleshooting when the install process has stopped.
    iOS: Apple logo with progress bar after updating or restoring from backup
    Regards,
    Jeff D. 

  • What is the process for SQL Server 2005 patch update

    hi,
    i have 2 production SQL Server2005  Database servers in cluster ,
    what is the process for applying patches.
    Saidireddy

    In 2005 you can do it in two ways...
    Method 1 :
    With SQL Server 2005,
    when you start installing cluster service pack (or hotfix), it must be launched on the active node(node
    that hosts the instance). When installing the Setup will launch simultaneously  "remote silence" on all passive nodes. All nodes in the cluster containing the SQL Server instance are updated in the same time.
    Method 2: First you can install in passive node then you can install in the active node, In this way you can save your down time ( If you start in the active node it will check in the passive, and if its installed already then it skips that
    and start applying in the active node ), but most of the DBA's follows only first method because they may not aware of this or just they follows Microsoft common method. 
    SQL 2008 and Later....
    1.  Apply the hotfix on pasive node N2
    2.  Reboot the passive node N2
    3.  Failover on SQL resource : the passive node become the active node
    4.  Apply the hotfix on the passive node N1
    5.  Reboot the passive node N1
    Raju Rasagounder Sr MSSQL DBA

  • ITunes 11 no longer updates the song play count or the last played date/time on Win7 and on Macs

    I've downloaded and installed iTunes 11 on 2 Win7 PC's, on my Macbook (Mountain Lion), MacbookPro (Snow Leopard) and new Mac mini (Mountain Lion). The song "play count" and "last played date/time" do not update after playing songs on any platform. This problem needs to be corrected as I have 2 iPods and an iPhone that I like to sync every few days. I have not tried the sync yet and will not as long as this problem persists.

    I read another similar post about this same issue, where it was said the the "next play" list could be cleared to get the play count and last played date/time to update. That is true, however iTunes stops playing from the playlist entirely - all you hear is the single song. This is not any sort of upgrade or fix. For the sake of one nicety, Apple programmers have broken a fundamental feature and function. This is not good!

  • HT201250 I use Time Machine to back up my entire computer with my external hard drive. I am getting a brand new iMac this month and was wondering what is the process of using this back up to restore my new computer exactly how my old computer was?

    I use Time Machine to back up my entire computer with my external hard drive. I am getting a brand new iMac this month and was wondering what is the process of using this back up to restore my new computer exactly how my old computer was? I want to make sure I will still have various important files on my new computer, like my songs in iTunes, my photos in iPhoto, etc, etc. Thanks so much in advance!

    Welcome to the Apple Support Communities
    When you turn on the new iMac for the first time, Setup Assistant will ask you to restore a backup, so connect the external disk and follow steps to restore all your files to your new iMac. Your new Mac will have the same settings and programs as your old computer.
    In other cases, I would recommend to restore the whole backup without using Migration Assistant or Setup Assistant, but a Late 2012 iMac uses a special OS X build, so the OS X version that you're using on your old Mac won't work on the new one. For more information, see > http://pondini.org/OSX/Home.html

  • I am in the process of updating my iphone 5s.  Process has stopped halfway through.

    i am in the process of updating my iphone 5s.  The process has stopped halfway through for 3 hours now.  What do I do now?

    Hello scrapperdw,
    Thank thank you for using Apple Support Communities. 
    The following article provides steps and troubleshooting when the install process has stopped.
    iOS: Apple logo with progress bar after updating or restoring from backup
    Regards,
    Jeff D. 

  • Help: I have recently downloaded the newest software version for apple products. I have a iPod touch. After the process of updating my software, my photo app doesn't work anymore.

    Help: I have recently downloaded the newest software version for apple products. I have a iPod touch. After the process of updating my software, my photo app doesn't work anymore. I can't take pictures or view them at all. Every time I try opening the app it kicks me out of it and sends me to the home screen. I have tried turning off my iPod and back on multiple times. Even double tapping the home screen button and closing my opened apps. And I tried looking for the photo app in the app store but I did not see it. So I am wondering what can I do? And is this due to the new software update? Does anyone else have this problem?

    No, I have not tried any backup tools. I havent restored my ipod back to factory settings yet and then sync everything back on it. I am kind of scared too because I dont want to lose anything. I have just been hoping some new apple software update will come out because I know several people have had problems when updating to the newest version available.

  • HELLO, i HAVE MY ITUNES ON AN OLDER COMPUTER, JUST PURCHASED A NEW LAP TOP... WHAT IS THE PROCESS TO LOG ON TO MY ITUNES AN USE THE NEW COMPUTER AN DNOT LOSE WHAT i HAVE ALREADY PURCHASED? THANKYOU VERY MUCH... i AM A NEW IPOD USER AND iAM OLD

    hELLO i HAVE A NANO IPOD... A NEW USER OF IT AND iTUNES... HAVE MY ITUNES ON MY OLD COMPUTER... JUST PURCHased a  NEW LAP TOP. WHAT IS THE PROCESS OF ACCESSING THAT ACCOUNT WITHOUT LOSING EVERYTHING OR REPURCHASING SONGS.
    THANK YOU VERY MUCH... i AM OLD AND NOT TECHNOLGY SAVVY!

    Hi Mary,
    Here is an Apple Support link that provides all options for moving your iTunes Library to a new computer as well as full instructions for completing the one you select:
    http://support.apple.com/kb/HT4527
    Hope this helps!
    Gail

  • What is the Relationship between Update Rule and Infopackage/Transfer Rules

    Hello Experts,
    can you help explain these scenarios to me:
    What is the relationship between update rules and infopackges?
    What is the relationship between transfer rules and infopackges?
    What is the relationship between update rules and transfer rules?

    Hello,
    Info-packages trigger the data load into BW system from the source system. An info-package is created for a specific data source and info source combination.
    1) When you trigger the info-package it sends an request to the source system to start the extraction process and this corresponds to the step "Data Request Received" in monitor under details tab. It is the first step.
    2) Then the selections specified in the info-package are transferred to the source system to select the requested data from BW system. Then it is sent back to BW system.
    3) Once it reach BW, it gets into the PSA and then it gets updated into the data target (depends on what settings are made in IP). No rules (Transfer rules / update rules) comes into picture when data is stored in PSA. Only the transfer structure is used to map the BW info-objects with the source system fields.
    4) After data is stored into PSA, the update into the data targets begins. First the transfer rules are applied -> data then flows through the communication structure -> update rules are applied and finally the records gets updated into the data target. 
    The extraction flow is: -
    Source System (DS) -> PSA -> Transfer Rules -> Communication Structure -> Update Rules -> Data target.
    Info-package actually triggers the whole data flow in BW system.
    Hope it gives you a clear picture.
    Thx,
    Soumya

  • What are the tables will update while loading Master data ?

    Hello Experts,
    What are the tables will update while loading Master data ? And requesting you to provide more information about Master data loading and its related settings in the beginning of creation infoobjects. 

    It depends upon the type of Master data u r loading....
    In all the master data loadings, for every new value of master data an SID will be created in the SID table /BI*/S<INFOOBJECT NAME> irrespective of the type of master data.
    But the exceptional tables that get updated depending on the type of master data are.....
    If it is a time Independent master data then the /BI*/P<INFOOBJECT NAME> table gets updated with the loaded data.
    If it is a time dependent master data then the /BI*/Q<INFOOBJECT NAME> table gets updated with the loaded data.
    If the master data is of time Independent Navigational attributes then for every data load the SID table will get updated first and then the /BI*/X<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    If the master data is of time dependent navigational attributes then for every data load the SID table will get updated first and then the /BI*/Y<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    NOTE: As said above, For all the data in P, Q, T, X, Y tables the SID's will be created in the S table /BI*/S<INFOOBJECT NAME>
    NOTE: Irrespective of the time dependency or Independency the VIEW /BI*/M<INFOOBJECT NAME> defined on the top of /BI*/P<INFOOBJECT NAME> & /BI*/Q<INFOOBJECT NAME> tables gives the view of entire master data.
    NOTE: it is just a View and it is not a Table. So it will not have any physical storage of data.
    All the above tables are for ATTRIBUTES
    But when it comes to TEXTS, irrespective of the Time dependency or Independency, the /BI*/T<INFOOBJECT NAME> table gets updated (and of course the S table also).
    Naming Convention: /BIC/*<InfoObject Name> or /BI0/*<InfoObject Name>
    C = Customer Defined Characteristic
    0 = Standard or SAP defined Characteristic
    * = P, Q, T, X,Y, S (depending on the above said conditions)
    Thanks & regards
    Sasidhar

Maybe you are looking for