Hi GIRU,How to check workflow status in a database

Hi GURU,
I am a DBA one user asked me to chke the workflow status for om order line in database.Any body help me how to check the status of workflow om order line in database.

See Oracle Database FAQs
</br>

Similar Messages

  • How to check lock status of field in current document?

    Hi,
    How to check the status of field in current document(master agreement), that is whether its locked or not.
    I locked "Publish to Supplier" checkbox after MA is saved first time. Now, I want to check the status whether this field is locked or not in the same document.
    IsLockOwner( ) is not returning the correct value. Its not giving the current document field lock status.
    Is there any way to get current document field status?
    Thanks,
    Saloni

    Hi,
    If I understand correctly, your requirement is to get the value of this field "Publish to Supplier on". It can be achieved by writing the below:
    isVendorVisible = doc.getExtensionField("VENDOR_VISIBLE").get();
    Meaning, if the box is checked, it will return a value = true and if not then false.
    Hope this helps,
    Regards,
    Vikram Shukla

  • Unable to book order in oracle quoting. : APP-236113: Order is not eligible for booking. Check workflow status of this order

    Dear All,
    I am trying to book an order from oracle quoting. I am getting the following error and unable to proceed.
    Please help me.
    APP-236113: Order is not eligible for booking. Check workflow status of this order.
    Thanks in advance.
    Regards,
    Gautam.

    Gautam,
    Check the profile option i.e. is to set the default order status while it is created from Quote.
    Regards,
    F. Afzal Hussain.

  • Order is not eligible for booking. check workflow status for this order oracle in r12

    hiii
    order is not eligible for booking. check workflow status for this order this type error occurs when i m going to book order
    thanks

    Hi,
    Certain points need to check :-
    1. Check the item is assigned to that org where you are creating order.
    2. Check the item attributes and warehouse default if any.
    Could you please show the workflow log or screenshots.
    Regards,
    Syed Hasan

  • How to check import status in Windows??

    Hi,
    Import is running in my Wndows box.The log file is not updating from since long time. How to check the status of the import job??FYI its oracle 10g.
    And i checked from databse that.
    FYI
    ===
    Select * from DBA_DATAPUMP_SESSIONS;
    no rows selected.
    select * from DBA_JOBS_RUNNING;
    no rows selected
    select username,machine,module,sid,state,event,seq#,seconds_in_wait from v$session where type<>'IMPORT' and username='AUTOTIME';
    no rows selected
    Plz let me know.

    Hi
    use the below script two times and check the output.
    select
    substr(sql_text,instr(sql_text,'into "'),30) table_name,
    rows_processed, round((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60,1) minutes,
    trunc(rows_processed/((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60)) rows_per_minute
    from
    sys.v_$sqlarea
    where
    sql_text like 'insert %into "%' and command_type = 2 and open_versions > 0;
    KK

  • How to check system status from Windows command line?

    Does anyone has an idea how to check system status from Windows command line? In UNIX we use startsap check, unfortunately I didn't find an appropriate command provided by SAP.
    The only idea we have is to use
    tasklist /FI "Username eq SAPService<SID>" | find "disp+work"
    which isn't as nice as startsap check.

    Hi,
    In windows you can use the command
    go to profile directory in command prompt and the give the following command to check the status of the instance.
    sapstart check pf=START_DVEBMGS<nr>_<hostname>
    that means you need to mention start profile or instance profile. So that it will say whether the instance is running or not.
    If you want any other information please reply back to me.
    Thanks,
    Chaitanya.

  • How to check the performance of the database instance in oracle apps 11i

    hii everybody,
    i want to know,how to check the performance of the database instance using oracle applications 11i.your help highly appreciated,thanks.

    Pl do not post duplicates - how to check the performance of the server in oracle applications 11i

  • How to check the status of file downloading?

    I have to download the selected file by using "file download" dialogue box.
    This "File Download" dialogue box provides options for "Open", "Save", "Cancel" or "More Info". It is similar to usual "File Downloading".
    And i am required to do further processing only if , file is "Open" or "Save".
    So how can i check the status of the option selected by the user?
    Following is the code snippet:
    res.setContentType("text/plain");
    res.addHeader("Content-Disposition", "attachment; filename=" +value);
    try
         uFile= new File(fPath);
         fSize=(int)uFile.length();
         fis = new FileInputStream(uFile);
         c=-1;
         while ((c = fis.read()) != -1)
              out.print((char)c);             
         fis.close();
         out.flush();
         out=null;
    catch(Exception e)
           out.println("Exception : " +e);
    } I tried to generate a flag and inside a while loop, and then checking the status of that flag outside of loop.
    But it doesn't work.
    It reflects the value of flag even if user selects "Cancel" Option.
    So, if there is any another way of checking the option selected by user from "Open","Save" or" Cancel", then please reply me.
    Thanks in advance.

    Is there any solution for this or any web link for this...?
    Thanks in advance,
    Waiting for reply

  • How to check the status of an IDoc in the Target system

    Hi Experts,
    we are using a self-made program to send Material and BOMs from Client A to Client B into the same ERP System.
    How can I check the status of an IDoc in the Target Client B (like BD87 - ALE Monitor) ?
    If you have some examples or Function, please give me the information.
    Rewards if helpful.
    Regards,
    David

    Hi David
    As mentioned in the earlier reply you can check your status with tcodes:-BD87,WE02,WE05.What i guess from your querry is the staus of your idoc whether posted or not in target client B.Check in the target client for the message type which you are using (since its an program that means you must be using an customised idoc type or standard) .You might have maintained Basic type tcode:-WE30.Give in your messagetype,Basictype,Created at and executed using tcode :- BD87.The prerequisites are you need to create an Partner Profile(WE20) .For this you need to create to provide in your message type and Process code(we41,we42,we57).If you have to create an process code for customised one(se37) .You need to actuivate the idoc inbound processing .If you are using a file in your file make it sure the port is being maintained for the same to chek for unicode format in tcode :-WE21 (check or uncheck).
                    For standard BOM i recon you are using message type :-BOMMAT  and Processing code as:-BOMM.Its always advisible that instead of using an whole abap program you need to have an ETL tool that would take care of the extraction of data provided your client do have existing Legacy system in its place since it would be much faster and easier.
    Regards
    Somnath

  • How to set workflow status when workflow manually cancelled?

    Hi All,
    When i manually cancelled designer workflow, then status comes as 'cancelled'. Instead i need to set different status. How to  achieve this? 
    Thanks in advance!

    You can use this action
    Set Workflow Status
    This action is initially displayed in a workflow step as Set workflow status to Canceled. Use this action to set the status of the workflow. The default options are Canceled, Approved, and Rejected.
    You can enter a new status value in the dropdown in the action. Once you enter a status value, the entry is automatically added to the dropdown list. For example, you can enter a status that is more user-friendly and informative than Completed or Canceled,
    such as Expense Report Approved.
     NOTES 
    You cannot rename or delete a status value once it has been created. However, you do not have to use it.
    A custom status is applicable to the current workflow only, and cannot be used in another workflow.
    A workflow cannot use custom status values that you define in the action if the action is used inside an impersonation step.
    If the Set Workflow Status action is the last step in your workflow where you have also used a custom value, you can see your custom value in the Status column in
    the list upon workflow pausing or completion.
    Following is an example of what the action might look like in a workflow step,
    Set workflow status to Specification status: Ready for Design Review
    http://office.microsoft.com/en-in/sharepoint-designer-help/workflow-actions-in-sharepoint-designer-2010-a-quick-reference-guide-HA010376961.aspx
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

  • How to check on status of a ticket?

    I have a ticket concerning coverage problems at my home and was given a ticket number and was told that I would be able to check the status of the ticket on myVerizon.  So far I have not found out how to do that via the verisonwireless web site. If someone knows how, I would sure appreciate the instructions.
    Thanks,
    Jim

        Hi Magaliajim,
    Oh my! We can locate the status of the ticket here. When was ticket submitted? Did you receive a notification via email or text that your ticket was completed or resolved?
    Thanks,
    PamelaF_VZW
    Tweet us @vzwsupport

  • How to check the status of Oracle DB?

    I just installed the Oracle Express 10 on LINUX machine. I check the status with
    /ect/init.d/oracle-xe status
    and get followings. How can I tell if the Oracle is running or not?
    [root@s003ap03n-test init.d]# ./oracle-xe status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 19-JUL-2010 10:18:45
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 19-JUL-2010 09:58:46
    Uptime 0 days 0 hr. 19 min. 58 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=s003ap03n-test.proactiv.de)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=7070))(Presentation=HTTP)(Session=RAW))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    Service "XEXDB" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "XE", status READY, has 1 handler(s) for this service...
    The command completed successfully

    Connect with SYS or SYSDBA.
    SELECT instance_name, status, host_name
    FROM v$instance;
    Regards
    Asif Kabir
    Total Questions: *6 (6 unresolved)*
    -- Mark your helpful post as correct/helpful and close all the answered threads.

  • How to check FNDSM Status

    Hi,
    how to check the FNDSMListenerStatus from MT, i know we can use the APPS_sid is the MT listener, is there any other way to check the FNDSM Listener status,
    Thanks

    Hi,
    From the OS, you can use tnsping <FNDSM_*> to check the status of th listener.
    From the database, run the following query and make sure it returns something:
    SQL> select CONCURRENT_QUEUE_NAME
    from FND_CONCURRENT_QUEUES
    where CONCURRENT_QUEUE_NAME like 'FNDSM%';You may also review:
    Note: 735148.1 - How to Troubleshoot Concurrent Manager Start Up Issue Related to Service Manager
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=735148.1
    Regards,
    Hussein

  • How Adobe checks student status?

    I just bought Adobe Creative Cloud for students and my question is how Adobe checks my student status? I didn't receive any email on my .edu account or anything. Do they check it right away during sign up process or they check it after some time? How does it work?

    Hi Kacperel ,
    We collects the academic information as a separate step during the purchase process. However, We performs a spot check on these customers later on. During the spot check process, the education team pulls up the details of a percentage of these customers and validate their eligibility using standard guidelines. If the education team can't validate the customer’s eligibility, then they reach out to the customer requesting further information. If the customer doesn't provide the eligibility documents within 14 days, then their subscription is canceled.
    You can keep using the CC Edu Membership.
    Let me know if you need more info.
    Thanks!
    Eshant

  • How to check the status of instance in my Process

    Hi,
    I have a requirement where I want to check for the status of an instance and if completes in error then send an email. I've been told that there are Bpel tables where I can check the status and there are also Bpel API's I can use.
    Can you please let me know what is the best way to do this and if so, some guidelines on how do I design this...I'm fairly new to BPEL and would really appreciate your help
    Thanks
    -Prapoorna

    Hi
    First let me explain how I understand your requirement.
    There is a bpel instance. This can either complete successfully or with error (basically some fault has occurred).
    If the process completes with error a email should be sent.
    Well this is how I would design this.
    Put the code that might succeed or fault in a scope. Add catch or catchAll block in the faultHandler of the scope.
    Write the email stuff in the faultHandler.
    Just in case you are still interested you can find the instance state Bpel table details in the below link.
    http://oraclebpelindepth.blogspot.com/2008/08/bpel-process-states.html
    If you are willing to explore the Java API stuff you can find some useful stuff in here.
    http://oraclebpelindepth.blogspot.com/search/label/Java%20API
    This will tell you how to setup context, include which jars and a simple java thing to see some thing working.
    Now regarding state, you can use locator.listInstances(WhereCondition wc) to get instances list in IInstanceHandle[].
    In the IInstanceHandle use the method getState() to get the state of the instance.
    Every Little Helps
    Kalidass Mookkaiah
    http://oraclebpelindepth.blogspot.com/

Maybe you are looking for

  • I cant see the graph in discoverer viewer whith was created in the desktop

    Hi,      I need your help!! I have a problem to see a graph in Discoverer viewer. I will detail you the steps that I follow; It was a difficult calculate report to results by Discoverer so, I create a view in the data base which show 3 field, Periodo

  • HT204291 Xfinity over Apple TV?

    Can't mirror xfinity movie from iPad to Apple TV. Can this be done?  

  • IBook recognizes Siemens S55 but not sync'ing

    I bought a generic BT dongle that says that is Mac-compatible. The thing is that it can recognize devices like my Siemens S55 and a SE Z600, but when it is pairing up, it just never end setting up the phone. Any ideas? iBook 12 G4 800Mhz   Mac OS X (

  • Can I stack two reward certificates?

    I want to pick up a new mouse at bestbuy and I was wondering. I want to price match the Logitech G502 from Amazon and then I would like to know if I would be able to use two of my reward certificates? One is $15 and the other is $5. Would the bestbuy

  • Config of apache agent

    Hi, I installed the agent 2.1 for apache 1.3.29. I did not create any policies or agents in the amconsole (I don't know if I have to in order to get the agent working). The problem I have is that I am not redirected to the login page if I am not auth