Process doesn't work

Hi Experts,
            I created a PC, which loads  records from APO into an ODS and from the ODS to IC1.and IC1 to IC2.
When i schedule the pc, it works fine till activation of ODS but upon looking at RSMO, it throws a error in the details tab under Extraction ( For load from ODS to IC1) the error msg reads Error occured in data selection and the error says "Delta update for ODS is invalidated- Error in source system". 
Iam doing just full upadte in the process chain for all the loads.
Any help??
Thanks
Dave
Message was edited by: Dave Marcus

Hi Dave,
  Pls. refer to the earlier posted forum. This may be helpful for ya..
Delta load from ODS to Cube
You may also look into
Delta Update from ODS is invalidated
this has been mentioned in the previous forum link .
Hope this helps...
Thanks,
Raj

Similar Messages

  • Leave to list-processing doesn't work

    Hi 2 all!
    I have a problem with LEAVE TO LIST-PROCESSING. I have developed a module pool (type M) and screen with the screen painter of type Normal. Now I want to go to the report from my screen with LEAVE TO LIST-PROCESSING, but it doesn't work. I am trying to do this when the button is pressed ( at my application status). The operation is performed but then the Init_screen_xxxx module is called again. Highly appreciate your help.

    Hi Nata
    Yes U can do it.
    We go from module pool program to report program and vice-versa.
    1.  From report to screen (transaction)
           Call transaction
          Leave to list-processing and return to screen
    2.  From screen to list (report)
             we can write a report program for fuction key available in the screen.
              for example.
        case sy-ucomm.
          when 'fctcode'.
           select .......... from tabl   into ..
        write:/.........,
    endcase.
    reward if useful.

  • Outlook 2007 - Automatic processing doesn't work unless logged in

    Hi guys,
    I'm working with an equipment mailbox in an Exchange 2007 / Office 2007 and am having some difficulty getting it to work properly.
    Basically, I've set the equipment mailbox up appropriately and have checked all three of the 'Resource Scheduling' tasks to automatically accept meeting requests and process cancellations as well as to decline conflicting and recurring meeting requests
    As long as I am logged in 'as' the user account of the equipment mailbox (for example, 'PipetteBalance') meeting requests are processed automatically from my own account (and other users)
    However, as soon as I log out of the PipetteBalance account the automation halts until I log back in to it again (and thus connect to Exchange via Outlook)
    I've disabled cached exchange mode and have forced the 'AutoAccept' powershell cmdlet against the mailbox to no avail
    Even adding the mailbox as a shared mailbox doesn't work. I have to log in as the account directly and have an 'active' connection with Exchange for the automation to work
    This is the full list of properties set against the equipment mailbox:
    AutomateProcessing : AutoUpdate
    AllowConflicts : False
    BookingWindowInDays : 180
    MaximumDurationInMinutes : 1440
    AllowRecurringMeetings : True
    EnforceSchedulingHorizon : True
    ScheduleOnlyDuringWorkHours : False
    ConflictPercentageAllowed : 0
    MaximumConflictInstances : 0
    ForwardRequestsToDelegates : True
    DeleteAttachments : True
    DeleteComments : True
    RemovePrivateProperty : True
    DeleteSubject : True
    DisableReminders : True
    AddOrganizerToSubject : True
    DeleteNonCalendarItems : True
    TentativePendingApproval : True
    EnableResponseDetails : True
    OrganizerInfo : True
    ResourceDelegates : {}
    RequestOutOfPolicy : 
    AllRequestOutOfPolicy : False
    BookInPolicy : 
    AllBookInPolicy : True
    RequestInPolicy : 
    AllRequestInPolicy : False
    AddAdditionalResponse : False
    AdditionalResponse : 
    RemoveOldMeetingMessages : True
    AddNewRequestsTentatively : True
    ProcessExternalMeetingMessages : False
    DefaultReminderTime : 15
    RemoveForwardedMeetingNotifications : False
    Is there something I may have overlooked or not set up properly?
    Thanks,
    Adam

    Hi,
    Please try to use Windows Search to search for words or phrases that you expect to find in email messages. In this way, we can determine if Outlook data is being indexed.
    If no results were returned, please try to search other files (not Outlook emails) with Windows Search to check if the Windows search feature is broken. If so, we can try to reinstall the Windows search feature to check if it helps. To do this, please follow:
    1. Go to Control Panel > Programs > Turn Windows features on or off.
    2. Untick "Windows Search".
    3. Press OK and wait until the installer is finished.
    4. Reboot your computer.
    5. Repeat steps 1-3 to enable it again.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Page level process doesn't works for tabular form.....

    I am developing an application on inventory of an chemical factory.......
    I have an master-detail form where detail table is in tabular form.......
    I have an LOCATION1 AND QUANTITY1 COLUMN in detail table..........
    I have location say...LT01A02 AND limit of each location to hold an quantity is .....say 1000.
    I wrote an process for these but it doesn't work.......
    declare
    x NUMBER(6);
    z number(6);
    begin
    selecT NVL(SUM(QUANTITY1),0) INTO x from RM_LOCATION1 where LOCATION1 = :P3_LOCATION1;
    z := x;
    if :P3_LOCATION1 LIKE'%1)' or :P3_LOCATION1 LIKE'%2)' then
    if z > 1200 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 1ST OR 2ND PALLETE ,WHICH CAN HAVE MAXIMUM 1200KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%3)' or :P3_LOCATION1 LIKE'%4)' then
    if z > 800 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 3RD OR 4TH PALLETE ,WHICH CAN HAVE MAXIMUM 800KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%5)' or :P3_LOCATION1 LIKE'%6)' then
    if z > 750 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 5TH OR 6TH PALLETE ,WHICH CAN HAVE MAXIMUM 750KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%7)' or :P3_LOCATION1 LIKE'%8)' OR :P3_LOCATION1 LIKE'%9)' or :P3_LOCATION1 LIKE'%10)' OR :P3_LOCATION1 LIKE'%11)' or :P3_LOCATION1 LIKE'%12)' then
    if z > 600 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 7TH OR 8TH OR HIGHER PALLETE ,WHICH CAN HAVE MAXIMUM 600KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    end if;
    end;
    I HAVE SEEN THAT APEX DOESN'T PICKS VALUE CALLED... _:P3_LOCATION1_*
    NOW WHAT TO DO ,CAN ANY ONE HELP ME....HOW TO RUN THESE PROCESS......

    Hi User XY,
    tabular forms do not have Page Items. The values you entered in the tabular form are stored in arrays like APEX_APPLICATION.g_f01 to g_f50.
    Here are some links you might find helpful: http://www.talkapex.com/2008/07/manually-creating-tabular-form.html
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/apex_app.htm#CHDICJDA
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • Update process doesn't work

    Hello all,
    I created the following PLSQL Trigger but it doesn't work as it should.
    If there is a change in the colomn "stunden" in table cn_pl_std_peplanung, the trigger should write the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) from cn_pl_std_peplanung into the table cn_pl_aenderungen.
    The problem is that this trigger doesn't just write the row where attribute "stunden" was changed into cn_pl_aenderungen, it writes all rows into cn_pl_aenderungen where the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) are matched. I just need the row where attribute "stunden" was changed. cn_pl_aenderungen is a table to log the changes made on cn_pl_peplanung.
    I hope you understood the problem... :-)
    create or replace trigger "CN_PL_STD_PEPLANUNG_T1"
    AFTER
    insert or update on "CN_PL_STD_PEPLANUNG"
    for each row
    DECLARE
    pragma autonomous_transaction;
    cursor c_peplanung(in_stunden number)
       is select pl_id, l_art_id, pe_id, idee_id, abt_id, version_id, stunden FROM cn_pl_std_peplanung
       WHERE stunden = in_stunden;
    rec_plan c_peplanung%rowtype;
    BEGIN
    OPEN c_peplanung (:old.stunden);
    LOOP
    FETCH c_peplanung INTO rec_plan;
    exit when c_peplanung%NOTFOUND OR c_peplanung%NOTFOUNd is Null;
    IF rec_plan.stunden != :new.stunden THEN
    INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
    VALUES
    (rec_plan.l_art_id, rec_plan.pe_id, rec_plan.idee_id, rec_plan.version_id, v('APP_USER'), sysdate);
    COMMIT;
    END IF;
    END LOOP;
    CLOSE c_peplanung;
    END;

    All you need is just this
    CREATE OR REPLACE TRIGGER CN_PL_STD_PEPLANUNG_T1 AFTER INSERT OR UPDATE ON CN_PL_STD_PEPLANUNG FOR EACH ROW
    BEGIN
         IF :NEW.student != :OLD.student
         THEN
              INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
                   VALUES (:NEW.l_art_id, :NEW.pe_id, :NEW.idee_id, :NEW.version_id, v('APP_USER'), sysdate);
         END IF;
    END;Don't use ATONOMOUS_TRANSACTION. You dont want to log if nothing happens to the Main table right? Think what happens if the main transaction rolls back.
    Note: Code not tested.

  • On load process doesn't work

    I have translated my application. The process that are On load before header doesn't execute. My application is translated from fr-ca to en-us.
    Any idea ?

    My process is a PL/SQL process with firing point : On load : Before Header.
    Here is the process :
    --Procédure permettant de copier le contenu de la table ass_groupe_usager dans la table de travail copy_travail où le PEIN correspond au PEIN sélectionné.
    --Dernière modification : 27 mars 2006
    for curseur IN (select asso_groupe_usager.CODE_GROUPE, asso_groupe_usager.PEIN from asso_groupe_usager where PEIN = :TB_PEIN_2) LOOP
    insert into COPY_TRAVAIL(CODE_GROUPE, PEIN, PEIN_CREATION)
    VALUES(curseur.CODE_GROUPE, curseur.PEIN, :USAGER_ACTIF);
    END LOOP;
    commit;
    I do not have conditions, build option or authorization scheme.
    This process only fill a work table.
    I can not put it on the web.. sorry..
    Chantale

  • BPM Studio 11g: New Process doesn't work

    Hi,
    Just downloaded JDeveloper 11.1.1.3 and extension "Oracle BPM Studio 11g".
    I created a BPM application, a BPM project and in this project a try to make a new Process, but after new > BPM Tier > Process, nothing happens.
    Am I missing something?
    Thanks,
    HJH

    After installing the extension "Oracle SOA Composite Editor" extension it works...
    I can create processes now.
    Groeten,
    HJH

  • Approval Process doesn't work correctly

    Hi,
    I developed custom request template for self-request provisioning for resource with child table data. Also I deployed custom Request Dataset only with child attribute field definition for this resource:
    <request-data-set
    xmlns = "http://www.oracle.com/schema/oim/request"
    xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation = "http://www.oracle.com/schema/oim/request"
    name = "ProvisionResourceHP"
    entity = "HP"
    operation = "PROVISION">
    <AttributeReference
    available-in-bulk = "true"
    length = "100"
    widget = "text"
    type = "String"
    attr-ref = "UD_HP_ROLES"
    name = "Roles">
         <AttributeReference
         lookup-code = "Lookup.HP.AppRoleList"
    available-in-bulk = "true"
    required = "false"
         length = "100"
    widget = "lookup"
         type = "String"
         attr-ref = "AppRole"
         name = "AppRole"
              primary="true"/>
    </AttributeReference>
    </request-data-set>
    When this request approved by all participants of the approval process, Resource do not in provisioned status! In the resource history only - System Validation status Pending!!!

    I resolved this issue but not complitly. I checked Auto Save Form check box on Process Form and its worked.
    But I do not need Auto Save, because on child table attrubute i don't have any prepop adapter so it always been unpopulated during direct provisioning....
    How to solve this new issue???

  • Background Process doesn't work

    Hi Everybody,
    i want to change some data on a database table through a background process but the data will not be changed:
    I am working on IDES ECC 6.0 (2005)
                    CALL FUNCTION 'MY_BACKGROUNDD_PROCESS'
                      IN BACKGROUND TASK AS SEPARATE UNIT DESTINATION 'NONE'
                      EXPORTING
                    CALL FUNCTION 'START_OF_BACKGROUNDTASK'
                         EXPORTING
                              STARTDATE = SY-DATUM
                              STARTTIME = l_time
                         EXCEPTIONS
                              OTHERS    = 1.
                    IF sy-subrc = 0.
                      COMMIT WORK.
                    ENDIF.
    If i call the function without: " IN BACKGROUND TASK AS SEPARATE UNIT DESTINATION 'NONE' " it works fine.
    What could be the problem?
    regards,
    Sid

    Hi Julius,
    i am new to abap so i am trying to find a solution in SDN. I try it also without 'IN  A SEPERATE UNIT' but without success. Is it necessary to call the function: 'START_OF_BACKGROUNDTASK' after it?
                    CALL FUNCTION 'MY_BACKGROUND_PROCESS'
                      IN BACKGROUND TASK DESTINATION 'NONE'
                      EXPORTING
    Could you please give me an example how i can call my fuction 'MY_BACKGROUND_PROCESS' as a background task?
    Thanks in advance!
    Sid

  • Istat Pro "Processes" doesn't work since upgrade to OS X 10.8.2

    Ever since I upgraded the OS to 10.8, the istat Pro widget on the dashboard doesn't list anything but a stack of empty white squares under "Processes". Is this a known bug?

    Thanks CT! Here are the steps from the macrumors.com link:
    Steps:
    1. Locate your widget, it will be under /Library/Widgets or ~/Library/Widgets
    2. Right click it and select: "Show Package Contents"
    3. Open Wide.js or Tall.js file in some editor (Wide is for horizontal view, Tall for vertical)
    4. Locate the line
    Quote: 
    WideSkinController.prototype.updateProcesses = function(){
    var _self = this;
    var exclude = "";
    if(p.v("processes_excludewidgets") == 'on')
    exclude = " grep -v DashboardClient | "; if(p.v("processes_sort_mode") == 'cpu')
    widget.system('ps -arcwwwxo "pid %cpu command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print "<pid>"$1"</pid><cpu>"$2"</cpu><name>"$3,$4,$5"</name></item>"}\'', function(data){ _self.updateProcessesOut(data);});
    else
    widget.system('ps -amcwwwxo "pid rss command" | egrep "PID|$1" | grep -v grep | ' + exclude + ' head -7 | tail -6 | awk \'{print "<pid>"$1"</pid><cpu>"$2"</cpu><name>"$3,$4,$5"</name></item>"}\'', function(data){ _self.updateProcessesOut(data);});
    Change "PID|$1" to "PID| $1" (Add space before $ sign)
    5. Save the changes
    6. remove widget and re-add it Dashboard, and it should be fixed

  • LR Enfuse Problem - Batch Processing Doesn't work

    Hi,
    I'm relativley new to Lightroom - and am trying to learn about Enfusing multiple different exposures.
    I've followed all the instructions to the letter, and I'm able to enfuse great looking shots if I do them 1 group at a time. However, I've taken heaps of bracketed shots, and want to 'Batch Process' them.
    LR/Enfuse appears to have the functionality, and plenty of people online seem to be able to make it work. But even when I stack each bracketed shot, and select all. It still comes up with the error message below:
    "No Stacks
    No Stacks containing selected photos were found.  If you are trying to blend the selected images then please turn off the batch mode option."
    Any ideas? I'm using Lightroom 5.2
    Cheers, Thomas

    Hi,
    I am not sure what operating system you are using, I don't have any problems with Win 7 x64, but if you are using Apple OS there may be issues with permissions on the folders you are using e.g. the folder for temporary files.
    You may also want to look at his tutorial http://digital-photography-school.com/save-time-with-batch-exposure-blending but disregard the Auto Stacking explained as it is difficult to get it to work.
    I am not sure but it looks as though the stacks in the image you posted are expanded. Make sure the individual stacks are collapsed.
    Apart from that I just don't know as it works fine for me.

  • Email process doesn't work

    Hello,
    I have procedure in my application that must send emails, but it is not working. So I tried to send a normal email from application using this block
    "DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the APEX_MAIL
    package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf;
    apex_mail.send(
    p_to => 'my_email', -- change to your email address
    p_from => 'Another_email', -- change to a real senders email address
    p_body => l_body,
    p_subj => 'APEX_MAIL Package - Plain Text message');
    END;"
    But this is also not working, am I missing something? Knowing that I am working in a local network.
    Thanks!

    Is this the way that you have it setup??
    DECLARE
    l_body CLOB;
    BEGIN
    l_body := 'Thank you for your interest in the APEX_MAIL
    package.'||utl_tcp.crlf||utl_tcp.crlf;
    l_body := l_body ||' Sincerely,'||utl_tcp.crlf;
    l_body := l_body ||' The APEX Dev Team'||utl_tcp.crlf;
    apex_mail.send(
    p_to => 'my_email', -- change to your email address
    Is this e-mail address correct??
    p_from => 'Another_email', -- change to a real senders email address
    Same question here?
    p_body => l_body,
    p_subj => 'APEX_MAIL Package - Plain Text message');
    END;Simple question, do you have APEX configured with an E-Mail server??
    Thank you,
    Tony Miller
    Ruckersville, VA

  • The updating process doesn't work. Nothing happens.

    Whenever the "update" screen/notice appears, I click on "update now." All that shows up is a flickering line, but nothing else happens. I am never notified that the update worked or failed.

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Re: Update Cache Objects in Delta Process Dosn't work

    Hi All,
    Re: Update Cache Objects in Delta Process doesn't work.
    BI 7 - SP 17
    This is the scenario I am working on, am running a bex query on a Cube(via a multi) with bunch aggregates.
    The daily extraction & Aggregate rollup is correct, but when I run a Bex Query it display incorrect keyfigure values as compared to what we see in LISTCUBE for the infocube.
    So when I ran the same query in RSRT with "Do not use Cache", it gave correct results and then when I ran the Bex Query again it fixed itself and it displayed correctly.
    InfoCube - standard & No compression for requests
    Query Properties are
    Read Mode - H
    Req Status  - 1
    Cache - Main Memory Cache Without swaping
    Update Cache Objects in Delta Process (Flag selected)
    SP grouping - 1
    This problem occurs once in couple of weeks and my question is there a permanant fix for it??
    OR should we turn the cache off??
    Can anyone please help.
    Thanking You.
    Rao

    Hi Kevin/Rao,
    We are currently experiencing problems with the 'Update Cache Objects in Delta' process.  Did either of you manage to resolve your issues, and if so, how?

  • Satellite L650-12Q - Windows 7 recovery procedure doesn't work

    Hello,
    I have Windows 7 Home Premium edition (64 Bit) in my Toshiba Satellite laptop (L650-12Q) and after a fresh start the Windows stopped working. I have a recovery disk which didn't load (I ended up with the pointer in a blank screen) and the windows 7 installation disk wouldn't work either (same thing). Safe mode doesn't work either.
    This probably means that the partition has a problem am I right? - I have used Ubuntu Live CD which confirmed that c:\ cannot be mounted although d:\ can.
    The problem however, is two fold: a) I'm not sure whether aspects of my data are accessible or not (I can't check this) and b) I can't re-install Windows, as the Windows 7 installation process doesn't work.
    Any ideas please on what to do next? I would like to access the partition, have searched the internet (even tried with a Windows 98/XP boot disc) but didn't have any luck as the partition is written in a newer way, which isn't detected by them...
    Thank you in advance.

    > I have a recovery disk which didn't load (I ended up with the pointer in a blank screen)...
    Do you use it for the first time?
    Anyway, try to start recovery disc following these steps:
    -Start notebook model and when you see Toshiba welcome screen press F12 several times to enter Boot options
    -when the boot menu is shown put recovery disc into optical disc drive
    -in menu choose CD/DVD drive and press ENTER
    ODD should start reading recovery disc.
    What happen when you do this?

Maybe you are looking for

  • Weird Framework item in dock.  Can't stop it!

    Just setup a new MacPro dual 2.8 OSX 10.5.3. On startup, an item appears in the dock named 'CoreMIDIServer.framework'. It shows as an open application, but there is nothing open or running. It is not in the startup folder. Where does it come from? I

  • Tab navigation with multiple records

    Hi, Using oracle forms 10g I have a form with three tabs - different data blocks, each one can have multiple records. When I select record #3 on the first tab, the corresponding record is not being returned when I click on the 2nd tab. There are rela

  • Audio interference when generating previews in Bridge

    Symptom: Audio interference, music skipping or stopping, sounds like a scratched CD Happens when: Listening to Pandora Radio through either USB headphones or audio jack headphones and doing one of the following: Bridge (CS6) is generating preview fil

  • Outlook 2011 for Mac and SSLv3 on Exchange 2010

    I have a few Apple MacBook users with Outlook 2011, and connecting back to my Exchange 2010 server (essentially via OWA). Currently it all works fine.  With the POODLE vulnerability, it is recommended that SSLv3 be disabled in Exchange (at Windows 20

  • Upgrade Business Catalyst from basic

    I am a creative cloud subscriber, how do I upgrade my business Catalyst from basic (100mb disc space) to more disc space , for my wesites Thanks FDH2231