Notification: Set priority and dates, based on the reference object

Hello,
I'm searching for an idea/solution, to set the priority of a notification automatically, depending on the entered reference object (F/L or equi).
I.e. I want to classify the F/Ls and equis with a priority (e.g. via the classification, or F/L / equi master data). When the user creates a notification, and enters a F/L or equi, the priority should be selected from the object and set automatically.
Thanks for your answers!
Best regards
Stephan

Hello Pete,
thank you for your answer. Unfortunatelly both user-exits seem not to work for my problem.
QQMA0025: Default values when adding a notification
Priority and dates can be modified, but in this step you don't have the functional location. I thought, I can send a popup in this user-exit, to ask for the functional location, but the functional location is deleted in a later step (before the 1st display of the notification header), i.e. the user has to enter it again.
QQMA0018: Deadline setting based on entered priority
Here you can only modify the dates / times, but not the priority.
Another show stopper is, that the exits will only be processed once, i.e. in both cases, a change of the functional location doesn't adjust the dates/times.
It seems, that exit "Before saving the notification" (as far as I remember QQMA0014) could be a solution.
I see 2 problems ->
1. the user enters the F/L or equi and nothing happens to the priority / dates -> sending a popup in the saving process to inform the user about the changes, could be a solution.
2. What to do, when the user has already maintained priority and/or dates/times?
I will have a look, if there are enhancement spots in the notification program. Perhaps this can help me (or better - my boss ).
Best regards
Stephan

Similar Messages

  • IDoc to File with different file name and data based on the IDoc header dat

    Hi,
    I got a requirement to implement IDOC to file senario.  In this the Converted file should have the file name and file content based on IDoc Header data.  Means If one of the IDoc header field value is
    'A'  - then the file name recieved by reciever system should be 'A.txt' and with the columns A  B  C  D  F.
    'B'  - then the file name recieved by reciever system should be 'B.txt' and with the columns C  D  F.
    In both the case IDoc message type is same.
    Please suggest me what i need to do to achieve this.
    Thanks in Advance. ...
    Regards
    Sri

    Hi,
    As per my requirement, we need to create one file for each IDoc based on IDoc header data. SAP program generates 10 IDocs for each run. All 10 IDoc's message type is same.  Each IDoc has one header record with the file name. Base on the  name in the IDoc header record, file needs to be created with different columns and file name. Means..
    IDoc 01- Header Description contains 'A' - than file will be generated should have name as 'A.txt' and columns 'parent'  'child' 'descripion'.
    IDoc 02- Header Description contains 'B' - than file will be generated should have name as 'B.txt' and columns 'Name' 'Department' 'Description'.
    IDoc 10- Header Description contains 'J' - than file will be generated should have name as 'J.txt' and columns 'Order No'  'Materail' 'Description'.
    Hope this will give more clarity on my requirement. Please let me if you are still not clear on requirement.
    Thanks for your all help..
    Thanks & Regards
    Sreeni

  • I'm in the activation process for setting time and date but been stuck in that screen for a while please help

    just installed my Apple TV and it's been in the activation screen to set time and date for a while .
    not sure what the issue is

    It's not properly connected to the network
    Make sure location is set correctly
    DNS should be on auto (settings - general - network)
    If on wifi try Ethernet
    Check that router has port 123 open (refer to manual if unsure)

  • Two times and dates show on the first page with an old set under the correct set.

    I have a second tine and date showing on the first display page, like a shadow under the correct date and time.  This is happenong on my iphone5, but was also there on my 4.  Any ideas?

    I would go to settings-general- reset all settings, if that doesn't work I'd do a reboot, and finally if I couldn't get that to work I'd do a restore as a new phone.

  • The ability to measure cash in and outflows based on the Profit Centers

    Hi,
    As you may be aware, we are currently undertaking a global project to split our Balance Sheet based on the divisional structure (Profit Centres in SAP).  The splitting of Receivables and Payables by Profit Centre. We have an additional requirement in the area of cash flow. What is required is the ability to measure cash in and outflows based on the profit centre that the movement relates to.
    Please help me on the above issue.
    Regards
    Srinivas

    Ok closing based on my research
    It is often not possible to set the size of a buffer so that it never becomes full. Above a certain size, which is greatly dependent on the hardware and the operating system, the performance advantage of the buffer is canceled out by increased operating system paging. A buffer that occupies too much main memory forces the operating system to perform expensive paging.

  • I've to extract the data based on the sysdate...like today dd is 11,

    BM_PERF is the table name and
    BM_PERF_YR,BM_PERF_MONTH,BM_NOP_CT_1........BM_NOP_CT_31 are the column names.
    I've to extract the data based on the sysdate...like today dd is 11
    so i've to get data from BM_NOP_CT_11 and the column names changes dynamically based on the sysdate. don't use any procedures and functions.

    You could always pivot it into a more convenient form for querying:
    WITH t1 AS
         ( SELECT 2008 AS yr, 4 AS mnth
                , 20 AS dy1
                , 10 AS dy2
                , 15 AS dy3
                , 1  AS dy4
                , 17 AS dy5
                , 99 AS dy6
                , 55 AS dy7
                , 45 AS dy8
                , 33 AS dy9
                , 22 AS dy10
                , 74 AS dy11
                , 35 AS dy12
                , 62 AS dy13
                , 24 AS dy14
                , 85 AS dy15
           FROM dual )
       , t2 AS
         ( SELECT yr
                , mnth
                , sys.DBMS_DEBUG_VC2COLL
                  (dy1,dy2,dy3,dy4,dy5,dy6,dy7,dy8,dy9,dy10,dy11,dy12,dy13,dy14,dy15)
                  AS day_data
           FROM   t1 )
    SELECT t2.yr, t2.mnth, sys_op_ceg(t2.day_data,5) day_value
    FROM   t2;
            YR       MNTH DAY_VALUE
          2008          4 17
    1 row selected.Note that SYS_OP_CEG (first discovered by Padders) is undocumented and unsupported - for production code you'd need to pick the collection row using a WHERE clause, and for that you'd need a custom object and collection type with an attribute to hold the day number.
    Message was edited by:
    William Robertson
    ...like this:
    CREATE TYPE id_value_ot AS OBJECT
    ( id INTEGER, val NUMBER );
    CREATE TYPE id_value_tt AS TABLE OF id_value_ot ;
    WITH t1 AS
         ( SELECT 2008 AS yr, 4 AS mnth
                , 20 AS dy1
                , 10 AS dy2
                , 15 AS dy3
                , 1  AS dy4
                , 17 AS dy5
                , 99 AS dy6
                , 55 AS dy7
                , 45 AS dy8
                , 33 AS dy9
                , 22 AS dy10
                , 74 AS dy11
                , 35 AS dy12
                , 62 AS dy13
                , 24 AS dy14
                , 85 AS dy15
           FROM dual )
       , t2 AS
         ( SELECT yr
                , mnth
                , id_value_tt
                  ( id_value_ot(1,dy1)
                  , id_value_ot(2,dy2)
                  , id_value_ot(3,dy3)
                  , id_value_ot(4,dy4)
                  , id_value_ot(5,dy5)
                  , id_value_ot(6,dy6)
                  , id_value_ot(7,dy7)
                  , id_value_ot(8,dy8)
                  , id_value_ot(9,dy9)
                  , id_value_ot(10,dy10)
                  , id_value_ot(11,dy11)
                  , id_value_ot(12,dy12)
                  , id_value_ot(13,dy13)
                  , id_value_ot(14,dy14)
                  , id_value_ot(15,dy15) )
                  AS day_data
           FROM   t1 )
    SELECT yr, mnth, dd.val
    FROM   t2, TABLE(t2.day_data) dd
    WHERE  dd.id = 5;
            YR       MNTH        VAL
          2008          4         17
    1 row selected.

  • KDE: Setting time and date automatically

    I've never been able to set the time and date automatically in KDE time settings. When I check the "Set time and date automatically" and authenticate myself, I always get the error message "Unable to contact time server: .". I'm wondering whether it's an upstream bug or I'm missing some required package? Does it work for you?

    matt101 wrote:I don't get it i have installed ntpd using pacman -S ntp . And then after it installed I restarted my computer and i still can't change the time to London and am still getting the "Unable to contact time server" error. Am i misinterpreting this or what? Could somone please explain to me in simple terms how to make the KDE clock show London time?
    Have you set ntp correctly?
    Also go to http://www.pool.ntp.org/en/use.html you'll have all the answers there.
    in short try this:
    ntpq -p
    If nothing happens you did something wrong, if it does, then it already works just remove ntpd or openntpd from daemon array.

  • Has anyone else had issues with changing how the time and date look on the status menu in Mavericks?

    I'm trying to make it so the year displays, but haven't been able to figure out how to change that. I have the Day of the Week, Month, Day and Time only and I haven't been able to figure out how to do that in the Date & Time or the Language & Region Settings.

    There is no option in System Preferences. However, it may be possible to set it with a "defaults write" command.
    This page shows how to set the time and date format in the Terminal, but doesn't show whether you can add the year.
    http://apple.stackexchange.com/questions/75116/i-want-to-change-clock-from-12h-t o-24h-mode-via-terminal
    If you can find a description of Apple's date format code that includes the year, then it may be possible. Or not.
    I'm guessing Apple thinks only Time Travellers need to ask what year it is...

  • Unable to set time and date

    im trying to set up my apple tv just after ive updated to the latest version, but it wont pass the setting time and date screen
    what can i do?
    HELP!

    Hello john.george,
    You may need to verify that TCP port 123 is open and available for use on your router.
    TCP port 123 is used to communicate with a network time server.
    Apple TV: TCP and UDP ports and protocols used
    http://support.apple.com/kb/HT2463
    Cheers,
    Allen

  • Constantly being asked to set time and date (Apple TV 2nd Gen)

    I am constantly being asked to set time and date on my Apple TV 2nd Gen. Has anyone had this problem? I get the screen with this message about 10-15mins after I connect to my home network. I connect, everything works fine, but then streamin, browsing stop and this screen appears. Any help would be appreciated.
    Thanks!!

    what if you try something simple as to restart your phone and check again. 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • HT1600 I have an apple tv  about two years old. Bought for a present and they never took it. I tried to hook it up cut it get stuck on setting time and date. Any help?

    I have an apple tv  about two years old. Bought for a present and they never took it. I tried to hook it up cut it get stuck on setting time and date. Any help?

    If you can view the main home screen, try selecting "settings" on the far right, then choose recent at the bottom. If not, try just unplugging power for a few minutes, then plug in and try again. Keep in mind you'll need a wireless connection and there may be several updates. Hope this helps-

  • How long should setting time and dates take?

    I have hooked up my apple tv, and it is still "setting time and date" after 2 hours.
    How long should it take?

    You have a network problme.  ATV is not able to connect to the internet, so it is not able to set it's date and time.

  • HT201304 It would be tremendously helpful to be able to access, set restrictions, and make changes from the parents device to all devices under the same iTunes account, so that I could make changes to my kids devices without physical access.

    Please help!
    It would be tremendously helpful to be able to access, set restrictions, and make changes from the parents device, to all devices under the same iTunes account, so that I could make changes to my kids devices without physical access.
    I understand that I can set up a different Apple ID for the kids devices, or take physical control of the device and make the changes myself. However, my teenage son is technically savvy enough to have a job in Silicon Valley, as are most young people these days. However, in order to access his devices the current way, I first have to bypass the four digit pass code. This starts a fight of why I need in the device and continues to escalate. The argument that I am the parent will gain access but the fight is simply exhausting, and quite frankly shouldn't have to happen at all. He is not yet an adult, he did not pay for his iPad or iPhone and I, as a parent, should have not only have the right to change options at will, and from anywhere, but look at history or current activity when I feel like it.
    I currently have the settings where app and in-app purchases require my password to be put in, and he must come to me to type it in, but I need more control and would like, and should be able to access any of our six devices and make individual changes simply by logging in to my account, with my password.
    If I can see all my devices on the "Lost My iPhone" app, this technology should be easy to make happen.
    C'mon parents! I have a pretty good kid, given all things that they can get into, but I am not stupid. For everything I see has been done, there is much more I haven't seen. I want my children to be kept safe and be able to know what they are looking at or listening to. We parents are the only ones who know our beliefs and what our kids can handle and when.
    Thanks for any support or information that I may be missing in order to fulfill my request.

    There are mobile device management solutions that can do this, including in Apple's OS X Server system, but most parents generally find that setting this up is more work than it's worth. If you're interested, though, there are a couple that at least purport to be free (I don't know if there are any hidden "gotchas"):
    http://www.unwireddevicelink.com/features/
    https://meraki.cisco.com/products/systems-manager
    and Apple's system:
    http://www.apple.com/osx/server/features/#profile-manager
    I don't think any, however, allow you to see current activity or browser history. iOS doesn't expose those to access from MDM solutions, to the best of my knowledge.
    Regards.

  • Every time I fire up my iMac a window pops up saying "Mount notification quit unexpectedly" and it gives me the option to either "Reopen" it or click OK, which gets rid of it. What is this please and how can i stop it?

    Every time I fire up my iMac a window pops up saying "Mount notification quit unexpectedly" and it gives me the option to either "Reopen" it or click OK, which gets rid of it. What is this please and how can i stop it?

    Hopefully this will help you.  Try placing your iPad in recovery mode again.  You may have to try this a few times.
    iOS: Unable to update or restore

  • Creation of a generic extractor and data source for the FAGLFLEXA table

    Hi All,
    Need to create a generic extractor and data source for the FAGLFLEXA table to support AR reporting. This table contains the necessary profit center information to perform LOB reporting against the AR data.
    Please advice on how to do this.
    Regards, Vishal

    Hi Vishal,
    Its seems a simple a work out.
    1.Go to RSO2 & choose the relevant option ie. whether you want to create Transactional DS, Master Data DS or Text DS.
    2. Name it accordingly & then create.
    3. Give description to it & then give table name FAGLFLEXA.
    4. Save it & activate. If you need it to be delta enabled then click over Delta & you can choose accordingly.
    If you still face some problem then do mail me at [email protected]
    Assign points if helpful
    Regards,
    Himanshu

Maybe you are looking for

  • How to use iMovie HD in Yosemite!

    Thanks to Ziatron for discovering this. One goes to the crossed out iMovie HD application, right click on it, open package contents, then macos, then right click on iMovie HD which opens in terminal. No worries, just leave the terminal window open, a

  • Position Level in Org Unit Structure

    Hi, Is there any FM or way to find out the position level in Org UNit for example, Chief Position level will be 1 and Chief subordinates level will be 2 and so on. Br, Piyush

  • Start stop while loop with tab control

    I want to be able to start and stop a while loop by entering and leaving a tab.  I am using an event structure to do so but it doesn't seem elegant or the right way to do this.  The only way I was able to get it to kind of work is by unchecking the l

  • Leading problem

    It might well be that I have misunderstood "leading" , but here is the problem. Using Boris Title 3D. In the "text entry and style" window I have, for example. This is a test Another Test More stuff. Now although I have added a few return characters

  • How to use 2 iPods in 1 computer

    How can I use 2 iPods in one computer using the same library but using different playlists?