Hiding button in notification Page.

Hi All,
I have to hide the 'Approve' button from Notification Page. Is it possible to do it?
Pl. help.
Thanks in Advance.
Regards
Mano

Hi,
That doesn't make sense as a requirement.
You are sending a notification to someone, asking them to either approve or reject the notification, but you want to suppress the "Approve" button, so will only be giving them the option to reject???
If that's what you want to achieve, then create a custom lookup which only has a value of "Reject", and use that as the response value.
HTH,
Matt
WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
Have you read the blog at http://www.workflowfaq.com/blog ?
WorkflowFAQ support forum: http://forum.workflowfaq.com

Similar Messages

  • Add a custom button on notification page and open a oaf page after button

    Hi All,
    My Requirement is add a custom button on notification page and after button click with take some parameter from notification page like supplier_id and org_id then open a new oaf page and show supplier credit and debit balance but problem is that button is only enable to a ap invoices notification not for other type of notification.
    how to take approach/action i don't know.
    it is possible through OAF personalization/customization or it is part of work flow customization.
    Navigation path - payable->worklist->open notification and Type of notification also there
    Type should be matched with AP_Invoices type notification then custom button enable.
    Please Let me know is it possible or not. If possible how to achieve this. ...................................it's argent...plz help me
    Edited by: 815572 on Nov 25, 2010 1:15 AM

    Hi Irk,
    My notification came in given below format (in table) but my custom button only enable for Contract Approval Type not for others..........i hv attach a button on notification page (subject-Contract 21969-R17......)
    From Type Subject Sent
    Taylor, Phillip Contract Approval Contract 21969 - R17-AUG-07 06:19:27 has been approved by Taylor, Phillip 22-Aug-2007
    Taylor, Phillip OKS Contract Process Contract 21975 - R17-AUG-07 06:22:18 for AT&T Universal Card (52,500.00 USD) has been published online 19-Aug-2007
    Taylor, Phillip OKS Contract Process Contract 21969 - R17-AUG-07 06:19:27 for AT&T Universal Card (15,000.00 USD) has been published online 19-Aug-2007
    If I just put a button SHOW BALANCE just like notification button APPROVE, REJECT, REASSIGN but this button shows all types of notification and my req. is this button show only for Contract Approval type notification. how to handled this issuesss ?
    if extend the co of notification page then how to handle TYPE value from worklist page ....please write proper code if u hv any idea...........
    Thanks,

  • I want to Hide ok buttom and reassign button in notification page

    HI
    How to Hide ok button and reassign button in notification page using oracle workflow builder
    Thanks and regards
    ch sai vikram

    I do not believe you can achieve this using WF Builder - you will instead need to use OAF Personalization. See these MOS Docs for examples
    727315.1 - How To Do the Personalization on the Salary Page (Hide CORRECT Button)
    758795.1 - How To Hide The Add Transaction List, Print And Recalculate Buttons Through Personalization?
    HTH
    Srini

  • How to remove forward button from notification Page?

    Hi All,
    I would like to remove (disable ) forward button from Req approval work flow ? How can i achive this functionality ?
    I will be appriciate for help.
    Thanks
    pat

    Well, I'm guessing that you are using PO workflows, and using one of the standard lookups? Without having any details of what you are using, trying to second guess the answer is somewhat difficult.
    If it's the case that you are talking about the PO workflows, then the buttons are standard functionality based on the lookup type that is used as the notification response. Trying to suppress this doesn't actually make much sense - you are sending someone a notification, asking them to take action, and then not giving them any ability to respond to the notification.
    You would need to customize / personalize the notification page if you want to remove the buttons. The question then is - how will the process continue if you are removing the ability to respond to the notification?
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How to remove sender name in field "From" in Notification page

    I would like to remove name ( LIUNI, ANTONIO_ ) (bold text and underline) from message and field "From" in notification page.
    I have 2 problems below:
    1.) This message "_*LIUNI, ANTONIO*_ has completed their appraisal of KERINS, ANNE MARY"
    Should change to "A multirater has completed their appraisal of KERINS, ANNE MARY"
    2.) Field From, must be blank: From: LIUNI, ANTONIO_ -> From: <Blank>
    It call standard workflow HRSSA.
    Please provide me coding in controller to set item attribute values in field "From" to blank and remove sender name in message+
    Below is the example notification:
    This notification does not require a response.
    LIUNI, ANTONIO_ has completed their appraisal of KERINS, ANNE MARY.
    Personalize "Notification Details Function"
    Personalize "Notification Details Attributes"
    Personalize Table Layout: (leftTable)
    From LIUNI, ANTONIO_
    To BILLOUD, CLAIRE
    Sent 26-Apr-2010 09:53:06
    ID 66666475
    Personalize Stack Layout: (rightStack)
    Personalize Table Layout: (rightTable)
    Personalize Stack Layout
    Personalize Stack Layout
    Personalize "Summary"
    Edited by: jamras on Apr 26, 2010 1:34 AM

    Thank you for your reply.
    Do you mean region in notification page?
    Below is region in notification page.
    Field From is in Region: /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr.leftTable
    Document Name /oracle/apps/fnd/wf/worklist/webui/NtfDetailsAttr
    Message is in Region: Notification Details Function
    Document Name /oracle/apps/fnd/wf/worklist/webui/NotifDetailsRG
    Now I'm working on extension controller in the page below (I'm submit button in this page).
    /oracle/apps/per/selfservice/appraisals/webui/PartCompletePG
    My controller -> fao.oracle.apps.per.selfservice.appraisals.webui.FaoPartCompleteCO
    I put the following coding in this controller. It removed value in workflow attribute, but it didn't remove value from notification page.
    SSHRParams sshrparams = new SSHRParams(oapagecontext.getRootApplicationModule());
    String wfItemType = sshrparams.getItemType();
    String wfItemKey = sshrparams.getItemKey();
    // String wfProcess = "HR_APPRAISAL_DETAILS_JSP_PRC"; ///sshrparams.getProcesName().toString();
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_USER_ATTR", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_USERNAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_DISPLAY_NAME", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "FORWARD_FROM_PERSON_ID", "");
    wfClass.setItemAttrText(oapagecontext, wfItemType, wfItemKey,
    "HR_APPRAISAL_FROM_NAME_ATTR", "");
    Thank you for your help.

  • Buttons hiding buttons on indesign

    Hi hope you can help. I'm using indesign CS5 and have a problem with pop up buttons being hidden by other buttons. The page design is a 7 column grid with around 10 buttons underneath each column that act as hyperlinks and trigger other show/hide buttons that give a brief summary of the info at the destination of the hyperlink. So in total there is about 140 buttons - 70 shown all the time and 70 pop ups. To help me manage the design I set up the pop up buttons in 7 separate layers as they overlay the buttons in the 7 column grid. When I export to PDF the pop up buttons appear but are partially hidden by the other buttons. Strangely this is only happening for a proportion with some appearing as they should and in the button tool bar review option they all appear fine. It also worked fine on initial exports and the problem only started when I rearranged the tab order.
    Any any help would be much appreciated!
    James

    Hello,
    I do not think that the BASIS can help you in deleting/hiding buttons from the UI. Generally, the buttons are stored in the GT_BUTTON/GT_BUTTONS attribute of the overview view/viewset controller. In some cases it may be hard coded inside the htm page as well in the form of HTML tags.
    We'd definitely need to do some programming to achieve the functionality you are looking for, Also remember it is different for different views. You need to find out the view that has the buttons.
    Do a F2 on your UI screen to find out the details of the screen.
    Regards
    Prasenjit

  • Hiding buttons based up on business role; Is possible by the BASIS?

    Hi Experts,
    I have done one enhancement for hiding the buttons according to Business role using coding but it was not possible for all the desired buttons since I couldnu2019t find out relevant internal tables for the buttons.
    Now we are planning to do the same activity by the BASIS help.
    Are Hiding buttons based up on user or business role can be possible by the BASIS activity like authorization object to handle the drop downs based up on roles .
    If possible please suggest me the way out to resolve the issue using any kind of BASIS activity.
    Thanks
    Chand

    Hello,
    I do not think that the BASIS can help you in deleting/hiding buttons from the UI. Generally, the buttons are stored in the GT_BUTTON/GT_BUTTONS attribute of the overview view/viewset controller. In some cases it may be hard coded inside the htm page as well in the form of HTML tags.
    We'd definitely need to do some programming to achieve the functionality you are looking for, Also remember it is different for different views. You need to find out the view that has the buttons.
    Do a F2 on your UI screen to find out the details of the screen.
    Regards
    Prasenjit

  • Creation of new button on same page after insert command

    Hello All,
    I have an application running on apex.oracle.com where my workspace name is shruti_work,username is [email protected] and password is buwigi. The application name inside this is "app2"
    I am trying to achieve one functionality there but unable to get it so felt like seeking an help from experts here. I have two forms there one page1 form which is simplly made on an html region with go button which is navigating the page 1 items value to page 2 but simply passing their address witout updting the database table.
    In Page 2 i created page on a table or view, which made some extra buttons which i dont want like applychanges ,delete button, cancel button. I created a create button even which is updating my database with insert sql command. What i am seeing is after my create button is pressed i got navigated to same page 2 which i want to but the applychange button, cancel and delete button got appeared. I dont get the idea why it is so. i have checked the buttons even i didnt found anything there.
    All i want is when i press create button in page 2, my database get update and at the same page (2) a new button get appears which i have to use for other things. Approaching to this solution i created a button with giving databse action update and condition to this button "value of item in expression 1 is not null" and in expression 1 i passed p2_id...... but my new button is not getting created.
    Any help on this?

    Hi Jeff,
    I dont want applychanges button and delete button in my page 2. But when i created form on a table or view this but got created and i cannot delete it even. When i am navigating my page from page 1 to page 2 and filling the fields in page 2 and clicking create button, at that time i want after updating my table and running my plsql process which i have created which you can see in page processing, my button at same page get generate which i will use to navigate to other form. This button which i want to generate after clicking my create button will be meaningful only if my record get inserted in table. so that is why i want it at that time.
    I dont want any report so i am not creating form on a table or view

  • How to make the common control button for all pages in TABCONTROL​?

    Dear all,
               I'm using TABCONTROL for my application. I'm having STOP and SAVE control. I have to show this button to all pages  in TABCONTROL.. How do i make it?
    Kindly help me?..
    Regards,
    Srinivasan.P
    Solved!
    Go to Solution.

    Hi srinivasan,
    If you want to keep "Save" and "Stop" common, Why do you want to keep them on Tab control? Is your tab control taking entire space on Front panel? If so, you can have SAVE and STOP on other vi, and you can call this vi (MODAL).
    Gaurav k
    CLD Certified !!!!!
    Do not forget to Mark solution and to give Kudo if problem is solved.

  • Can I add Action button on each page of my pdf document

    I have created  many power point slides with an action button on each slide that allows the user to click to display a video clip.   I would like to create a pdf document of this and replace each of my action button in ppt with an action button that works in Acrobat.
    I noticed that action buttons can be added to forms, but I want to be able to add an Action Button on each of my ppt slides to start playing a video clip (each slide will have a different video).
    I would like to do this using any coding method (i.e. Javascript, VBA, C , etc).   I think acrobat uses Javascript.
    The reason, is that I want to display my power point slides on an IPad and they don't support hyperlink in power point.   I believe IPad does suppport the full acrobat capabilities.
    Can this be done ??  
    Any suggestions where to start ??
    Thank You,
    G

    NO problem creating the buttons and then playing this back in Acrobat. Works great.
    However, unfortunately, none of the PDF viewers for the iPad support playing movies.   So playing it there won't work :(.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Sat, 28 Jan 2012 11:00:47 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Can I add Action button on each page of my pdf document
    Can I add Action button on each page of my pdf document
    created by gw70115<http://forums.adobe.com/people/gw70115> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4171109#4171109

  • PO requisition notifications page not showing NEXT/PREV links

    Hello All,
    In the PO Requisition Notifications page, the region containing all the lines "ReqLinesNotificationsRN" doesn't show any NEXT/PREV navigation links if the number of lines are more than the default value set at Profile - PO:%Notif%lines%disp%Limit%
    FYI,
    1. I've checked with Profile - PO:%Notif%lines%Disp%Limit% and found it 20 lines by default. I've tried removing this value and made it to NULL. Still no effect.
    2. Personalizing "ReqLinesNotificationsRN", which is a table region, I've set the option "records to be displayed" to 20. Still no effect
    Can somebody please inform how to find a solution to this?
    Thanks,
    Anand

    Most likely, the Status column has been inadvertently turned off or repositioned too far to the right for it to show in the panel. Drag the panel into an open area of your screen and drag out its right edge to make it wider. If you still don't see the Status column, choose Panel Options... from the panel menu and re-enable it by ticking its checkbox under Show Column.

  • How To Create On Submit Button For Master_detail Page ?

    I have adf page that is master And detail view.
    i want to have one submit button for master and detail block

    Duplicate of  How To Create On Submit Button For Master_detail Page ?
    Please don'r post your question multiple times.
    Timo

  • How to create a radio button on OA Page using Personalization

    I am trying to create a radio button on OA Page using Personalization. The item style , I can see is Message Radio Group.
    How to create Message Radio Button and bring them under one group.
    Thanks

    You should use jdev to define a radiogroup and radio buttons under that, wrap that definition inside a stackLayout in jdev, use personalization to add a stackLayout and extend the region which you had created earlier in jdev.

  • How to add new button in Customized page....

    Dear All,
    I need to add new button to the page button bar in the UI page.I tried like this in the controller but still i can not get output:
    OAPageButtonBarBean oapbb = (OAPageButtonBarBean)oawebbean.findIndexedChildRecursive("OrderPageButtons");
    OAButtonBean cancelButton = (OAButtonBean)createWebBean(oapagecontext, OAWebBeanConstants.BUTTON_BEAN,
    null, "cancelButton");
    cancelButton.setText("Cancel");
    oapbb.addIndexedChild(cancelButton);
    Is there anything i missedout?
    TIA

    what you are doing incorrectly is
    trying to get the handle to the OAPageButtonBarBean.
    This is a named child of the parent bean(OAPageLayoutBean), and what you are trying to do is find it as a indexed child, this should give you a nullpointer excp in this line oapbb.addIndexedChild(cancelButton);
    since the handle should be null.
    to get the handle to OAPageButtonBarBean, use some like this
    pageContext.getPageLayoutBean().getPageButtons();
    and then add buttons to it.
    Thanks
    Tapash.

  • How to use a back button in action pages?

    Hi all,
    I have created a user login page,home page and user profile page.
    If the user provide correct username and password in the login page he will be taken to home page.
    In the home page he will be having his username and a link to view his profile.
    When the user click on the link "My Profile(user profile)" he wil be taken to that page.
    In my profile page the user can edit only his firstname,lastname and password .
    On the user profile page i have placed a Back Button(using javascript: on onclick event i have used history.back()) to go back to home page after editing his profile.
    If the user edit his profile for n-number of times then atlast if he wants to go back to home page-then he wil cilck the back button.
    Now the problem occurs like the back button not going to home page and it simply going back with the edited history.
    How to use a back button in action pages; without repeating the actions done on the page; how to redirect to the users home page?
    I simply used the hyperlink in userprofile page to go to home page but when i click onit it is displaying blank home page.
    I'm using hibernate orm mapping; cflogin and cflogout tags.
    Any help appreciated,
    Chandru P

    chandrup wrote:
    Hi Dan,
    Dan Bracuk wrote:
    Use an anchor tag.
    I simply used the hyperlink(<a href="home.cfm">Home</a>) in userprofile page to go to home page but when i click onit it is displaying blank home page.
    I can see your problem. You may use javascript:history.go(-1), javascript:history.go(-2), ..., to go back one page, two pages, and so on. But how does one go back an arbitrary n pages? The link href="home.cfm" isn't a good solution for the browser. It makes a new call to the server which, as you may have discovered, can overwrite all the changes made at the browser. 
    You should use the Javascript variable history.length. If you open n links in succession, starting from page0.cfm, then the browser holds the value of history.length as n. So, experiment with something like
    <a href="javascript:history.go(-history.length)">Go home</a>
    or
    <a href="javascript:history.go(-history.length+1)">Go home</a>

Maybe you are looking for

  • Exchange 2013 MB/CAS integration with legacy Exchange 2007 CAS/MB/Trans server

    Hi All, I have an existing running Exchange 2007 SP3 RU13 server acting as MB,CAS,Transport using a Barracuda SPAM for SMTP (MX Record is assigned to here), and a TMG2010 server performing all ActiveSync, Outlook Anywhere, and OWA connectivity. I hav

  • SAP Note 0001613410 not available

    Hi experts, when I try to download SAP Note 1613410 (SolMan 7.1 SP3) I get the error SAP Note 0001613410 not available. Has anybody a similar issue? I get the same message when I try to read the note in service marketplace.... Regards, Basti

  • I can't load a web page

    why i can't open this web pigg-life.ameba.jp it just happened lately, because yesterday i still could open it other pages that i've opened with are successfully opened adobe flash plugin also crashes often, please help my problem thanks

  • Re-install photoshop cs3

    I am having trouble with PS cs3 and want to reilnstall it or rather change some settings i go to control panel selet add remove software select change for adobe cs3 premium and nothing happens,,, i can select   remove and nothing happens any ideas wh

  • PO for Edge replaced PI for Midsize?

    Hi Previously SAP Netweaver PI for midsize companies was available on the Indirect Price list. I'd like a confirmation and advice if SAP Netweaver Process Orchestration - Edge edition is the 'new' version that partners should consider for an integrat