Notifications missings in 11.5.10.2

In Oracle Applications 11.5.9 with Vision demo database, there used to be notifications displayed above the responsibilities. But in 11.5.10 they are not visible. How to enable/disable these notifications for a particular user?

You need to reapply your mod directly to the 11.5.10.2 version of APXVDMVD.fmb via forms builder (f60desm on unix or ifbld60.exe on windows). Then copy the form to $AU_TOP/forms/US and compile the form via adadmin or command line:
cd $AU_TOP/forms/US
f60gen module=$AU_TOP/forms/US/APXVDMVD.fmb userid=APPS/apps output_file=$AP_TOP/forms/US/APXVDMVD.fmx module_type=form compile_all=yes
You should register the mod in $APPL_TOP/admin/applcust.txt so you get a warning while patching if you get an updated file that wipes out your mod.

Similar Messages

  • Timeouts and "cancelled" notifications...

    Greetings,
    We are using the standard (unmodified) version of the iExpense workflows (11.5.5 on Windows, WF 2.6.1), and have a curious and annoying problem...
    1. User submits expense report
    2. "Approval Request" notification times-out (after 5 days)
    3. "No Response" e-mail notification sent back to original user.
    4. "No Response" notification times-out (after 7 days)
    5. NEW "No Response" e-mail notification generated, and sent to original user.
    6. OLD "No Response" notification cancelled automatically.
    7. "CANCELLED: No Response" e-mail notification immediately sent to original user.
    8. Same pair of notifications generated one week later (new "No Response", plus "CANCELLED: No Response" notification referring the previous week's notification), and again a week after that, and so on...
    This is maddening to our users who miss the first message, because (after that first week), they are getting PAIRS of messages every week (only seconds apart) that seem to say to them...
    Message #1: Hey, there's a problem!!
    Message #2: Oh, never mind, no problem at all.
    Has anyone else encountered this problem? How did you handle it? Any ideas?
    Thanks a bunch!! -- Tom
    [email protected]

    Hm. I've confirmed 2396373 is the patch number. Here are the steps I used to locate the patch on MetaLink:
    1) Click the Patches button on the MetaLink navigation menu.
    2) In the Patch Download page, enter 2396373 in the Patch Number field.
    3) Click Submit. This should display the platforms where the patch is available.
    Could you try one more time with these steps and see if you can access it this way?
    Regards,
    Clara
    Thanks for the feedback.
    I searched MetaLink for both the specific patch number you gave, and also the phrase (description) you gave - with no results on either search. (???) Is this patch only visible by requesting it with a TAR, or by some other means?
    Please clarify, or double-check the patch number. Thanks a bunch!! -- Tom

  • SharePoint Foundation 2013 installed on Windows Server 2012 not sending out email notification

    I have a server where i installed SP Foundation 2013 on top of Windows Server 2012. I have configured the SMTP as well as the outgoing SMTP in Central Administration
    of SharePoint. When i create an alert on a document library, its did not sent any email notification on the changes made to the document in the document library. So, i created a workflow to send out email using SPD2013. The workflow run, but it cannot sent
    out email with error saying that outgoing email is not configured correctly. I have checked with another server which i installed SP foundation 2013 on top of Windows Server 2008 R2 - its sending out email just fine using same configuration and outgoing SMTP.
    I need help to resolve this issue or at least the cause of the problem.
    Any help is greatly appreciated.

         
    Try below:
    http://social.technet.microsoft.com/wiki/contents/articles/13771.troubleshooting-steps-for-sharepoint-alert-email-does-not-go-out.aspx
    Go to Central Admin ---->Operations----->outgoing email settings and verify that SMTP server is mentioned correctly 
    2) Test the connectivity with the SMTP server.
    In order to do that follow these steps:
      Open  cmd
      telnet <SMTP server name> 25 ( We connect smtp server to the port 25)  
                     you should see a response  like this 220 <servername> Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at date and time
                     Beware that different servers will come up with different settings but you will get something
                     If you dont get anything then there could be 2 possible reasons, either port 25 is blocked or 
                     the smtp server is not responding.
      For testing response from your server
                       For testing response say ehlo to it.
                            Type :
                                        ehlo <servername>
                            output:
                                        250 <servername> Hello [IP Address]
      Now a test mail can be sent from that SharePoint server. 
                          Now we need to enter the From address of the mail.
                          Type :
                           mail from: [email protected]
                           output:
                           250 2.1.0 [email protected]….Sender OK
     It's time to enter the recepient email address.
    Type : rcpt to: [email protected]
    output:
    250 2.1.5 [email protected]
     Now we are left with the data of the email. i.e. subject and body.
    Type : data
    output:
    354 Start mail input; end with <CRLF>.<CRLF>
    Type:
    subject: this is a test mail
    Hi
    This is test mail body
    I am testing SMTP server.
    Hit Enter, then . and then Enter.
    output:
    250 2.6.0 <<servername>C8wSA00000006@<servername>> Queued mail for delivery
    Type: quit
    output:
    221 2.0.0 <servername> Service closing transmission channe
    3)  Check alerts are enabled for your web application
          verify if the windows timer service is running or not.
          Run this stsadm command to check that
          Stsadm.exe -o getproperty -url http://SharePoint-web-App-URL -pn alerts-enabled
         This should return <Property Exist="Yes" Value="yes" />
         If you don’t get this, Enable alerts by:
         stsadm.exe -o setproperty -pn alerts-enabled -pv "true" -url http://SharePoint-web-App-URL
          If its already enabled, try turn off and turn on it back.
    4)  Check the Timer job and Properties
           Go to
           MOSS 2007:  Central Administration > Operations > Timer Job Definitions (under Global Configuration)
           In SharePoint 2010: Central Administration > Monitoring > Review Job Definitions 
           Check whether the "Immediate Alerts" job is enabled for your web application. check these properties:
                       job-immediate-alerts
                       job-daily-alerts 
                       job-weekly-alerts
           stsadm.exe -o getproperty -url "http://Your-SharePoint-web-App-URL" -pn job-immediate-alerts
           The expected output is:
           <Property Exist="Yes" Value="every 5 minutes between 0 and 59"/>.  
           If you don’t get this, run the following command to set its value.
           stsadm.exe -o setproperty -pn job-immediate-alerts -pv “every 5 minutes between 0 and 59" -url http://Your-SharePoint-web-App-URL
    5)  Check whether the account is subscribed for alerts and it has a valid email account. This should be the first thing to check if the problem persists for some users not for      all.
    6)  Then check if at all those users have at least read permission for the list. Because the first mail should go out for every user without security validation but the next ones       won't be delivered unless the user has at least read
    permission.
    7)  If it is happening for one user, can also try to delete and re add the user in the site.
    8)  Most importantly , you should try this one.
          Run this SQL query to the content db < Select * from Timerlock>
          This will give you the name of the server which is locking the content database and since when.
          In order to get rid of that lock 
          Go to that server which is locking the content db and then restart the windows timer service.
          within some time it should release the lock from content db, if not then at the most stop the timer job for some time
          Once the lock will be released then try to send some alerts
          You will surely get the email alert.
    I found this is the most probable reason for alert not working most of the time. We should start troubleshooting with above steps before coming to this step for any alert email issue but from step 1 to step 7 are best for new environments or new servers.
    If the issue is like this ,alert was working before and suddenly stopped working without any environmental change then above conditions in step 1-7 should be ideally fine.
    Even after this if it is not working, then you can try these few more steps too
    9)  Try re-registering the alert template:
    stsadm -o updatealerttemplates -url http://Your-SharePoint-Web-App-URL -f  "c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\XML\alerttemplates.xml" -LCID 1033
    10)  Try to clear the configuration cache
    If this helped you resolve your issue, please mark it Answered

  • Alert or Notification for Client Open and Close

    Hi All,
    How to configure an Alert or Notification, if the Client (SCC4 and SE06) is open and in modifiable state, we have spoken to our solman team and got the confirmation that there is no MT Class for SCC4 and SE06.
    If this is possible through any z program, please do help and provide your comments and suggestions.
    Thanks & Regards
    Praveen

    It is possible to assign a different posting period variant to company code in a non-leading ledgers (the extreme right field) in the foll. node in SPRO.
    Financial Accounting (New) -> Financial Accounting Global Settings (New) -> Ledgers -> Ledger -> Define and Activate Non-Leading Ledgers

  • Whenever i try and open a social network app it comes up with an error message sayinng "Connect to itunes to use Push Notifications" I have successfully conntected to itunes via phone and computer however this message is still appearing and will not go?

    Whenever i try and open a social network app it comes up with an error message sayinng "Connect to itunes to use Push Notifications" I have successfully conntected to itunes via phone and computer however this message is still appearing and will not go, therefore i cannot use the apps?HELP PLEASE

    http://support.apple.com/kb/TS3281

  • Facebook Notifications and email notifications on ...

    Hi
    Is that possible Facebook Notifications and email notifications on sleeping screen nokia 808 like it had on N9..
    On my 808 it shows only msgs and miscalls....any fix??
    Thanks

    not possible unless the app supports that behaviour. but email notifications and on notification lights has been broken on Symbian for a while, and as Symbian is in maintenance mode, is unlikely to see a fix, possibly ever.

  • Ios7 and push notifications and music

    this update is really starting to annoy me now.
    everytime i go on texts/whatsapp/kik/ anything it tells me to connect my phone to itunes to use push notifications.. so i connected to itunes and got load of songs i didnt want on my phone and no push notifications.
    i have no idea how to delete the songs cause swiping accross doesnt work and clicking it just makes it play.. so help ??
    and how do i get my push notifications to work?! its driving me crazy
    i dont really wanna throw my phone at the wall but i can see it happening.....
    tia...

    https://discussions.apple.com/message/23019531#23019531
    Lots of people (myself included) are having similar issues.

  • Subscriptions and email notifications

    Is there a way to subscribe simply to a single question I post rather than to the entire topic, which results in tons of emails? Or is there a way (as with Mozilla forums) to be notified when a response is made to a thread I post?

    Something seems to be broken in discussion subscriptions. Every morning I get a notification that the same thread has been updated, but it has not. Let me paste in a portion of the messages. Please note the dates are different but the link remains the same (with the same messageID):
    ====
    The following updates have been made since 1/11/07 6:19 AM
    Topic "No System Sounds" has been updated one time
    http://discussions.apple.com/thread.jspa?messageID=3866231#3866231
    ====
    The following updates have been made since 1/10/07 6:19 AM
    Topic "No System Sounds" has been updated one time
    http://discussions.apple.com/thread.jspa?messageID=3866231#3866231
    ====
    The following updates have been made since 1/9/07 6:19 AM
    Topic "No System Sounds" has been updated one time
    http://discussions.apple.com/thread.jspa?messageID=3866231#3866231
    PowerMac G3 (Blue & White), iBook G3, MacBook Pro   Mac OS X (10.4.8)  

  • CWMS and email notifications

    We are in the planning stages for deploying cwms. In documentation, the various email templates are described briefly.
    Is there further resource on the templates? For example, what is customer modifiable? How are we limited - only certain sections of the MSG, can we incorporate simple graphics, is there a character count limit? Are there any examples of the templates available?
    Thank you for any info in advance.
    John Geyer
    Sent from Cisco Technical Support iPhone App

    Hi John,
    Essentially everything in the template is modifiable, and while there may be a character count limit, it is unlikely that any modifications will encounter that as notifications with hundreds of full lines of html and text can be delivered by the system.
    There are two types of templates, one for normal web scheduling that can be in either HTML or plain text, and one for meetings scheduled through productivity tools that only uses a plain text notification.
    Here is an example of a HTML notification that attendees receive:
    Hi %AttendeeName_HTML%,
    %HostName_HTML% is inviting you to this WebEx meeting:
    %Topic_HTML%
    Host: %HostName_HTML%
    When it's time, join the meeting from here:
    Join the meeting
    When: %MeetingDateOrRecurrence%, %MeetingTime%, %TimeZone%.
    Access Information
    Meeting Number:
    %MeetingNumber%
    Password:
    %MeetingPassword_HTML%
    Audio Connection
    %TeleconferencingInfo_HTML%
    Delivering the power of collaboration
    The %SiteURL_HTML% team %Support_HTML%
    %CustomFooterText_HTML%
    © %Year% Cisco and/or its affiliates. All rights reserved.
    While the plain text version that PT would send looks like this:
    %Topic%
    Host: %HostName%
    When it's time, join the meeting from here:
    %Meeting Link%
    Access Information
    Meeting Number:
    %Meeting Number%
    Password:
    %Meeting Password%
    Audio Connection
    %TeleconferencingInfo%
    Delivering the power of collaboration
    The %SiteURL% team
    %Support%
    %CustomFooterText%
    In the HTML version, images can be linked to and added to the notifications with normal HTML tags. There are also system variables such as %Meeting Password% and %SiteURL% that are filled in at the time the notification is generated. While many of them are self-explanitory, a comprehensive list of the variables and descriptions are not available. I'll see if this can be included into the notifications section of the Administration Guide.
    Thanks,
    Derek Johnson
    Conferencing TAC

  • Smartband and Google+ notifications

    Hi There,
    just received my Z2 with bundled smartband yesterday - loving it so far!
    I only wonder if notifications for google+ will be added to the apps list, as this would make the smartband my perfect companion.
    Thanks for your answer!
    kind regards,
    Alex

    I just realised that you can tap into notification and get more settings.
    By the way, Google + is there in the list:
    Xperia Z1 C6903 - 4.4.2 [ SmartWatch SW2 | SmartBand SWR10 ]

  • Keynote and Tweetdeck notifications

    I would like a  twitter feed to appear during my keynote presentations. I've tried tweetdeck, but the notifications do not appear in front of the presentation (when in slideshow mode). Is there a way to force the notifications to appear on top? Incidently they do appear on top with powerpoint.
    Cheers

    Users can obtain the iWorks and iLife applications free, if they purchased a Mac after the beginning of October 2013.
    Older Mac purchases require a paid purchase of these applications.

  • 8830 and Email Notifications

    Does anyone know of a way to shut off the email message indicator and the new mail (with star indicator) w/o affecting the email push?  Ie:  When I get home at night, I don't want to see how many messages I have or even the indicator that there is new messages because I feel compelled to look at it.  I have tried turning both off, but you either have one showing or the other.  
    Thanks.  

    Hey emma53, 
    Welcome to the forums ! 
    Are you still having this issue? If so then you may to try to back up and complete a clean reload of the device software as shown here http://bbry.lv/cG8oer. Before you restore your data test to see if the notifications are back.
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • PO and Requisition Notifications

    Using standard functionality in R12,
    1. When purchasing buyer returns the requisition with a reason, can the requestor, req approver be notified via email about this? How?
    2. Let say, the PO approver (someone from finance dept) rejects the PO due to lack of funds, the buyer will be notified via the workflow and he cancels the PO. What can the buyer do to notify this to the requestor and req approver(manager)? What happens to the requisition as the PO was already created in this case but cancelled?

    1. If a req. is returned, Oracle sends a notification to the preparer. If you need to expand this to include requestor or approver, you will have to write an alert.
    2. If a po gets rejected and was never approved, you can NOT cancel it. You have to delete it. (I am assuming that the "archive upon" option is set to approval)
    When a buyer deletes a PO, the req. goes back to the autocreate pool.
    When a buyer cancels a PO, he/she has a choice to cancel the underlying requisition. You will notice that there is a checkbox called "Cancel Requisition" on the Cancel PO window. If the box is unchecked, the requisition returns to the autocreate pool. If the box is checked, the requisition gets canceled. You may have to write an alert or modify the workflow to send a notification out if you want someone (e.g the approver) to be notified.
    Hope this helps,
    Sandeep Gandhi

  • Jabber and Voicemail Notifications

                       Hello guys!
    Is it possible to receive voicemail notification on both jabber and desk phone at the same time? For example, if a user has a desk phone as primary extension on CUCM 8.6, the Unity use that extension for VM. But if the user has also a jabber client version 9.x for Windows and wants to receive voicemail on jabber, what is the best design option? Assign the same DN to both jabber and desk phone?
    Also, I set up visual voicemail for jabber but left a voicemail in jabber and no notification appeared, where should i look into? The voicemail server and profile with users were added in CUP.
    Note: The scenario is a BE6000 platform with CUCM8.6, CUCxN,8.6, CUP8.6 and CUPM8.6.
    Thanks in advanced!

    Why would you have different extensions on desk phone vs. jabber? Normally this is not desired for user to manage 2 different numbers.
    If however that is a requirement you can always define alternate extension on Unity Connection.
    For VM configuration did you configure all the service in CUPS server, i.e. mailstore?
    HTH,
    Chris

  • Procedures and Email Notifications

    boldEN*bold*
    Hi everyone!!
    In my BPM development, i'm trying to automatize the email notifications, based on due process periods. Also, I need to inform, based on the delay, some other participants that escalates the alarm message.
    Is it possible to do it using an "E-Mail Notification" component that can be reused during all the process, even that the interval conditions and informed users varies upon each activity.
    Is there another way to solve it?
    Thanks
    boldSP:*bold*
    Saludos a todos!
    En mi desarrollo BPM requiero automatizar el proceso de envio de email, al caducar ciertas actividades. Basado en ello, el tiempo de caducidad varia de acuerdo a cada actividad y al usuario, ya que varian tanto los intervalos de aviso, como los correos y su escalamiento en caso de demoras mayores a lo solicitado.
    Pienso que es posible tomar un procedimiento especializado que permita ser reutilizado en este y otros proyectos, a pesar de que requiera parametrizar tanto los usuarios "base" y "escalados", como los intervalos de alarmas, durante el proceso.
    ¿ Existe otra forma de realizarlo?
    Gracias,

    I think I understand what you're after. I think you want to use the same escalation logic for all of your processes and instead of embedding this in every process you want something reusable. If this is not the case, read no further.
    While you can do this, there are still going to be 5 things each process would still need to have inside of them:
    <li> your process would need to set the "deadline" predefined variable to the intial timeout (2 hours in the future in your example)
    <li> your process would need an Exeption Handler needs to be added with an Exception transition set to "Instance Expiration"
    <li> your process would need an Integer instance variable "alertLevel" to keep track of the current level
    <li> your process would need a String instance variable "currentlyAssignedTo" to keep track of who's supervisor you want to notify
    <li> your process would need an Automatic activity with one line of logic inside it.
    You could have the Exception transition leaving the Exception Handler activity go to a subprocess using a Subflow activity. This subprocess would send the emails, determine the new deadline interval, determine the new priority of the instance, look up the currently assigned user, manager and supervisor's email addresses and send the email(s). The subflow would have two input argument variables (alertLevelArg and currentlyAssignedToArg). In the Begin activity, these arguments would be mapped to corresponding instance variables. Inside this subprocess there would be an automatic with the logic to send the email to the user / manager / supervisor based on the alertLevel instance variable. This subprocess would pass back out through its output argument variables the new alertLevelArg, and new deadline (a time argument variable set to some time in the future based on the new alert's level).
    Once the instance in the called subprocess completes, the output arguments need to be mapped to the original process's "alertLevel" and "deadline" variable. From the Subflow activity, you'd have an unconditional activity that flows into an Automatic activity via an unconditional transition. This automatic activity would have the single line of logic "action = BACK" so the instance is sent back from the Exception Hanldler's flow back to the activity inside the process it was in when the Instance Expiration exception occurred.
    Avoid hard coding the values of "2" and "5" and "8" for the number of hours to have elapse inside your logic. Instead make them business parameters capable of being edited by an business owner.
    Dan

Maybe you are looking for

  • My IMovie icon on my Ipad is opaque with the caption of Waiting...

    To whom it may conserns Actually, My iMovie icon on my iPad is opaque with the caption of Waiting... at the bottom... Although it has finished to be downloaded, it is still working; the only path to open and use the application is exploiting purchase

  • I think my .mac account email got compromised... please help! :(

    Can anyone advise me? On my mac mail program today, I saw an email in my inbox from an old contact, with just a link in the body, and rightly assumed it was spam or a virus. I clicked on the email to delete it but did not click on the link. Of course

  • Remove an EJB Without jar

    Hello Everyone, I try to remove an EJB in the J2ee Server. However I had accidentally removed the jar file, and now I can not undeploy this bean in the server. Does anyone knows a way to remove the bean in this situtation? Thanks in advance. John

  • Open photos in raw

    I need help. When I am in brige and try to open a photo in raw the following message appears "Bridge's paret applicartion is not active" can some one help me. I try opening bridge from photoshop and still dosn't work.

  • Error caused due to PL/SQL

    I have this PL/SQL item type based on a store proc... the stored proc returns the correct result but when I add this stored proc to the page the rest of the html portlets get the following errors on the header and body content what can be the reason.