Polling on status flag using Informatica

Hi Informatica guru's
how can Informatica workflow do polling (10 attempts MAX) on the status flag of a particular table at a fixed time interval of every 5 minutes.
On the 10th Attempt ,if the status is still not yet changed ,then the Informatica workflow to be marked as failed.
later an email to be sent about the workflow failure.
how do I develop the above logic?
please help me ASAP.
Thanks & warm regards,
Kam

did you ever figure out how to do this? I need to do the same thing.
Thanks,
Angie

Similar Messages

  • Populating OBIEE event polling table S_NQ_EPT using Informatica/Stored Proc

    Hi,
    We have successfully setup OBIEE event polling Table S_NQ_EPT; and OBIEE cache purging mechanism is working fine.
    If anybody has done any setup for event polling table which gets updated after/in DAC execution Plan run using informatica/Oracle SP.
    Can anybody suggest pointers on how to insert rows in S_NQ_EPT after DAC run using informatica/DAC/Oracle Stored Procedure?
    Thanks in Advance,

    HI Srini,
    Thanks for reply.. yeah we have setup event polling table and all steps mentioned on site are done.. We want to populate event polling table after ETL run, any pointers?
    Thanks,

  • How to check the value of "The Interrupt Status Flag"?

    Hi, thank you for reading this post!
    Invoking Thread.interrupt() sets the value of the Interrupt Status Flag.
    Just wondering if there is a Java method to check the value of this flag? Or is using isInterrupted() or interrupted() the only way to check?
    http://download.oracle.com/javase/tutorial/essential/concurrency/interrupt.html
    Thank you in advance for your help!
    Eric

    Below is the full code. As soon as the Thread.sleep() is taken out in main(), the interrupt is detected in the child thread. But if the sleep() stays, then the child thread goes into an infinite loop. It's not detected the interrupt.
    //ParentInterruptChildThreadCatchedDemo.java
    //Program function: This program demonstrates the parent thread (main()) interrupting a child thread (thread1).
    //Threaded class
    class TryThread extends Thread {
         //fields
         private String threadname;
         private long aWhile;
         //Constructor
         public TryThread(String tname, long delay) {
              threadname = tname;
              aWhile = delay;
         //run() method
         public void run() {
              while(!Thread.interrupted()) {
                   //Do work
              try {
                   System.out.println(Thread.currentThread().getName() + " was just interrupted!");
                   throw new InterruptedException();
              } catch(InterruptedException e) {
                   //System.exit(1);
                   return;
    public class ParentInterruptChildThreadCatchedDemo {
         public static void main(String[] args) {
              Thread thread1 = new TryThread("thread1", 2000L);
              thread1.start();
              try {
                   System.out.println("main() goes to sleep for 10 second.");
                   Thread.sleep(10000);
                   System.out.println("Statement after main() sleep().");
              } catch(InterruptedException e) {
                    e.printStackTrace();
                 //Interrupt thread1
                  int interruptFlag = 5;
                  for(int i=0; i<11; i++) {
                       if(i == interruptFlag) {
                            System.out.println("Condition met, going to interrupt thread1 ...");
                            thread1.interrupt();
                            System.out.println("Thread1 interrupted!");
                  System.out.println("Ending main()");
    /*Output:
    main() goes to sleep for 10 second.
    Statement after main() sleep().
    Condition met, going to interrupt thread1 ...
    Thread1 interrupted!
    Ending main()
    INFINITION LOOP
    */

  • Physical Inventory Status Flag Not Reset after Year End Inventory Procedure

    Hi,
    We are just done with the Year End Inventory Procedures, and to my surprise, a lot of Storage Bins are having their Physical Inventory status flag as ACTIVE, which they should not have.
    An example bin has incorrect status-u201Ccountedu201D in the associated inventory record number . LINV status is L-cleared. LINK status is Z-counted, LINP status is Z-counted and physical inventory flag is ON in table LAGP, but status must be L-cleared and physical inventory flag should be OFF (or blank) in table LAGP.
    Our users did not use LI20 to clear the empty bins or bins had no difference to post (meaning book qty & count qty are the same).
    I already tried the Program RLREOLPQ and OSS Note 824904, but no its of no use in our Case.
    Any guess/hint for the problem?

    I solved this with thehelp of a Zprogram writeen wrt the OSS note mentioned above in the question.

  • Clearing Table of Content status flags on file launch??

    I have a trainin course with the Table of Contents feature (Captivate 4), which displays what screens the user has viewed by displaying green status flags. Our customer may have a workstation set up as a “training station”. It appears as though the status flags in the TOC is cumulative. In other words, of one student comes in, completes the training, and then another student comes in behind him to use the training, all the status flags from the previous training session are still visible. So, my question is…Is there any way to control the status flags without each user having to manually clear them using the clear button? Possibly with a variable of some sort? Any suggestions would be greatly appreciated!

    Hi there
    Have you tried clicking Project > Table of Contents > Settings... and ensuring the Status Flag option is cleared?
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • How can I remove a flag using a rule in Mail.app?

    I'm using Mail Act-On to flag messages that are important. I also have got a smart mailbox that displays only those messages that are flagged, this is my "To Do" mailbox.
    Once I've read and answered the message I want to remove the flag, preferrably via a rule using Mail Act-On as well. However in the rules dialog in the Mail.app preferences there's only the option to set a flag, not to remove one.
    Can anyone help: how can I remove a flag using a rule?? Maybe via Applescript as the last resort?
    Thanks for any advice Jan

    Hi Jan
    I haven't gotten around to put unread and unflag into Mail-ActOn but MailTags has the functionality. MailTags also allows you to mark a message unread via act-On rule.
    It is interesting to note that apple doesn't include unflag and unread as the rules were originally intended to apply only to new messages (of which none should be read or flagged) with that logic, there would be no need for unread, unflagg.
    @David: The reason to do it via Act-On rule would be to set up a sequence of events, one of which is to unflag, others may be to set keywords, move messages, set colors etc.
    Scott

  • Load special characters in oracle by using informatica

    Hi All,  I'm trying to load data from flat file to oracle databse table using Informatica power center 9.1.0 and I have some special characters in source file. Data are loaded sucessfully without any errors but these special characters are loaded different way like 1) Planner – loaded as Planner ��������2) Háiréch  loaded as Hair��������ch  While same flatfile loaded into another flatfile,data loaded correctly including special characters.So,I am unable to understand problem with database or informatica.   SourceFlat File - comma ',' delimtedCode page is defined as UTF-8 encoding of Unicode Relational connectionI have tried by changing the code page while creating relational connection in Informatica to UTF-8, ISO 8859-1 Western European,  MS Windows Latin 1 etc.,didn't work. InformaticaIntegration Service and Repo code page is defined as UTF8Data movement code page of Integration server was set to UNICODE   TargetOracle databaseNLS_NCHAR_CHARACTERSET: AL16UTF16NLS_CHARACTERSET: AL32UTF8   ThanksSai

    Hi All,  I'm trying to load data from flat file to oracle databse table using Informatica power center 9.1.0 and I have some special characters in source file. Data are loaded sucessfully without any errors but these special characters are loaded different way like 1) Planner – loaded as Planner ��������2) Háiréch  loaded as Hair��������ch  While same flatfile loaded into another flatfile,data loaded correctly including special characters.So,I am unable to understand problem with database or informatica.   SourceFlat File - comma ',' delimtedCode page is defined as UTF-8 encoding of Unicode Relational connectionI have tried by changing the code page while creating relational connection in Informatica to UTF-8, ISO 8859-1 Western European,  MS Windows Latin 1 etc.,didn't work. InformaticaIntegration Service and Repo code page is defined as UTF8Data movement code page of Integration server was set to UNICODE   TargetOracle databaseNLS_NCHAR_CHARACTERSET: AL16UTF16NLS_CHARACTERSET: AL32UTF8   ThanksSai

  • I Need Sales Order Status Reports using ALV

    Hi I Need Sales Order Status Reports using ALV.

    HI!
    For alv use REUSE_ALV_GRID_DSPLAY function module.
    For the given report fetch data from the tables:
    VBAK - sales order header
    VBAP - sales order details
    VBUK - sales order header status
    VBUP - sales order items status
    Regards
    Tamá

  • Question regarding Polling data from database using DB Adapters in BPEL

    Hi,
    I have the following question regarding Polling data from database using DB Adapters in BPEL -
    If I am selecting data from multiple tables/view to ultimately generate hierarchical xml document, is there a way that I specify polling all of these tables/views. Is polling limited only to one table/view?
    Thanks
    Ravi

    Hi Ravi,
    your question seems to have been answered for the question of polling a set of tables with one as the root, and getting back a hierarchical xml representing multiple related tables.
    However you can also poll for changes to both the root table and its related tables. Not sure if this was your question or the one already answered. If the former please check out the sample
    bpel/samples/tutorials/122.DBAdapter/advanced/polling/PollingForChildUpdates
    Thanks
    Steve

  • Tables containing item status procedure used in sales documents

    Hello experts,
    I need make a query in order to know the status procedure used into items of sales documents.
    Example: In some items of sales orders I have status procedure CRMORD_I and in some items I have Z_ORDR_I. I need make a query in order to clarify it.
    What table contains the item status procedure linked to each item into sales documents ?
    Regards
    Juan

    If you want to know the status profile(CRMPRD_I or Z_ORDR_I) attached to a particular line item, you can obtain it from knowing the item category type(ex TAN). The satus profiel are attached to the item category type. The item category value is available in the field ITM_TYPE of the item structure (ET_ORDERADM_I).
    once you know the item category type you can obtain the obtain the status profile from calling the FM CRM_ORDER_ITEM_TYPE_SELECT_CB, the ES_ITEM_TYPE-USER_STAT_PROC will have the status profile value.
    Regards,
    Kiran

  • Significance of 3 flags used in almost all the tables

    Hello everyone,
    Please let me know the significance of flags used in almost all the tables in BI/BW.
    If the flags are initial, what does that signify ?
    CHCKFL : Flag: Value in check tables
    DATAFL : Flag: Value in dimension or available as attribute
    INCFL     : Flag: Value is built into all inclusion tables
    If CHCKFL is initial, means this record is not maintained in Check table, and so i wont see it if i search it in its InfoObject (That conatins this table).
    How should i retrieve such a record?
    Thanks
    Edited by: shalaxy s on Nov 19, 2009 5:44 PM

    Hi,
    These flags are a kind of "where used" flags.
    CHCKFL, DATAFL
    Re: Meaning of CHCKFL    DATAFL  INCFL   in sid table of  IO
    INCFL
    Used in inclusion tables of external hierarchies
    These fields are also initial when you delete master data of a characteristic with option not to delete related SIDs.
    Hope this helps
    Joe

  • ORA-03106: fatal two-task communication protocol error USING INFORMATICA

    Hi,
    We are testing Oracle 10203 with linux using INFORMATICA 8.1.1
    The user who run the informaica is getting the following error , after runing query against a remote database.
    READER_12_1_1> RR_4035 SQL Error [
    ORA-03106: fatal two-task communication protocol error
    (Please note that informatica is not using db links to open a connection against a remote db).
    The informatica client is installed on the same machine as the oracle database and they are using the same oracle client (e.g: 10203)
    I also set a trace in the sqlnet.ora at server side and at the client side.
    No error regarding ora-3106 was generated in the trace files.
    I also added: alter system set events '3106 trace name errorstack level 10', but nothing writthen to the trace file.
    Any suggestion ?
    Thanks.

    Error: ORA 3106
    Text: fatal two-task communication protocol error
    Cause: The communication path between Oracle and the user task has stopped.
    This is an internal error message not usually issued.
    Action: Contact customer support.
    ====================================================
    Unfortunately the error text doesn't lie, this error is difficult to catch. You may search metalink's knowledge base for possible reasons,but there are many. And, since this is a 3rd party application, I would ask INFORMATICA (not Oracle), do they certify against 10g? Sometimes simply the application is not ready for the used Oracle version.
    Werner

  • Status flag green for asyncronous scenarios

    Hi  all,
          In my practice system, I have changed the date( before 2 weeks). then all asynchronous scenarios have not been working. If i checked status flag it was showing in SXMB_MONI as green flag.
      Please help me from this problem.
    Regards
    Deviprasad.

    Green is Shceduled for Procesing.
    There are message stuck in the Queue.
    Go to the Queie Id of the message in MONi, click on it and navigate to the last entry and delete the message that is holding the queue.
    Now, deactivate / delete the queue and activate it again and restart these messages.
    Regards
    Bhavesh

  • Status flags in TOC not setting

    Hi,
    I just recently created a project with a table of contents. There are a number of click boxes and 'continue' buttons that pause the project. Sometimes, even though the project has moved on from the slide, the status flag is not set in the TOC. Sometimes it does work though. This is encountered by all users with this project.
    Suggestions?

    Hi there
    I think you may be encountering the following situation.
    If you have a Click Box or Button object that is left at the default action of "Continue", the playhead continues to advance and it reaches the slide end. Once it reaches the slide end, the flag is set to indicate the slide has completed.
    If you change the default action from Continue to "Go to the next slide" or perhaps "Jump to slide", the playhead never really reaches the end of the slide. So Captivate doesn't consider the slide to have been "visited".
    Thoughts here are to possibly stage the Buttons or Click boxes so they pause at the actual end of the slide? Then Captivate may consider the slide to have been viewed and set the flag accordingly. Perhaps try that.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Using Informatica/ETL as target system

    Hello,
    We have a scenario which we would like to use Informatica/ETL as target system.
    Is there a connection option in SAP SLT to allow connection directly to Informatica/ETL?
    Thanks,
    Ky Can

    In general SLT can be connected to all SAP NW supported DBs.
      MSFT  SQL Server Enterprise
      Edition
      Oracle Enterprise Edition
      IBM DB2 LUW/ UDB (DB6)
      IBM DB/2 zSeries
      IBM DB2 iSeries (former AS/400)
      IBM Informix
      SAP MaxDB
      Sybase ASE
      SAP HANA
    Anything else is not covered. I am not sure which DB Informatica is using.
    In addition SLT has an integration with Data Services to get leverage the advantages of both worlds, so if Data Services is able to write to Informatica, we can put SLT for delta and real-time and DS to post to Informatica.
    Best,
    Tobias

Maybe you are looking for

  • Assigning value to a variable.

    i have one doubt. we can assign value to a variable either in declaration section or in exectuion section. so please explain when and wherer should we assign value to a variable. thank you very much.

  • Strange error in MIRO if sales invoice is priorly posted.

    Hello, Our scenario is, we create a Sale Order which creates a auto PR then with reference to this PR we are creating a PO then GR of this PO. Then, outbound delivery & then invoice which released to accounting. Then MIRO with reference to PO If we p

  • Overlapped I/O operation is in progress for MS SQL Server

    I have read all the threads and the logs. I have ended up with all versions of SQL Servers upto 2014. However, I get the same error. The best part is Microsoft support has not come up with a single simple answer to fix it. It appears like a wild goos

  • GRC53 Rule Set Migrated into GRC10

    Gurus, has anyone encountered the following situation. We migrated our 53 rule set into GRC 10 using the Migration Tool. On the surface all of the rule objects seem to move across as they should. We then began to run our risk reports. We noticed that

  • SQL Server 2014 installation using command line fails to remove the extraction folder when complete

    We need to install SQL Server 2014 Express in /QS mode (shows progress through the UI, but does not accept any input or show any error messages) as my setup-Prerequisite. I passed my installation parameters to SQLEXPRWT_x64_ENU.exe, when I ran my app