Update from ATP timeseries indicator different values in APO DB & Livecache

Hello experts,
Our Basis team has ran the Livecache and DB consistency check (OM17) transaction and all the inconsistencies has been removed,but we are encounturing an error "The update from ATP time series indicator has different values in APO DB and Livecache " in 000 version. I have checked the version managemet for 000 and under ATP tab the option Update from ATP time series is unchecked. Can you please let me know the reason for this error and what else i.e. the configuration settings i have to check to wipe out this error.
Quick help is appreciated.
Thanks.
Dhanunjay.

Hello Kaushik,
Thanks for your reply.
The indicator update update from ATP time series is only set during the creation of active version for product availability check time series update, but we are not using any ATP time series.
How ever it's unchecked for active version 000, but when i checked for the entries in the table /SAPAPO/APO01 there the ATP time series activation indicator is set. Iam confused  about the differences, i guess this might be causing the error,if so i have to alter the table or delete the version and recreate. Can you please guide me which would be the better option.
Thanks.
Dhanunjay .

Similar Messages

  • COPA - Split of Value from condition type into different value fields

    Dear All,
    Customer is having several free schemes to customer the same is set up by SD and Cost of free goods is attached to One Z condition type, this flows along with Main product as characteristic. So we have Main product cost in VPRS and Scheme cost in Z Condition and there is possibility of more than one scheme cost flowing in one Z condition for single billing document. Whereas customer request is to see the each scheme cost separately in COPA. Since Value from SD will be flowing through only one condition type , it will be difficult to me to Split this in COPA. We have given a thought of having more than one condition type from SD ( one Z condition for one scheme) but this resolve our issue at hand. If we look at long term whenever customer introduces new Scheme new condition type need to be created and related COPA changes etc, Which doesn't seem to be working out.
    Request Experts help in this, thanks in advance for the help.

    Hi Santosh
    Having a Z cond type for each scheme is preferrable.... This would address the issue with Standard SAP itself...
    Reason being, if you dont do that, then you will have to maintain a mapping somewhere in a Z Table where by system would come to know of the ratio between the schemes... This will be more cumbersome to develop and maintain... Still you wanna do that, here is the logic....
    Maintain the schemes in a Z Table... Where each scheme will have a scheme ID - The ratio applicable to various schemes and also the relevant value fields of COPA to be updated for each scheme....
    Now, add a Custom Field to the Sales Order and while creating the SO this field needs to be updated with the scheme ID(Relevant Exit to make it mandatory MV45AFZZ / ZB).... If Scheme ID is populated, your Billing should read the Split from Z Table using Exit RV60AFZZ and Update COPA using Exit COPA0002
    br, Ajay M

  • Update multiple row for different values

    hi,
    Please provide me the sql query to update multiple row in a table with different values.
    i need to change the old date to new date
    we have only 3 column id,name,old date.now i need to update the old date to new date
    ID name old date new date
    1 A 2012-12-20 12/7/2012
    2 B 2012-12-20 12/9/2012
    3 c 2012-12-20 12/5/2012
    thank you.

    Here are two ways to do this. Thanks to ranit for the table creation script, which I adapted.create table test_x
    as
    select 1 id, 'A' name, to_date('2012-12-20','yyyy-mm-dd') old_date
    from dual UNION ALL
    select 2 id, 'B' name, to_date('2012-12-20','yyyy-mm-dd') old_date
    from dual UNION ALL
    SELECT 3 ID, 'C' NAME, TO_DATE('2012-12-20','yyyy-mm-dd') OLD_DATE
    from dual;First method using MERGE:MERGE INTO TEST_X O
    USING (
      select 1 id, to_date('12/7/2012','mm/dd/yyyy') new_date
      from dual UNION ALL
      select 2 id, to_date('12/9/2012','mm/dd/yyyy') new_date
      from dual UNION ALL
      SELECT 3 ID, TO_DATE('12/5/2012','mm/dd/yyyy') NEW_DATE
      FROM DUAL
    ) n
    ON (O.ID = N.ID)
    WHEN MATCHED THEN UPDATE SET OLD_DATE = n.NEW_DATE;Second method using UPDATE:UPDATE TEST_X SET OLD_DATE =
      CASE WHEN ID = 1 THEN TO_DATE('12/7/2012','mm/dd/yyyy')
           WHEN ID = 2 THEN TO_DATE('12/9/2012','mm/dd/yyyy')
           WHEN ID = 3 THEN TO_DATE('12/5/2012','mm/dd/yyyy')
      END
    where id between 1 and 3;
    You probably don't want to use these methods.*
    You say the "user" will enter these values. Will he always enter exactly 3 values?
    The "user" will enter values into a screen I suppose. What language is the user interface programmed in?

  • How to update a column with different values but all other row values r sam

    Hi,
    I have a table like this.
    Col1 col2 col3 col4
    10 20 30
    10 20 30
    10 20 30
    i need to update col4 with different values coming from other table like this
    Col1 col2 col3 col4
    10 20 30 xxxx
    10 20 30 yyyy
    10 20 30 zzzz
    how can i update the table. pls let me know how to use the where condition in the update stmt.
    thanks,
    jay
    Edited by: user2558790 on Nov 20, 2009 12:26 PM

    what is the logic for this kind of update...????
    Greetings,
    Sim

  • My AppStore id is my apple id n password which is good when purchasing. But when I am updating from update option it ask for a password. The user id I see there is not mine, it's different. How do I change that to my apple Id? Please help me resolve .....

    My AppStore id is my apple id n password which is good when purchasing. But when I am updating from update option it ask for a password. The user id I see there is not mine, it's different. How do I change that to my apple Id? Please help me resolve  this issue. I have tried resetting it but nothing... Either I'm doing something wrong or....

    I believe the issue is with the Apple ID that was used to purchase the App. If you download an App that was purchased under a different Appple ID then all updates will also be linked to the original purchaser's Apple ID. Your Apple ID is the the same ID as your iTunes, iCloud, etc. Some folks use different ID for the different Apple sites. No need for that One ID for all Apple Sites, and if someone else buys an App using their ID and they(you) download that App onto your device and that App requires an update it will ask for the purchasers Apple ID. This happens a lot when folks sell their iPad or give it to someone else and leave some purchased(free) Apps on the iOS device. You cannot change the original ID the App was purchased under. A suggestion would be if someone else has an App that you like but do not want to pay for use their ID or in the future have them gift the App to you.

  • Can you use the value from a numeric indicator in a numeric control?

    Hi!
         I have to develop a code where I have to find the maximum value of a waveform and draw a line at 50% of the value. So I chose to find the amplitude of say 10 cycles of waveforms and found the maximum value out of the amplitudes. 
    But my real problem is, I have to use the maximum amplitude value that I get from the max. array VI and put it back in program to calculate the 50% value. 
    So is it possible to use the value from a numeric indicator and put it in a numeric control? Like in MATLAB or C, you give the variable a name and use it later to do any computations. Is it possible to do something similar in LabVIEW? 
    Solved!
    Go to Solution.

    Hi!
         Thank you very much for taking some time out. I have been trying to do this since 2 months and I am stuck right where I am.
    The situation is, I have to calculate the amplitude of the irregular waveform for a few trials and then find the maximum amplitude out of the trials and display a line at whatever % of amplitude the user chooses. I tried using property nodes but I am getting Error 1055 for some unknown reason. Then I decided to draw the line using DC offset but it turns out it calculates the amplitude each time and so the line keeps dancing everytime. Now my challenge is to have the amplitude calculated for say, 20 loops and then calculate the max from that. I ran out of ideas so I am posting here. I am using LabVIEW version 8, and I'll upload a few of my attempts. I hope I am not troubling you'll much.
    Attachments:
    amplitude display.vi ‏217 KB
    amplitude display 1.vi ‏148 KB
    Using property node.vi ‏56 KB

  • How do I update from MAC OS X 10.6.8 to a later version? The software I'm trying to run indicated I needed MAC OS X 10.7 or later.

    How do I update from MAC OS X 10.6.8 to a later version? The software I'm trying to run indicated I needed MAC OS X 10.7 or later.

    Open the Mac App Store and try downloading Yosemite. If you get told it's incompatible, choose About this Mac from the Apple menu, check if the computer has at least a Xeon or Core 2 Duo(not Core Duo) CPU and 2GB of RAM, and if it does, click here and order a download code for Lion 10.7.
    Back up your data and check your applications for compatibility before upgrading. In particular, Mac OS X 10.7 and newer don't support PowerPC programs such as versions of Microsoft Office prior to 2008.
    (122969)

  • Deploy update from different pc

    Hi, if publish an update from different pc of the last publish, all file are deployed.
    I've tried to set <MSDeployUseChecksum>true</MSDeployUseChecksum> in
    LightSwitchProfile.pubxml, but is ignored.
    Any suggestion is apreciated!

    I will try to explain better, with last update published with pc in office:
    1) If I publish the update from same pc, only new file are published
    2) If the update is published from another pc, with same ntp/DC time source, all files are deployed agai
    HI,
    Web Deploy has two methods of determining which files will be synced when a publish operation is performed.
    Use file time stamps
    Use the CRC (Cyclic Redundancy Check) checksum
    By default Visual Studio uses the time stamps method. Please follow the Lightswitch team blog to publish updates for app offline and usechecksum. see:
    Web publishing updates for app offline and usechecksum
    If it still has same issue, please don't hesitate to let me know.
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Updating multiple rows with different values

    Hi!
    I have a problem. I need to update more then 1000 rows with different values. How can I do it?
    For exsample i have table:
    id; color, date,
    1 red
    2 green
    3 white
    I need to update date field.
    Update table
    set date='01.02.03'
    where id=1
    Update table
    set date='01.03.03'
    where id=2
    Maybe there is way how to update multiple rows at one query?
    Sorry for my bad english.
    Thanks!

    Hi,
    You can try this
    UPDATE TABLE SET DATE = CASE
                        WHEN ID = 1 THEN TO_DATE('01-02-03','DD-MM-RR')
                        WHEN ID = 2 THEN TO_DATE('01-03-03','DD-MM-RR')
                        ENDcheers
    VT

  • Update Work Process - Different value in SM51 & TU02...which is correct?

    Hi,
    i am checking update work process configured in the system.
    In SM51, i am getting 36 update work process but when i checked it through transaction
    TU02 -> Active parameter, i found the parameter rdisp/wp_no_vb value is 16.
    Am surprised to see the different value at different place, how its possible.
    which is true, how many update work process is configured in the system?
    regards,
    Rakesh

    Hello  Rakesh Ranjan,
    We all realized that you already solved the problem but unfortunately you closed this message without saying anything, what had actually happened and how you solved this problem... if you don´t mind share with all community (so that in future other users can solve the same situation with this post!
    Best regards,
    João Dimas - Portugal

  • When downloading an update from app store, password is requested from a different user.  How to change user?

    when downloading an update from app store, password is requested from a different user.  How to change user?

    Unfortunately there's no way around this.  you will need that password to update the apps. If he won't give it to you, then i'm not sure what to say.
    You should have kept the account with the Apps you bought yourself.
    Otherwise, as I said, delete the Apps, and buy them again.
    Sorry.

  • Change the value of column from select and insert different

    Hi All,
    I have written a procedure where i am selecting values from some table and inserting in a new table. The code is below
    If you see the line 54 in code, you will find the combined_bu_code is is coming from one procedure and the value of BU is stored in prod.SEM_BACKLOG_LOG table. I have to check, if the combined_bu_code is coming as PWR then insert as POWER in BACKLOG_OTD_NEW table not as PWR.
    Looking for a help on this. Thanks in advance
    Regards
    Edited by: User_Apex on Jun 23, 2011 3:03 AM
    Edited by: User_Apex on Jun 23, 2011 3:53 AM

    Hi Martin,
    sorry i wrote wrong at that time
    If you see my code you will find alias of prod.SEM_BACKLOG_LOG is 'a' not 'b' and BU is coming from 'a'
    I just want a if startement to be written in this column "SMTC_OTD_CHART.get_combined_bu_code (a.BU)COMBINED_BU_CODE" that if the a.BU is PWR insert as POWER in the BACKLOG_OTD_NEW table
    Regards
    Edited by: User_Apex on Jun 23, 2011 3:02 AM

  • WSUS SERVER TAKING UPDATES FROM DIFFERENT DOMAIN

    Dear Concern
    We have oberved from the logs that WSUS server is taking updates from the sites which is Non-Microsoft .
    Few updates ar being feteched from the Akamai platform  kindly confirm if the microsoft is providing updates from Akamai cloud.
    This is security concern for us .
    Regards

    Hello,
    The TechNet Sandbox forum is designed for users to try out the new forums functionality. Please be respectful of others, and do not expect replies to questions asked here.
    As it's off-topic here, I am moving the question to the
    Where is the forum for... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How do I get around HD "issues" to update from 10.5.8 to 10.6.8?

    This is in reference to my Macbook 2.16 while attempting to update from 10.5.8 to 10.6.8-- current usage on the Mac partition is 99GB with 33GB free; the Bootcamp partition is 31GB used with 70GB free. I own Paragon Camptune and was considering reducing the size of the bootcamp partition (it can dynamically change partition size). Total HD size is 250GB.
    When inserting the disk it showed both partitions and indicated that the Mac "could not be used as a startup disk"; bootcamp simply said it could not without re-initializing-- which makes sense as it is NTFS.
    I had naively thought that I could update without changing the bootcamp partition. It has several apps that I do not have original install discs for (they were downloads and are several years old).
    It gets down to 2 questions: what should I use to backup the bootcamp/XP partition (and can it be cloned and installed on a different size partition)?
    And #2-- why would the installer say the Mac partition "could not be used as a startup disc"? There is enough free space for the installation (>5GB) and I am running 2GB RAM-- the max for this computer.
    Rich

    What installation disk are you using to try to install Mac OS X 10.6? You would seem to be using an installer disk from another model of Mac, since you refer to Mac OS X 10.6.8 and the last retail installer came with 10.6.3, and if so that other Mac's disk won't work and is not legal. You need a retail copy of the 10.6 installer (white label with the picture of a snow leopard).
    If you are using a retail version, post back and someone may have ideas.
    Regards.

  • Split Output from Select into 2 different Cols

    Hi,
    I am new to oracle dev. Env Oracle 10g R2
    I need a help with the following.
    I have a select query that returns comma separated values.
    Column LIST1 in table svp_1.
    This needs to hold that data returned by the select query.
    Datatype of Column LIST1 varchar2(4000)
    I get the follwing error.
    ORA-19011: Character string buffer too small
    CREATE OR REPLACE PROCEDURE
    sale_temp( pType in Char,lDate in date) as
    cnt number;
    v_error_code NUMBER;
    v_error_msg VARCHAR2(2000);
    cursor c1 is select svp
    from sale
    where type = pType
    var1 c1%ROWTYPE;
    BEGIN
    UPDATE svp_1
    SET LIST1 = ( SELECT LTRIM( xmlagg (xmlelement (c, RTRIM(RELATED_SVP) || ',')).extract ('//text()'), ',' ) AS RELATED_SVP from (
    SELECT rtrim(BASE_SVP) BASE_SVP,
    rtrim(RELATED_SVP) RELATED_SVP
    from
    svp_enc se
    where
    se.effective date<= pDate
    and (se.expiration_date is null or se.expiration_date > plDate )
    and se.base_svp in
    ( var1.svp
    and se.RELATION_TYPE = '4'
    )group by base_svp)
    WHERE type = pType
    commit;
    dbms_output.put_line('UPDATE done' );
    end;
    end loop;
    close c1;
    END ;
    My requirement :
    In need to capture the data from the select query and update the column.
    The data needs to be returned as comma separated values.
    This data can also be split into 2 columns.....ie data split and updated into 2 cols ie LIST1 AND LIST2 ( can be added to existing table).
    What is the best way to do this?
    Is the below approach possilble?
    LOOP through cursor ...check the length of data....for the select query ....check length .if > 3990 byte.....then write into 2 plsql variables.....and update 2 cols....
    Is this apporach right, if so how to do that in the procedure ? Please give an example...
    Are there any other approaches...?
    All I need is to Split Output from Select into 2 different columns and avoid the ORA-19011: Character string buffer too small error.
    Thanks in advance.

    Re: ORA-19011: Character string buffer too small

Maybe you are looking for

  • X1 Carbon - Come on, Lenovo. A little conscienti​ousness, please.

    I would like to express my disappointment in Lenovo's product and their lack of apt customer service. I bought my X1 Carbon (adaptive keyboard) in Singapore while on holiday sometime late March.  I started using it mid-April.  I am currently residing

  • How to get selected rows in a new screen in alv.

    Hi everybody, I have a alv report in oops concept when i select a row all the details of that particular row should come in new screen. can anybody help me regarding this if possible with example. thanks in advance. regards, venu.

  • TS4108 I need to back up my internet history how do I do that

    I cleared my Internet history and I want to know how to restore it

  • Dreamweaver 3 Serial Number

    Hi. I have the original CD but cannot find the registration card or the serial number for Dreamweaver 3.0. How can I get it?

  • Wierd Itunes issue

    Hello everyone, I had something very wierd just happen to me. I was checking my emials via computer and I had one from an old aquaintance that said FWD: Social Security No., so I opened it. It had an attachment, so I opened that and downloaded it. I