Notifications for objects in the objectlist

Hi,
I am trying to develop a webdynpro application to imitate IW32 transaction in SAP ( albeit it will be much simpler to use with majority of func. on single screen ). I am able to create notifications for the work order object list using 'BAPI_ALM_NOTIF_CREATE' and assign this notification to the objects in workorder objectlist using 'BAPI_ALM_ORDER_MAINTAIN' however when i open up the object notification in IW23 transaction the notification has a OSNO (outstanding notif) system status and no work order number displayed. ( so you can see the notification nr in work order objectlist via IW32 txn and on double click you go the notificaiton , however navigation the other way round is not possible as no work order nr is displayed  in notification).
However if i try the same thing via IW32 transaction the new notification created has NOPR ORAS( notif in processing, order assigned ) system status with the workorder number displayed in notification . (   + I want same behavious when i create notif thorough web dynpro +    ).
I have tried using the 'STATUS_UPDATE' Fm to update status of newly created notifications and it seems to change notification status from OSNO to NOPR ORAS but still the workorder number does not show up ( so it defeats the whole purpose of system status change ).
Please let me know if anyone else has faced a similar issue before and how this can be handled.
Thanks,
Vivek Priyadarshi
Edited by: Vivek Priyadarshi on Feb 10, 2011 9:31 PM

issue resolved by implementing an enhancement in LIQS0F08. The variable sfbcall-aufnr in form check_status_to_order has to be set with order nr. AUFNR. This variable is set through IW32 transaction however somehow it does not get set when creating notifications through 'BAPI_ALM_NOTIF_CREATE'.

Similar Messages

  • Calendar-notifications for events in the past

    Since iOS 7, my notifications for an calendar-event in the notification center are gone, if i'm checking them to late. Is it possible to change the settings, so I can see them, until I'm going to delete them?
    If not, is there an alternative calendar-app with push notifications I can use instead?
    Thanks for an answer.

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Extended Notification for UWL + Change the description of task/workitem

    Hi,
    I have implemented the Extended notification for UWL and I am getting the emails in outlook. Now the requirement is to customize the body of the email completely for the task '12300096'.
    I have tried going to PFTC->Description but it does not have full text which I am getting in the email. I tried SE63 also. But in the email I am getting
    The following work item requires processing in your SAP Workflow inbox in system xxx.
    <Task description>
    Log on to this system and process the work item.
    If you have problems logging on to the system, contact your system administrator.
    Now I want to remove the following lines;
    The following work item requires processing in your SAP Workflow inbox in system xxx.
    Log on to this system and process the work item.
    If you have problems logging on to the system, contact your system administrator.
    I don't find from where it's coming - please let me know how to remove these lines so that I can add my text in SE63.
    Thanks,

    Hi,
    Go to SWNCONFIG -> General settings.
    There you have TEXT_GOTO_INBOX - DTSWN_MSG_GOTO_INBOX. (I am not sure if this was the correct one, but you should check all the texts in general settings, if this was not the correct one.)
    Now open dialog text SWN_MSG_GOTO_INBOX in SE61 (you see that you need to remove the prefix DT from the name). Here is your text. You can make your own Z-version of a dialog text in SE61, and then use that in SWNCONFIG general settings.
    Regards,
    Karri

  • Notifications for events in the past

    Since iOS 7, my notifications in the notification center are gone, if i'm checking them to late. Is it possible to change the settings, so I can see them, until I'm going to delete them?
    If not, is there an alternative callendar-app with push notifications I can use instead?
    Thanks for an answer.
    DerKomahnda

    Hello Ryan,
    I created a small demo which could make the scenario: the event mesage could be delayed:
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace P20150409
    class Program
    static void Main(string[] args)
    EventLog myNewLog = new EventLog("Application", ".", "dotNET Sample App");
    myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
    myNewLog.EnableRaisingEvents = true;
    while (true)
    System.Threading.Thread.Sleep(3000);
    string EventWriteTime = DateTime.Now.ToString();
    Console.WriteLine("Log is written at" + EventWriteTime);
    myNewLog.WriteEntry("Test message written at" + EventWriteTime + " " + System.Threading.Thread.CurrentThread.ManagedThreadId, EventLogEntryType.Information);
    Console.WriteLine();
    Console.ReadLine();
    private static void MyOnEntryWritten(object sender, EntryWrittenEventArgs e)
    System.Threading.Thread.Sleep(6000);
    Console.WriteLine("EntryWritten event is fired at" + DateTime.Now.ToString());
    Console.WriteLine("Log time is" + e.Entry.Message);
    Console.WriteLine();
    This is the result:
    As we can see that the interval between event fired time and the current written time is bigger and bigger, so it could be that an event is fired 2 year later...And for reason, we can see that it is becuase i set the event sleep 6s whenever it
    is fired. So i am wondering in your event, there is a similar feature which causes this delay.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why can't I see the bounding box for objects on the pasteboard?

    Adobe CC sucks. Why last week was I able to see the bounding box of objects that I had on the pasteboard in InDesign CC, including objects that didn't contain anything yet, and now suddenly this week I can't see them?
    It seems as though every week something inexplicably gets changed around. First Save As had no shortcut, then suddenly the shortcut is back, but it doesn't work.
    Get it together Adobe. I don't want to be paying a subscription for a product that feels as though it's still in Beta mode.

    Hi Steve,
    Yes thanks, I don't think I was clear in what I wrote. I knew that they could be turned back on, but why did I open InDesign this morning to find my workspace/preferences different than how I left them on Friday?
    And I know it isn't a case of my mistakenly turning off the frame edges, because the operator that sits next to me had the exact same thing happen to her copy of InDesign this morning also.
    I understand the requirement to update things, but it really does feel as though I'm using software that is still in testing.

  • Email notification for shortdumps in the productive CRM system

    Hello,
    is it with standard possible to get an email notification if a shortdump occurs in the productive system?
    Or has anybody realized such a requirement with own coding?
    Thanks a lot.
    Best regards
    Manfred

    I'm not sure about CRM but I guess this must be the same as in R/3: tcode RZ20 offers lots of various monitors (CCMS monitors).  It is possible to configure the monitors that you need in a way that an e-mail is sent automatically when some specific circumstances occur (when the monitor triggers an alert). This is performed by autoreaction methods.
    I can see a monitor called "Shortdumps" among lots of pthers in RZ20 (under SID\Application server ... \R3Abap) - so maybe that would be what you need.
    regards

  • How to add the "Services for Object" icon/functionality.

    Dear all.
    I have seen in some SAP standard transactions a button named "Services for Object" in the title bar of the screen. An example is in transaction MM03. The button is to the left of the title "Display Material xxxx".
    Does anyone know how I could incorporate such functionality in my own program.
    Thanks
    Lande.

    Hi,
    You need to use GOS for this.
    1. Create a Generic object thru transaction SW01.
    then call the following method in the PBO
    module call_gos_attachment output.
      if sy-tcode eq c_yatt2 .
          i_borident-objtype = 'YASTATTA'.
          i_borident-objkey = yatt-number.
          create object gos_manager
            exporting
               is_object            = i_borident
               it_service_selection = i_services
               ip_no_commit         = ' '
            exceptions
               object_invalid       = 1.
      endif.
      if sy-tcode eq c_yatt3.
          i_borident-objtype = 'YASTATTA'.
          i_borident-objkey = yatt-number.
          create object gos_manager
            exporting
               is_object            = i_borident
               it_service_selection = i_services
               ip_mode              = 'D'
            exceptions
               object_invalid       = 1.
      endif.
    endmodule.                               " Call_gos_attachment Output

  • I've turned off push notifications for certain apps but the push notices still appear. Any idea why?

    Hi there,
    Apologies if this has been asked before.
    My issue is not with notifactions not working, exactly the opposite. I have turned off notifications for several of the apps on my phone, but notifications still appear.
    Is this a known problem? The main offender is an app called FreeAppADay.

    I got an iPhone 4s and I'm experiencing the same problems.  I used facebook messenger, and used to get the push notifications to that app, but now that i've deleted it I no longer get the messages directly to the facebook app.
    I have push on in the mail settings and notification center for facebook are on as well.  I also have push notifications on in the settings for facebook.
    I've tried deleting the app and reinstalling, no fix.  I haven't tried a hard reset yet.
    So far, I figured out that it's not iOS or the facebook app, somehow it is a problem with my account.  I logged into my wife's account on my iphone and her account is able to recieve push notifications to my iphone.
    Any thoughts?

  • Can I have push notifications for Mail, like on the iPhone?

    Hello,
    I was wondering if it's possible to enable push notifications for Mail on the Mac, basically like on the iPhone. I know that you can choose how often you want Mail to check your inbox, but this only works if Mail is open. Is there a feature that allows me to close the application, but still receive notifications when a new mail arrives?
    Thanks

    Anon M wrote:
    Hello,
    I was wondering if it's possible to enable push notifications for Mail on the Mac, basically like on the iPhone. I know that you can choose how often you want Mail to check your inbox, but this only works if Mail is open. Is there a feature that allows me to close the application, but still receive notifications when a new mail arrives?
    Thanks
    Not as yet, although
    1. The installation of third party programs such as Growl may give you this option. I don't use it personally so       have a look at it and similar but at your own risk
    2. Wait for Mountain Lon (10.8) to be released later this year as they are advertising such things as                  notifications, more in line with the iOS interface of iPads and iPhones
    http://www.apple.com/macosx/mountain-lion/
    3. In the meantime, do some reading here on threads relating to Mail in Lion as it seems like you certainly    having an issue with Mail that most people do not have.
    Good Luck
    Pete

  • "Services for Object" in my own transaction

    Hi everybody,
    In MM02 you see the button for the toolbar "Services for Object" in the titlebar.
    I want to add that same functionality in my own transaction. Does anybody know how to do this?
    Thanks,
    Tim van Steenbergen.

    Sure,  you can do that.  Something like this.  You will have to use a valid object and key.  The example uses a maintenance notification.
    report zrich_0001 .
    parameters: p_check type c.
    at selection-screen output.
      call function 'SWU_OBJECT_PUBLISH'
        exporting
          objtype                 = 'BUS2038'
          objkey                  = '000010004288'
    *     CREATOR                 = ' '
    *     METHOD                  = ' '
    *   TABLES
    *     CONTAINER               =
       exceptions
         objtype_not_found       = 1
         others                  = 2.
    start-of-selection.
    Regards,
    Rich Heilman

  • Services for object linked note to DMS DIR

    dear sir,
    we have created  DIRs(cvo1n) and attached  notes using Services For Object. The notes is visible in attachement list.Now we want to generate a report in which these notes should be available against respective DIRs.
    we created a query using SQVI, linking tables DRAW,DRAT,TDWST,TSOTT and SOOD.
    But this will show all the notes available in that language ( no link with DIRs)
    we want to have the Notes which are attached to respective DIRs in report.
    it may be possible if we link the table contains DIR and SOOD link table,which we don't know
    can you suggest some method to get the details of  Notes available in Services For Objects?
    thanking you
    srinivas pai

    i am closing this thread

  • Idoc info in 'Services for Objects' when a sales order is created

    Hi Guys
    Could one of you remind me how to turn on the Idoc info in the 'Services for Objects' > workflow option.
    I know how to turn on the services for objects using the user profile and entering parameter id:SD_SWU_ACTIVE , parameter value: X.
    I am not able to see the Idoc number/info that was used to create the sales order. I can see all the information in WE05 but the sales order does not show me any history of having used the Idoc.
    When i go to sales order and select the services for objects option followed by workflow the system should show the IDOC number/info used to create this order.
    Your help will be appreciated.
    Thanks
    Manish
    Edited by: Comes Naturally on Feb 23, 2009 3:46 PM

    Hi,
    1. Configure the IDoc with message type ORDERS and basic IDoc type as ORDERS05 (You have to follow common step-by-step approach)
    2. Configure Message Control to automatically generate IDoc whenever a Sales Order is created. (I mean output type)
    So whenever a Sales Order is created, output type will generate an IDoc.
    Hope this information is useful.
    Regards,
    AK

  • Services for object in transaction EHSAMBTAET (Health Center Services)

    Hi all.
    In transaction PA30 there is a functionality called "services for object". I would like to have this functionality in the transaction EHSAMBTAET (Health Center Services) as well. At the moment when you choose it in the menu it just says: "No services available". Can anybody give me a hint on how to do this?
    Many thanks
    Liselotte

    As far as I know, that "Services for object" is the Global Object Services (GOS), and requires a Business Object (BOR).
    The Health Center Service doesnt currently provide such a BOR object.
    see for more info: http://help.sap.com/saphelp_erp2005/helpdata/en/be/3fe63659241157e10000009b38f889/frameset.htm
    Message was edited by: Frank Besler

  • Services for Object - Create external document (url) 132 characters limit

    Hello,
    I have this requirement:
    Maintenance people would like to relate a document on our portal on a work order to be able to print it with the work order.
    My suggestion was to use Services for Object in the Order -> Create external document (url).
    But the adress field cannot contain more than 132 characters.
    I have URL longer than 132 chars:
    eg: http://server.domain:port/irj/go/km/docs/documents/AAI/Gestion%20documentaire/Public/Entretien/Instructions%20de%20travail/EU-IT-01-02.pdf
    What do you suggest me?
    Thanks,
    François

    Thank you Pete but we are release 700 and this note applies to release 620 and older. I will try to find another note or another way.
    In the meantime we use the short-ID of SAP Portal Documents which are long to retrieve but always under 132 char.
    François

  • Services for object for a custom document

    Hi everyone,
    We have a custom transaction to create a custom document called enquiry. Upon saving, the document number will be generated and stored in a table. I would like to add the functionality of Services for Object in the transaction to be able to attach documents to the enquiry. I would like to ask if it is possible to create a business object for this custom document to be able to utilize the Services for Object functionality.
    Thanks!
    Eric

    you can choose to create BO for this or simply have a another identifier for this object and youc an use class OT to upload documents to BDS.
    all you need is call of this FM whicih will automatically put the icon for GOS
    SWU_OBJECT_PUBLISH
    alternatively you can use class cl_gos_manager
    Raja

Maybe you are looking for

  • Itunes 10.6.1 (7) shows right artwork, ipod does not

    This is frustrating me to an unbelieveable degree.... I have a lot of songs on my ipod classic. I am a DJ and certainly love to be able to load as much music as I want on there, however, recently (2-3 weeks ago) I added some new songs on there. When

  • ISU function module bapi_utilinstallation_chanfact

    hi, i hv to use bapi_utilinstallation_chanfact to replace due date field BIS in ETTIFN table to the sy-datum.what are the parameters that i hv to pass & which table should i pass(i am currently passing it the AMOUNTTABLE structure).what parameters hv

  • BIN_TO_NUM works only randomly?!

    Hey, I have 2 mappings both make use of the BIN_TO_NUM function in the exact same way. I the first mapping everything works fine, in the second maping there comes an error during deployment, that the "BIN_TO_NUM" function has to be defined first. Doe

  • Our corporate proxy prevents downloading and installing Photoshop CC and makes the installer crash.

    What IP's and ports the downloader/installer is connecting to so we can make changes to our firewall & proxy settings. Can't find them on Adobe site. The installer crashes on every installation attempt and does leave an error report in win7 applicati

  • HP Photosmart C410a Document Printing question

    I've only had this printer for three days now, but there is something odd that I've noticed:  on my old printer (HP C7180), whenever I had to print a multi-page document, it was printed in such a way that when it was completed, the first page of the