How to get Notification based on Partner Information

Dear Gurus,
Does anyone have any idea, how to populate Notification details based on Partner Information. The scenario is mentioned below.
The user creates the Notification and based on equipment cost center, system finds out the approver and update in Partner data in Notification.
As the Partner user needs to approve the created Notification, how to populate those Notification in a separate z- Application.
Advance thanks for the comments / update.
Regards,
Sahu

Sahu
You would need to develop a solution.
Most of the notification user-exits start with QQMA* - see transaction SMOD.
PeteA

Similar Messages

  • How to get PERNR based on user ID

    Hi All,
    How to get PERNR based on userid.
    please help me in resolving this.
    Thanks for the support.
    Regards,
    Dhananjaya R E

    hope this will help u
    DATA:   t_pernr LIKE pa0105-pernr,
              t_email LIKE pa0105-usrid_long.
    STEP 1 - Find personnel number for UNAME
       SELECT SINGLE pernr
                 INTO t_pernr
                 FROM pa0105
               WHERE subty = '0001'
              AND endda >= sy-datum
             AND begda <= sy-datum
             AND usrid = p_uname.
    Employee record found*
    IF sy-subrc = 0.
    STEP 2 - Find email address for personnel number*
    SELECT SINGLE usrid_long
             INTO t_email
             FROM pa0105
            WHERE pernr = t_pernr
              AND subty = '0022'
              AND endda >= sy-datum
              AND begda <= sy-datum.

  • How to get CHARG based on matnr

    Hi Experts,
              I want to get PO batch(CHARG) based upon matnr.I am using BAPI_PO_GETDETAIL and receiving PO details by providing purchase order number.The line item table there is no field called charg. ..
    So How to get Charg based upon matnr
    Thanks & Regards
    Mathi

    Hello,
    Get from the table
    MCHA - Batches
    Regards,
    Vasanth

  • Reg: how to get notification type QMART

    Hi experts,
    how to get notification type QMART
    BAPI_DOCUMENT_GETLIST2..
    regards,
    ramesh..

    Hi
    Get the same from <b>QMEL table
    Master table is TQ80
    and texts are TQ80_T</b>
    Reward points if useful
    Regards
    Anji

  • How to get the addition DML Error information when using PL/SQL?

    Given the following statements:
    drop table bob;
    create table bob
    col1 number(6,2),
    col2 number(6,2) not null
    insert into bob(col1, col2) values (123.12, null);
    insert into bob(col1, col2) values (123.12, 12345.12);
    commit;
    I get different behavior from Oracle error messages.
    Here is the sample output:
    Table dropped.
    Table created.
    insert into bob(col1, col2) values (123.12, null)
    ERROR at line 1:
    ORA-01400: cannot insert NULL into ("BOB"."COL2")
    insert into bob(col1, col2) values (123.12, 12345.12)
    ERROR at line 1:
    ORA-01438: value larger than specified precision allows for this column
    Commit complete.
    Note that in the first error (1400) the generated error message contains the name of the problematic column ("BOB"."COL2"). Also note that in the regurgitated statement the error pointer (*) is at the far left. In this case, the regurgitated statement is of no use to me because the error message identifies the culprit column.
    However, in the second error (1438) the generated error message is very generic and does NOT indicate the problematic column. In addition, in this case the error pointer (*) of the regurgitated statement has moved to point to the troublesome column. In this case, I must use BOTH the error message and the regurgitated statement to completely understand the problem.
    This difference in how error messages are constructed causes difficulty within PL/SQL. If PL/SQL happens to generate a 1400 error message, then simply capturing the error message and giving it to the user provides enough information for him/her to solve the problem. However, if a 1438 error is generated then the resulting error message has insufficient information for the user to pursue the problem.
    So my question is, within PL/SQL do you know how to get your hands on Oracle's regurgitated statements so that they can be presented to the user to assisted him/her in problem resolution?
    Thanks.

    I don't think it's that easy. Notice that if you put the insert into an actual pl/sql block, you don't get the correct column pointer anymore.
    BEGIN insert into bob(col1, col2) values (123.12, 12345.12); END;
    ERROR at line 1:
    ORA-01438: value larger than specified precision allows for this column
    ORA-06512: at line 1
    Richard

  • How to get logged-in user/group information in WebLogic Portal 10.3.2

    Hi bros.
    I have a codesnipet to get information about user who actually logged in weblogic portal:
    import javax.security.auth.Subject;
    import javax.security.auth.login.LoginException;
    import com.bea.p13n.security.Authentication;
    import com.bea.portal.tools.security.user.*;
    public class UGMSummary {
         private static final String username = "weblogic";
         private static final String password = "webl0gic";
         public UGMSummary(){
         public void test(){
              try {
                   Subject tmp = Authentication.authenticate(username, password);
                   //PolicyItem pi = new PolicyItem();
                   //System.out.println("######## " + Authentication.getCurrentSubject().toString());
                   UserIDBuilder builder = new UserIDBuilder();
                   UserID uid = builder.createResourceID();
                   System.out.println("######## Admin ? " + Authentication.isAdministrator(tmp));
                   System.out.println("######## Anonymous ? " + Authentication.isAnonymous(tmp));
                   System.out.println(" ######## " + uid.getUserName());
              } catch (LoginException e) {
                   System.out.println(e.getMessage());
                   //e.printStackTrace();
    }Some println commands above are used to mark in console. I can ensure that there is an user (admin) logged in weblogic system by executing command: Authentication.isAdministrator(tmp);
    Output of codesnipet above is:
    ######## Admin ? true
    ######## Anonymous ? false
    ######## nullMy problem is impossible to use UserID object to get username of weblogic user. Output of command: uid.getUsername() is: null
    Somebody tell me why my code doesn't work though it can authenticate an user.
    Thank in advance.
    ps:
    Some Javadoc for UserID can be found here:
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14255/index.html
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14255/index.html

    Hi, Kevin.
    I'm glad to see your response again. I found some interesting information from your recommendation link. At this time, I know that impossible to get users/groups information by using DelegatedAtnProxyManagerControlFacade (ref: http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14255/com/bea/portal/tools/ugm/controls/DelegatedAtnProxyManagerControlFacade.html) interface.
    But, I dont know how to get an instance of an object that implemented this interface. My friend give me a codesnipet that shown the way to get a DelegatedAtnProxyManagerControlFacade by using this codesnipet in a GlobalController:
          try
            DelegatedAtnProxyManagerControlFacade delegatedAtnProxyManager = (DelegatedAtnProxyManagerControlFacade)getControl(DelegatedAtnProxyManagerControlFacade.class);
          catch (PolicyRefException e)
            reportPolicyRefException(e);
          catch (OperationNotSupportedException e)
            reportOperationNotSupportedException(e);
          }But I dont know what global.GlobalController actually is ?
    I've asked Google for information but I got nothing. Do you know any documentation that describes about this controller ?
    Thanks, regards !
    Doubt_Man.

  • How to get notifications from facebook app like wh...

    I am using nokia x2-00. It supports notifications. Now i am getting an alert whenever i get a msg in line messenger or whatsapp even i am offline. How to get the same from facebook mobile app..?

    See:
    iOS: Understanding Notifications
    Go to Settings>Mail>Fetch new data and make sure that Push is On and the Fetch is set to a time other than Manually. Not all Mail account support Push so yo have to have the iPod to periodically check the mail server for new messages.

  • How to get Mobile number and other information from SIM card

    Hi,
    I like to get mobile number,mobile user name and other information from SIM card using j2me program.Is there is any API for this one.
    Any one give guidelines to me how to get this.
    with regards,
    latchiya

    Please use the search! this topic has come up lots of times already.

  • How to get notification of new post  for any discussion topic

    hi,
    i ve started a discussion in portal and i want to get notification for any new post to that discussion topic in my uwl....can anybody help me
    thanks in advance
    Message was edited by: Amit Pandey

    Have a look at this:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/b03a381dc88d49b1f509cde90a27d1/frameset.htm
    This should help solve it!

  • How to get the computer to enter information

    I am trying to create a website that will match lonely people that have no place to go for the holidays with people that are willing to "host" these people. In order to do that I need people to be able to enter information in and have the computer match the information with another person's information. First: how do I make a space on iweb where people can enter the information, and second how can I get the computer to sort through and show the results of the information?

    holidayjoy wrote:
    First: how do I make a space on iweb where people can enter the information, and second how can I get the computer to sort through and show the results of the information?
    Welcome to the discussions. It may be hard to do this in iWeb without experience of programming. So here are some web-based "community sharing" sites which you could easily sign up with and optionally link to from your iWeb site:
    http://www.backpackit.com/tour
    http://www.ning.com
    http://www.lefora.com
    And you could embed a _Frappr! Social Map_ into your iWeb site via the +HTML Snippet+ window. ...It gives Web site owners and visitors an easy and unique way to visualize and interact with each other. Visitors can add their name, photo and message directly on a Web page embedded with +Frappr! Maps+, and the Web site owner gets real-time stats on where visitors are coming from and how often they visit.
    And here is a list of 125 "services" allowing multiple users to group and collaborate/share including blogging, bookmarking, tasks, to-do etc.

  • How to Get  the SSO Logged user information in database trigger

    I need to track which SSO user is inserting data into a table , so how can i get the information of that user in a database trigger on that table
    thanks

    Try using portal30.wwctx_api.get_user returns a varchar2 (PUBLIC) or the Username that is logged in
    I need to track which SSO user is inserting data into a table , so how can i get the information of that user in a database trigger on that table
    thanks

  • How to get notification of ios update

    Hi everyone
    I'm an Apple newbie, having bought an iPad Mini a few weeks ago, and I'm still trying to understand some of iOS's quirks. Latest puzzle concerns updates to iOS, grateful if someone can advise how this is supposed to happen.
    So I saw an article on the BBC News website saying there was an important security update. Looked at the iPad home screen - nothing there. Looked in the Notification Centre, nothing there. Drilled down into Settings>General>Updates, and there it was, so I installed it and I'm now up to 7.0.6. But I really don't want to have to go into this every couple of weeks just to see whether there's an update, I expect the device to notify me somehow. So my questions are:
    1. I really want this to work like Windows Update, ie downloading and installing in the background. Can iOS be set to do this, if so how ?
    2. If that really isn't possible, then I want to get a notification that an update is available. How can I get a message either in the Notification Centre or on the home screen to tell me ? NB I've seen references in other posts to getting a little red "badge" on the Settings icon, but I emphasise that I didn't get that. I know what it ought to look like because I've seen similar badges on the App Store icon, but I did not get that on the Settings icon. Do I have to turn that feature on in some way, if so how ?
    Thanks in advance.

    Thanks King_Penguin, that's very helpful. Didn't know it had to be connected to power to even get a notification, that could well be why I didn't get the badge. Odd though; I can understand needing power in order to install an update (in fact I recall getting a prompt to do just that when I updated), but not just to discover whether an update is available. Have some helpful points on me !

  • How to get notifications on my home and looked screen?

    I'm trying to get my sms and may messenger messages to be shown on my home screen like a preview. I know that there is a small icon that is shown on the left corner but this isent sofisient and I'm loosing impotent sms and messages. So what do I do? And is there a page dedicated to z3 and how to do stuff?

    you can download and app like this
    WidgetLocker
    https://market.android.com/details?id=com.teslacoilsw.widgetlocker&feature=search_result#?t=W251bGws.....
    ICS Lockscreen HD
    https://market.android.com/details?id=com.dj.golocker.theme.icecream&feature=search_result#?t=W251bG...
    https://market.android.com/details?id=dcombl.golocker.ics&feature=related_apps#?t=W251bGwsMSwxLDEwOS...
    Lucent Lock Screen
    https://play.google.com/store/apps/details?id=com.whitegorillamedia.lockscreen&feature=search_result....
    Extended Controls
    https://play.google.com/store/apps/details?id=com.extendedcontrols&feature=related_apps#?t=W251bGwsM.....
    iPhone notifications lite
    https://play.google.com/store/apps/details?id=com.nlucas.iphonenotificationslite&feature=search_resu...
    Notification Bubbles
    https://play.google.com/store/apps/details?id=com.commind.bubbles&feature=search_result#?t=W251bGwsM...
    NotifierPro Plus
    https://play.google.com/store/apps/details?id=com.nlucas.notificationtoaster&feature=more_from_devel...
    and it seems that handcent has a similar feature
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • How to get the message Sender's information in MSMQ?

    Hi, everyone
    I am going to develop a Windows server to monitor the messages in MSMQ. Now I wanna get the message sender's name(that is the API of this message, like class name or function name of who send the message.) I make a simple demo and it can easy to get
    the message body. But is it possible to get the sender's info by using any MSMQ method ? Looking forward any answers. Thanks so much.
    Shuo Lei

    Hi,
    Sender object is type of object any time if you want to use any property/attribute of sender object first you need to type cast it with your desire object.
    For more information, you could refer to:
    http://blog.jsinh.in/managing-msmq/#.VPe5mnkfqM8
    http://forums.asp.net/t/343932.aspx?How+can+I+get+values+of+sender+object+in+C+
    Regards

  • How to get Oracle RTC Messenger contacts information?

    1. How can I get OCS 10g R2 RTC Messenger contacts information?
    2. Can the method be used for web presence? Thanks.

    The Oracle Certification Program site should answer your questions.
    Assuming you are trying to get certified on the DBA track (there are many different certification tracks, I'm assuming when you say 11g that you mean to indicate that you're interested in the DBA track), you can see the progression of the exams and the options you have on this page.
    Justin

Maybe you are looking for

  • Passing check box values to WHERE clause

    Hi, I have created a Data block - 'CONTACTS' (Database data block) and has database item - 'Code', 'Descr' The number of records displayed is set to 5. Value When checked - 'Y' Value When Unchecked - 'N' Check box mapping of other values - 'unchecked

  • NEW TO MAC PLEASE HELP

    OK SO I BOUGHT THIS IMAC TODAY WITH 20'screen and i am unable to install anything i download it keeps asking me for a prog to open it with but ive looked everywere and cant find anything. why is it when you download somthin off the net that it does n

  • How to pass JMS header Information to proxy field

    Hi, I am working with JMS to Proxy scenario (Synchronous). I am getting one header field at sender JMS channel which need to be mapped with one of the Proxy field. and similarly  when proxy returning one field value that need to be mapped with receiv

  • How can I get sent emails to NOT appear in the Sent mailbox?  Thanks!

    OS X 10.8.3 Mail 6.3 (1503)

  • Ipad video no sound

    when i used my ipad to record the video, the sound is too low.....but i have make the speaker level higher already!