Extented notifications question

hi there,
i am using extented notification for my workflows.
in SWNCONFIG transaction there is a parameter SHOW_ACTION_EXECUTE_AS which
has the value LINK1 (HTTP-Link which is starting sap-gui HTML)
in the notification email the text for the link is 'Workitem ausführen'..........sorry, but i have german language system.......translated it means "execute Workitem".
well, i want to CHANGE this standard-text to an specific text.
how to handle this ?
reg, Martin

Hi
You can found solution here in below links
1) Configuring Notifications  -http://help.sap.com/saphelp_nw70/helpdata/EN/27/9a793426cea749b18fa409565c3dee/content.htm
and
General Settings -http://help.sap.com/saphelp_nw70/helpdata/EN/c0/0f87ad3c75424ca874c39023574310/content.htm
You can add parameters INBOX_LINK_CAPTION and  INBOX_LINK_CAPTION
Hope this will help you.
Regards,
Sriram

Similar Messages

  • Workflow Termination Notification Question

    I have a question regarding termination notification workflow. I am trying to create termination notifications for a server and I have to verify both worklist and email notification.
    I have checked the Set Up HRMS > Common Definitions > Self Service->Workflow Configuration and Personnel administrator role is assigned for Terminate Employee workflow. Also, in PeopleTools > Security > Roles & Permissions I have an user assigned to this role.
    In Worklist->Worklist, I only see the termination action created through Manager Self Service->Job and Personal Information->Terminate Employee and not the one using Workflow Administration->Job Information->Job Data. Also, no email is received.
    Could you give me a hint regarding this problem?

    Does anyone out there at Microsoft have accurate answers to these questions?
    Thanks!EM

  • Email Remincer, notification question.

    Currently, when a request is entered it shows the user's email who entered the request.  Also, when a request is forwarded from one stage to the next it shows that the email is forwarded from the aprover fo the previous stage.
    Can I set it so all emails generated by CUP come from one email address? 
    Thanks,

    Dear Ryan,
    On the Configuration tab, navigate to Workflow > SMTP Server.
    1. Under "Enter Email Notification Sender", select the check box next to "System Email ID".
    2. Provide "System Email ID" that you want.
    Once you configure this. All e-mails sent out of CUP will have "System Email ID" as sender.
    Hope this answers your question.
    Best Regards,
    Sirish Gullapalli.

  • Permissions Notifications Question

    It's been a while since I've bitched about permissions. I'm checking in to do so now.
    These are the current unfixable notifications I'm seeing. Are ALL of these to be ignored?
    Thanks.

    It seems strange to me that Disk Utility shows all these messages by default and doesn't explain that they are worthless. Apple could either remove the messages or explain them in the application, but no, we get at least 20 questions a week about this same problem with no resolution. This kind of information may be useful to someone with a Terminal Sudo command, but then that's where info like this could be read.
    Just a few versions of Leopard ago, there was some value in seeing which repairs were getting repaired. It seemed like printer drivers were one of the regular files in the list. Then we started seeing more and more messages that said permissions were different and wouldn't be fix (with no explanation). Now we are seeing messages that refer to links that were created properly by the OS and are not problems at all.
    So I finally decided that all of the worthless information in the list of messages is just crap that obfuscates any real issues, and un-clicked the "Show details" box above the message window.
    Now I just see:
    Repairing permissions for “Macintosh HD”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    Unless there's some real problem, that I can change, I don't need anything more.

  • Universal Apps and Push Notifications (Question on both Store and Phone app)

    I have a Universal App and trying to implement notifications. I have an Azure Notification Hub and the code in the app.xaml.cs (shared) file that is creating the channel and binding to my notification hub. This all works great for the Windows Store app.
    However, I don't receive any notifications on the Phone app (running in the emulator). I am wondering if this is because the code to create the PushNotificationChannel is only registering once (the Store app) and has the same URI as the phone app. This line
    of code is what I am referring to:
    var channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
    Since this is by application, and I am essentially running the same app twice on the same machine, via the phone emulator, is only one URI being generated for this?
    Thanks for any assistance.

    When you created the push notifications in the Azure, you chose the code fr Windows Store, not Windows Phone. as you mentioned you having a universal apps. 
    Hint: Did you enabled push notifications for local testing ?
    This is the 4 steps to have a successful Push notification integration with your app 
    Register your app for push notifications
    Update the service to send push notifications
    Enable push notifications for local testing
    Test push notifications in your app
    For more info please follow this
    link 

  • OIM 11g Approval Workflow Notification questions

    Hello.
    I am working with an OIM 11g approval workflow. The workflow will flow from one group to another, and if one user in each group approves it, it is approved. Because I assigned it to groups, the notifications are going to every user in each group.
    Is it possible to send a notification to only a single user within a group, instead of everyone? Does auto claim do this?
    Is it possible to send a different notification if the ApprovalTask is rejected versus approved?
    Thanks.

    If I understand correctly, you want to send the notification only to the user who has approved the request and not to all in the group. You can do it by NOT using the notification tab in the .task but by using EmailNotificationService after the .task in BPEL. There you can read the data from payload on who approved the request and can send the notification only to that user. Same way for rejects. You can configure that.
    1. After your .task completion you can have a decision box which can check the value for 'outcome' and then direct it to appropriate path for appropriate notification.
    or
    2. Based on outcome you can set the template in a variable and then in the notificationservice use that variable.
    -Bikash

  • Transaction Notification Question

    I am having a little trouble getting my transaction notification working.  What I want to do is stop an order from adding or updating if the NumatCard field exists on another order from the same customer.
    Here is my code so far, any suggestions would be greatly appreciated
    --  If BP on Hold then block add or update
    DECLARE @PORef nvarchar(100)
    DECLARE @BPCode Nvarchar (35)
    IF @transaction_type in('A','U') AND @object_type = '17'
    BEGIN
    Set @PORef = (Select T1.NumAtCard
    FROM ORDR T1
    WHERE T1.docentry = @list_of_cols_val_tab_del)
    Set @BPCode = (Select T1.CardCode
    FROM ORDR T1
    WHERE T1.docentry = @list_of_cols_val_tab_del)
    IF @PORef, @BPCode In (Select T0.NumatCard, T0.CardCode
    From ORDR T0)
    BEGIN
    SET @error = 11
    SET @error_message = N'Customer PO is already in the system'
    END
    END

    Try this:
    DECLARE @PORef nvarchar(100)
    DECLARE @BPCode Nvarchar (35)
    IF @transaction_type in('A','U') AND @object_type = '17'
    BEGIN
    Set @PORef = (Select T1.NumAtCard
    FROM ORDR T1
    WHERE T1.docentry = @list_of_cols_val_tab_del)
    Set @BPCode = (Select T1.CardCode
    FROM ORDR T1
    WHERE T1.docentry = @list_of_cols_val_tab_del)
    IF @PORef (Select T0.NumatCard
    From ORDR T0 WHERE T0.docentry != @list_of_cols_val_tab_del and T0.CardCode = @BPCode)
    BEGIN
    SET @error = 11
    SET @error_message = N'Customer PO is already in the system'
    END
    END
    Thanks,
    Gordon
    Edited by: GordonDu on Nov 10, 2010 4:07 PM

  • Alert and notification question

    We are running LMS 3.1. Notification services are configured under DFM. We do receive alerts with event occurance, but don't get notification when device come back to normal state per event code. Any help will be appreciated.
    Thanks,
    Mohammad.

    This probably has to do with how you have configured your notification group.  Make sure you have both active and cleared checked as well as both critical and informational.  The informational severity is required because cleared events/alerts are informational even though the event/alert they describe may have been critical.

  • Notifications question

    Does anyone know if there is a way to disable notifications
    while you are talking on the iphone. And does it bother you
    as much or do we just live with it. surely apple is aware of
    this glitch but didn't address it in the last upgrade.

    Engage the mute switch while you are on the call. It's the litle slider above the volume buttons.

  • Free subscription/ Push notification question

    I've been reading up on posts in regards to the notifications sent through the Folio Producer.
    From what I understand, hitting notify will send the blue "A new issue of _____ is now available" notification that appears once they open the Newsstand app.
    Is there a way for this notification box to appear without the user having to open the app?

    no longer relavent

  • Push Notification questions

    Hi,
    I have been undergoing some push notification issues and I would like to have some doubts cleared out before taking incisive action;
    - it seems that we cant get push notifications for a Newsstand app working on iPad1 with the latest supported iOS for this device installed (5.1.1). Is it an unsupported feature? Because it seems that it works fine on other devices with latest iOS installed;
    - Also, some users complain they dont get push notifications delivered. I believe this is an users iPads configuration issue, since I get them working on some devices I checked, but it would be nice to have better arguments for it.
         I would like to know if the Notify feature on DPS works only if user had not yet opened the app and received the custom notification for a new issue available for download. If, after checking it and downloading the issue, it wont receive the Notification through DPS and app wont show the bullett counter (or, if newsstand subscriber, the NEW banner wont be displayed on latest cover). Having this feature working on this scenario would help me on testing users notification issues;
    - users complain that exclusively iPad mini dont get any notification at all. Their iPad mini rendition is adapted from the normal iPad (1024x768) - due to similarity in screen size and pixel density. I suppose it operates the same as the iPad, but I would like to check it anyway.
    Thanks,
    Pedro

    http://www.adobe.com/devnet/digitalpublishingsuite/articles/dps-push-notification.html
    Read :
    1. Requirements for push and Newsstand background downloading.
    2. How to test push notifications and background downloading

  • PA notifications Question

    Hi gurus!
                   I have a specific requirement, my client wants to hire an employee week before his real start date. And once he uses PA40 hiring action, and finishes it, he wants notification to be sent to all the employees inbox, so that the respective departments will be prepared for new employee.
    what should i do about this?
    can i use the notifications infotype?
    please help me out...
    thanks in advance
    Soniya

    Notification infotype is used for displaying some additional infn in Payslip of the employee.
    For this you can create a mail sending program and run it twice a day.
    Use this Function module <b>SO_NEW_DOCUMENT_SEND_API1</b>

  • ITunes sound notification question

    Whenever I plug in my iTouch, the computer wants nearly mute all other noise.
    For example, im in the middle of a video game. I plug in iTouch. I then have to alt-tab back to the desktop just to bring the volume bar back up to 100%.
    Ive disabled the notification noise Windows makes whenever you plug/unplug a device, but it still wants to the bring all other programs down to 10%ish.
    Any suggestions?

    Check the equalizer settings or the options setting for an equalizer preset on the tunes that sound bad.

  • Home screen notification question

    I have an icon that say "1" with a circle and arrow through it on my home screen in the top right that just appeared one day. I have no idea what this means. Anyone know?

    Hi and Welcome to the Forums!
    Is it one of these?
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Notification question. One keeps coming up with an E logo.

    On average 2 times a week, I get a notificaiton that has an E logo. After that it states that my computer needs clean up and I have X amount of days left for it to lose weight. How do I stop this from coming up. I always just close it out.

    Hi Mizpixiegirl,
    Have you tried resetting your device: Hold down the Home and Power buttons at the same time and continue to hold them down until the Silver Apple appears (up to 30 seconds).
    Also, not sure if this would be related, but go into Settings>Safari, and make sure that the "Block Cookies" option is not set to = Always.
    Also, make sure all open apps are closed: Click on the Home key twice, and then swipe up on the thumbnails above each of the icons until they all are closed.
    Once you have done each of these things, try the download again.
    Cheers,
    GB

Maybe you are looking for