Modify an existing approval transaction setup

Hello All,
I am currently setting up a customized approval process for one of the client. I am trying to configure it reading through PBooks. My question is that when I complete a cycle of transaction, I am not able to modify anything the transaction setup. The page becomes read only. Please could anyone let me know why does this happen and how to make it editable. I tried to find in Pbooks, but cudnt get any information. Any help would be appreciated. Thanks

Thanks for the reply.
Yes, as you mentioned correctly, there are few transactions which are pending to be approved. But these are orphan transactions (for a particular process id), I mean the status shows that they are "In Approval process" but they dont have any approver. I tried to cancel or deny them via Self Service Transaction, but it seems one can't do that. Now unless these transactions are  cancelled or denied I am not able to edit the Approval process setup.
Can you please let me know how can I cancel or deny these transactions which are orphan. Unfortunately, we dont have access to update anything from backend so if there is any page where we can do it from front end then pls let me know. Else we have no option but to create a new workflow with a higher effective date.
Thanks in advance.

Similar Messages

  • I'm trying to have existing Exchange accounts setup on my new iMac and can't get it to work.

    I have existing Exchange accounts setup on my iPhone and iPad to access my work email.  I'm trying to do the same on my new iMac and can't get it to work.  I have it setup the same as my iPad and it asks me for my password over and over...any suggestions?
    <Re-Titled By Host>

    Hi mwatts18,
    As a preliminary troubleshooting step, you should reference the information in the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    I would especially suggest that you delete the account and re-add it, making sure that you are entering the correct password when you add the account. Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • PURCHASING DOCUMENT APPROVAL MANAGER SETUP 방법

    제품 : MFG_PO
    작성날짜 : 2003-11-18
    PURCHASING DOCUMENT APPROVAL MANAGER SETUP 방법
    =============================================
    PURPOSE
    PO approval을 하기 위한 PO document approval manager setup 방법을
    익힌다.
    Explanation
    System Administrator의 Administer Concurrent Manager form을 이용하여
    PO Document Approval Manager를 setup 한다.
    -.Responsibility: System Administrator
    Navigation: Concurrent -> Manager -> Administer
    -.PO Document Approval Manager는 Concurrent Manager list에 나타나야만
    한다. 만약 그렇지 않으면 LOV를 이용하여 PO Document Approval Manager를
    이 List 위에 추가 해야 한다.
    -.Processes를 추가하는데 이것은 Target processes는 database server + 1
    보다 크거나 같아야 한다.
    ex) Target Processes 갯수 = (Number of Processors on Server) + 1
    -.Status column에서 manager is not running이라는 내용의 상태를 볼 수
    있어야 한다.
    -.등록한 PO Document Approval Manager start 하기
    o.PO Document Approval Manager를 포함하는 Line을 선택
    o.Activate button을 click
    o.PO Document Approval Manager가 start 되어야 함
    -.PO Document Approval Manager reactivate(bounce) 하기
    o.PO Document Approval Manager를 포함하는 Line을 선택
    o.Deactivate button을 click
    o.Form을 닫고 다시 open
    o.PO Document Approval Manager를 포함하는 Line을 선택
    o.Activate button을 click
    NOTE: 이 process가 실행되려면 internal manager가 반드시 running 중이어야
    한다.만약 internal manager가 running 중이 않니면 DBA나 System
    admin은 internal manager를 제일 먼저 restart 해야 한다.
    Example
    Reference Documents
    -------------------

    Thanks Andy,
    I have googled activating workflow approvals in SP2013. However the sites I have read, refer to activating a feature that is not there on my server. So not sure how I should be doing this.
    I have spent days looking into this. Is there an article somewhere that explains how to do this.
    I will read up on people picker, it looks a little more complicated than I think setting up a document approval should be.
    I only want the approver to be 1 of about 10 people. Is there any way just to set a simple list to pick the approver from?

  • Modifying an existing form in SAP B1

    Hi everyone,
                      Is there any way to modify an existing form in SAP B1? If so can any one describe the complete procedure of doing that?Will highly appreciate it.

    Hi,
    Its more advisable to do it in the Menu Event rather than the Form_Load event and its got to be done in the Before_Action = False.
    In Menu Event,
    paste this...
    If pVal.BeforeAction = False Then
    Dim objNewItem As SAPbouiCOM.Item
            objItem = objForm.Items.Item("51")
            objNewItem = objForm.Items.Add("cbSQ", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
            objNewItem.Left = objItem.Left + objItem.Width + 10
            objNewItem.Top = objItem.Top
            objNewItem.Width = objItem.Width
            objNewItem.Height = objItem.Height
            objNewItem.FromPane = "5"
            objNewItem.ToPane = "6"
            objCheckBox = objForm.Items.Item("cbSQ").Specific
            objCheckBox.Caption = "Sales Quotation"
            objNewItem.Visible = False
            objCheckBox = objForm.Items.Item("cbSQ").Specific
            objCheckBox.DataBind.SetBound(True, "", "01")
    Endif
    The above is a small snippet for the addition of a checkbox.
    Hope this helps.
    Satish.

  • VBscript to modify an existing shortcut.

    I need help with a vbscript, that will modify an existing shortcut in the All Users profile Desktop, and the shortcut in the Program files.  It needs to do two things, change the icon and change the name.  The script below allows me to change the
    icon, but I am having issue getting the Name to change, as it won't, and my script does not error out, so the script is completing. 
    Any Suggestions?
    Option Explicit
    'On Error Resume Next
    '- Set Global Objects and Variables
    'Name Variables
    Dim WshShell
    Dim objShortcut
    Dim strDesktopPath
    'Set Objects
    Set wshShell = CreateObject ("Wscript.Shell")
    '- Main Script
    strDesktopPath = WshShell.SpecialFolders("AllUsersDesktop")
    Set objShortcut = WshShell.CreateShortcut(strDesktopPath & "\Logon.lnk")
    objShortcut.IconLocation = "C:\Path\Icon.ico, 0"
    objShortcut.Name = "NewLogon.lnk"
    objShortcut.Save
    Wscript.quit

    Use the FileSystemObject object to get the file and change the Name property to rename the file.
    -- Bill Stewart [Bill_Stewart]

  • DBMS_BLOB: ORA-22297: warning: Open LOBs exist at transaction commit time

    Hello
    I've written this to get to understand BLOBS. I had intended it to take a VARCHAR2 string, convert it to RAW and write the contents to a blob.
    However, DBMS_LOB.Write()) returns the error message "ORA-22297: warning: Open LOBs exist at transaction commit time". Can somebody put me right? Just why is this being returned?
    Thanks in advance, Aidan
    INSERT INTO BINARY (PK ,
    BLOBDATA )
    VALUES (1 ,
    Empty_Blob());                         
    /* Lock the row. */
    SELECT BLOBDATADATA INTO V_Blob FROM BINARY WHERE PK = 1 FOR UPDATE;                                             
    /* Open the Lob. */
    DBMS_LOB.OPEN (V_Blob, DBMS_LOB.LOB_READWRITE);
    DBMS_LOB.WRITE (V_Blob ,
    V_Length ,
         V_Offset ,
    UTL_RAW.CAST_TO_RAW (p_Data));
    DBMS_LOB.CLOSE (V_Blob);

    I get the abocve error when running using the GUI
    when running from command prompt i get the following
    begin
       -- Remove Application
    wwv_flow_api.remove_flow(nvl(wwv_flow_application_install.get_application_id,99000));
    end;
    ORA-20001: Package variable g_security_group_id must be set.
    ORA-06512: at "APEX_040200.WWV_FLOW_API", line 998
    ORA-06512: at "APEX_040200.WWV_FLOW_API", line 1569
    ORA-06512: at line 5
    I am assuming there are some permissions problems
    I have DBA role in Database
    We are on databasae > 11 (11.0.2 i think)
    My database DBA installed 4.2.2 but does know APEX real well he installed becasue he has SYS password which I am not privy to.
    I was able to install Pacakaged appliaction.
    Kind of Lost from Here.......
    I am assuming i have a permissions error
    I have DBA role in Database

  • IRecruitment Vacancy Approval is not found in Approval Process Setup

    hi
    my ebs is 12.1.1
    After Setting up AME for iRecruitment, i get problems as follows:
    1: Approvals Management Business Analyst -->Business Analyst Dashboard
    i find 'iRecruitment Vacancy Approval' is not found in Approval Process Setup.
    2:when i click Approvals Management Administrator respsonbility. it get errors:
    java.lang.NullPointerException
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.setMetaDataProperties(OAAdvancedTableHelper.java:391)
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.createWebBean(OAAdvancedTableHelper.java:183)
    please help me.
    thanks.

    2:when i click Approvals Management Administrator respsonbility. it get errors:
    java.lang.NullPointerException
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.setMetaDataProperties(OAAdvancedTableHelper.java:391)
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.createWebBean(OAAdvancedTableHelper.java:183)Can you find any details about the error in Apache log files (error_log* and access_log*)?
    Please see if (Java.Lang.Indexoutofboundsexception: Index:0 Size:0 When Adding Another Skill [ID 1361546.1]) helps.
    Also, make sure you have the "Approvals Management %" role added to the account you use -- After AME.B Responsibilities Give > There Are No Functions Available For This Responsibility [ID 340969.1]
    Thanks,
    Hussein

  • To modify the existing form of custom invoice into  Proforma Invoice form

    We need to modify thye existing custom invoice form in to proforma invoice form by inputting the below details
    1) Suppling plant details
    2) LST/CST of receiving plant
    3) LST/CST of delivering plant
    Appreciated if any one can kindly let me know the logic and tables for the above scenarios

    We need to modify thye existing custom invoice form in to proforma invoice form by inputting the below details
    1) Suppling plant details
    This details u will get from T001W and adress from ADRC.
    2) LST/CST of receiving plant
    This details u will get from J1ID plant excise details J_1IMOCOMP or if u have created the plant as customer then u will get the same in customer excise details.J_1IMOCUST
    3) LST/CST of delivering plant
    This details u will get from J1ID plant excise details J_1IMOCOMP or if u have created the plant as customer then u will get the same in customer excise details.J_1IMOCUST
    Appreciated if any one can kindly let me know the logic and tables for the above scenarios

  • HTTP destination IED_100 does not exist (system , transaction SM59)

    Hi guys,
    When I try to send a xml file to WAS using ABAP Proxy I receive this error message: "HTTP destination IED_100 does not exist (system , transaction SM59)".
    I did a test connection in sm59 for http connections/R/3 systems and the messagem bellow is ICM_HTTP_CONNECTION_FAILDED.
    What could be wrong?
    Thanks in advance,
    Ricardo

    Hi Sridhar,
    I’m trying connecting XI to WAS 6.40 using ABAP Proxy.
    Now I receive this error message: “<SAP:Code area="INTERNAL">SYSTEM_NOT_CONFIGURED_AS_XMB</SAP:Code>
    <SAP:Stack>System not configured as Integration Engine</SAP:Stack>
    I have defined my business system IED_100 (WAS 6.40) like application system and the related integration server is XI. It’s correct?
    When I check the component monitoring > Integration Engines > Proxy runtime IED_100, this message is displayed:
    Unable to log on to system IED_100 in language en with user XIRWBUSER. But in WAS system (IED_100) I don’t have a user XIRWBUSER!!! I need to create it?
    Tell me if I’m correct: I don’t need any RFC adapter; I’m only need an XI adapter (http) to send the xml file to ABAP proxy (IED_100) and on IED_100 I need to activate XI message format service in SICF and create a RFC connection in SM59 to call XI integration server. This is already done!
    In sm59 I continue with ICM_HTTP_CONNECTION_FAILED…
    Thanks in advance,
    Ricardo.

  • Is there any method or function to update/modify an existing trip data?

    Hey, ABAP  gurus,
    Is there any method or function to update/modify an existing trip (PR05) receipts data and cost distribution data?
    Thanks in advance!
    Fisher

    Hi Fisher,
    Please try HRTRV_IF_MODIFY_TRIP.
    Regards,
    Dilek

  • SSAS Source - Column selection lost when modifying an existing "Add Item" step

    When developing a Power Query query on an SSAS source, I often need to edit an existing "add items" step in order to add a few columns that I had initially missed out. To do this, I point to the step previously created and click on the small gear
    icon to edit it.
    However, when doing so, the edit dialogue is not initialised with all the columns that I had previously selected. Which means that if I am not careful and do not scrupulously recheck every column that I need, the modification will destroy what I had created
    before.
    Inserting another step rather than modifying an existing one might be a workaround,  but I would rather keep the number of steps to the minimum. Also, if there is an edit button, one should be able to rely on it.
    Has anyone experienced the same issue?
    PQ Version: 2.18.3874.242 - Excel 2013 32bits.

    This is a known issue that will be resolved in an upcoming release.
    A work-around for now when using the UI builder to edit a selection is to expand dimensions that had an attribute added from it before dismissing the dialog.

  • With out loosing view grant access, i can modify the existing vi

    I am using oracle 11g.
    I would like to add few more where condition in my oracle view ,Which has grant permission by different user.
    There is anyway with out loosing view grant access, i can modify the existing view.
    Existing view
    create view abc
    as
    select * from tab1
    where rownum =1 .
    Grant select on abc to read_ro;
    Modifying view
    There is anyway with out loosing view grant access, i can modify the existing view?
    add few more where condition in my oracle view ,Which has grant permission by different user
    please advise.

    create or replace view...
    SQL>  create or replace view y as select object_name from user_objects;
    View created.
    SQL> grant select on y to ads;
    Grant succeeded.
    SQL> select * from user_tab_privs where table_name='Y';
    GRANTEE                        OWNER
    TABLE_NAME                     GRANTOR
    PRIVILEGE                                GRA HIE
    ADS                            BONTRAB1
    Y                              BONTRAB1
    SELECT                                   NO  NO
    SQL> create or replace view y as select object_name,created from user_objects;
    View created.
    SQL>  select * from user_tab_privs where table_name='Y';
    GRANTEE                        OWNER
    TABLE_NAME                     GRANTOR
    PRIVILEGE                                GRA HIE
    ADS                            BONTRAB1
    Y                              BONTRAB1
    SELECT                                   NO  NO
    SQL> desc y
    Name                                      Null?    Type
    OBJECT_NAME                                        VARCHAR2(128)
    CREATED                                            DATE

  • Modify an existing LSMW to include a Z field

    I need to modify an existing LSMW to include a Z field added to material
    sales data. The LSMW uses standard program RMDATIND to upload. I can
    modify (append) the structure BMMH1 to include this field. However how
    to ensure that this field is processed by the standard program and is
    updated in MVKE table?
    Thanks in Advance....

    Hi,
    If I were doing a custom field in the material master I would load thru the
    idoc MATMAS and extend it to include my custom field, populate that field
    thru a user exit in the IDoc processing function then set up my material
    master data load in the LSMW to use the IDoc instead of the custom program.
    For me this would be the easiest way and you don't have to fiddle with the
    standard Direct Input program.
    Reward if found helpfull,
    Cheers,
    Chaitanya.

  • Updating existing AR transactions

    Hello, is there an Oracle suggested API/interface that can update existing AR transactions? Most preferably in R12.
    Thanks!

    All APIs are documented at https://etrm.oracle.com - this requires a valid MOS login account.
    In addition, APIs that interface with external systems are documented in the "Integration Repository" responsibility of your R12 instance.
    More information may be available in the Receivables guides for your release at http://www.oracle.com/technology/documentation/applications.html
    HTH
    Srini

  • Config tool fails when trying to modify an existing Oracle EPM instance

    I have a single server windows 2008 server environment with Foundation, prlanning, essbase , raframework, and EAL. I also have ODI installed in the same server. I was trying to add Strategic finance to the same envirnment . I downloaded the required files according to oracle install doc.
    The installation was successful without any errors.
    Problems started when I tried to configure it. AsI opened the config tool and chose
    Modify an existing Oracle EPM instance ...
    the config tool gave an error that
    An unexpected error occurred and the application will have to be shut down . Review the error log , correct error condition and re-launch the application .
    Kindly share your thoughts on this issue
    Edited by: Saurav Sarkar on Apr 5, 2012 12:55 PM

    Did you examine the configtool log to see if it has more information on why the configurator shutdown, if you not sure where to find the logs have a look at http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_troubleshooting_11121/ch03s02s05.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for