Message to the user

Hi ,
I need help on below requirement.
We maintained batch managment and SLED for materials. System should send a message to the user when a particular material is not used morethatn 30 days ( Compare with posting date )
How to acheive this.
Pl reply
Thanks
A.Gururajan

Hi,
This requirement can only be met through ABAP Development.
Better ask your user to run report MC46 and generate the list of Slow-Moving Items for last 30 days.

Similar Messages

  • Dipalying message to the user to update to the latest version of the flash player.

    Hi all,
    In my latest application I am using flex functionality which
    is supported only in the latest version of the flash player. So my
    task here would be to display a message to the user for upgrading
    to the latest version of the Flash Player. I have tried working on
    it but didn't find any solution.
    Anybody who has worked on the similar issue can please help
    me out.
    Thanks in advance.

    In Menu, Project, Properties, Flex Compiler, ensure "Use
    Express Install" is checked, and FB will generate this code for
    you.
    Tracy

  • Error in sql server with a trigger (I want to display a customize message, when the user left a blank field or null) How can I do?

    How I display a customize message(with a trigger)when a user left a blank field? I want to the stop the insert statament if the user left  the status field in blank. I create a trigger but now I can't enter a row, i used an instead trigger
    too but doesn't work. I want to display a customize message when the user left the
    status field in blank or null. 
     I have the following code:
    CREATE TRIGGER [dbo].[BLANKFIELD] 
    ON [dbo].[Status] 
    FOR INSERT 
    AS 
    BEGIN 
    IF (SELECT COUNT(*) FROM inserted WHERE Status IS NULL) =1
     PRINT 'Please Fill the Status  field is required'
    Rollback;
    END 

    I agree with other comments that you should do this with specifying that the column is NOT NULL to prevent it from being NULL and a constraint if you don't want it to be blank (spaces or the empty string - note that the empty string is not the same thing
    as NULL).
    But for completeness, the reason your trigger does not ever allow you to enter a row is the code
    IF (SELECT COUNT(*) FROM inserted WHERE Status IS NULL) =1
    PRINT 'Please Fill the Status field is required'
    Rollback;
    Since you don't have a begin/end block after IF, the only conditionally executed statement is the one immediately following the IF (that is the PRINT).  So the Rollback is always executed whether or not the IF is true and so all updates are rejected.
    So if you were to do this in a trigger you could do something like the following
    CREATE TRIGGER [dbo].[BLANKFIELD]
    ON [dbo].[Status]
    FOR INSERT
    AS
    BEGIN
    IF EXISTS(SELECT * FROM inserted WHERE Status IS NULL)
    BEGIN
    PRINT 'Please Fill the Status field is required';
    Rollback;
    END
    END
    (As José noted, there can be more than one row in the inserted pseudo table, so you don't want to test whether the COUNT = 1, instead just whether one or more rows exist where the Status  is null.  If you want to prevent Status is NULL, or all
    spaces, or the empty string, then your IF statement would be
    IF EXISTS(SELECT * FROM inserted WHERE ISNULL(Status, '') = '')
    Tom

  • How do I display an informative message to the user on Oracle Forms?

    I have been asked to create a database trigger to fire when a user tries to update a column with existing data in it. If the column however has no data in it then the user can update the column with a value.
    I tried using the RAISE_APPLICATION_ERROR technique but somehow no message shows up on the frond end of the form when a user tries to update a column with existing data in it. The rest of the trigger works fine. It does not allow a user to update a column with existing values in it, yet it allows user to update column with no values in it.
    My problem is displaying a message that reads like this :''Column value must must be 100 "
    Here is parts of my code.
    CREATE OR REPLACE TRIGGER trigger_name
    IF :NEW.ATTRIBUTE2 IS NOT NULL AND :NEW.ATTRIBUTE2 <> NVL(:OLD.ATTRIBUTE2, :NEW.ATTRIBUTE2) THEN
    RAISE_APPLICATION_ERROR(-20002, 'Column value must must be : ' || :OLD.ATTRIBUTE2);
    END IF;
    Now i have tried this the syntax below. It does bring up a message on the front end of the form but it is not the message i have in mind.
    IF :NEW.ATTRIBUTE2 IS NOT NULL AND :NEW.ATTRIBUTE2 <> NVL(:OLD.ATTRIBUTE2, :NEW.ATTRIBUTE2) THEN
    FND_MESSAGE.set_name('FND', 'Column value must
    be '|| :OLD.ATTRIBUTE2);
    FND_MESSAGE.set_token('MSG', 'r21_AP_INVOICES_TRIGGER()
    exception: ' || SQLERRM);
    FND_MESSAGE.RAISE_ERROR;
    END IF;
    Does anyone has any idea?
    thx

    Unfortunately I do not have access to the Form properties. I was only asked to write a trigger to prevent a user from updating a field with data in it, and displaying a message saying that the user cannot update such a column when the user tries to update such a column.
    I know that changing the form properties might be an easier option, but unfortunately i have to everything with the help of a trigger
    Message was edited by:
    user644929

  • How can I post a simple message in the User Forum's page, immediately after logging in ?

    I had earlier asked a question re: including Merriam-Webster online dictionary into the list of search engines in the text area to the right of the location bar. I received a very helpful answer from cor-el, using which, I was able to include both the Dictionary and Thesaurus into the said list.
    I WISH TO THANK core-el SINCERELY FOR THIS HELP.
    The question is as follows:
    How can I post such messages directly in the Users Forum's pge?
    - - S.Rajaram

    what is your requirement can you please confirm.
    Regards
    Shobhit S

  • Error handling and the resulting messages to the user

    Hi all.
    I have a question about displaying error messages from custom callback classes.
    I've written my own PasswordValidation class, and when the user's password doesn't pass validation, I throw an AMException with the text of the specific reason the password was invalid.
    I see this in the stack trace in the identity log files, but in the GUI from Self Reg, all I get is a generic "An error occurred while storing the user profile."
    Is there a way to have my specific error message be the one displayed to the user? The generic one doesn't give the user much to go on as far as what needs to be fixed.
    I'm using Identity 6.1 on Solaris.
    Thank you for your time.
    chris

    As a followup, if the user account is created via the console, not through self reg, the appropriate error message does appear to the user. So it seems like just Self Reg isn't picking up the error messages from the callback classes.
    Thanks!
    chris

  • Display error message on the user profile modification page identity system

    HI All,
    I have created a workflow for chang attribute for email id. I have associated an external action to th workflow id which will check the emailid uniqueness in OID.
    When an end user login to OAM user manager and clicks on update my profile, use can see a button with modify request beside email id. when user modifies email id and save the changes, we are able to display email id already exist message in the next page of user profile. but we need to display the message on the same page.
    Can any one help us.
    Thanks in Advance.

    You can do this using java script throwing an alert popup or you can check if the fields are initial in oninputprocessing and fill a variable like gv_error = 'Enter values of mandatory fields.' and display the same in layout using
    <phtmlb:messageBar id = "messageBar"
    type = "<%= gv_severity_str %>"
    text = "error"/>
    See this thread for more..
    How to display error messages in bsp page
    search the forum before posting a new thread....

  • I have selected 'Show on edit details page' for the property 'Status Message' for the User Profile Service, yet i do not see the property.

    I would like to have the ability for the user to edit the property 'Status Message'.  In the properties it says that it should be available in the details section however I am not seeing it there.  Does anyone know if I might have something set
    incorrectly or is this expected behavior.
    Steven Albrecht
    University of Colorado Denver
    Steven Albrecht

    Hi Steven, 
    For this issue, I'm trying to involve someone familiar with this topic to further
    look at it. 
    Thanks,
    Eric Tao
    TechNet Community Support

  • Your scummy Firefox hangs when it arbitrarily decides to update its version. Why not have it send a popup message warning the user so they can close gracefully and safe their work?

    1) This site sucks beyond belief. I tried to click on the "About" button to findthe current version of Firefox and couldn't find it.
    When I came back here, the text I had entered in this window had vanished.
    LEARN HOW TO F*CKING PROGRAM.
    2) The *original* problem was that I was surfing and suddenly the whole computer went very slow, with Firefox altogether unresponsive. I lost some work. WHY DON'T YOU WARN THE USER AND ALLOW THEM TO CHOOSE WHEN TO INSTALL UPDATES?

    Have you considered the Flash update which was released a few days before the Firefox 3.6.14 update may be a big part of this problem?
    Try re-installing the 10.1 r102 version of Flash and see how it Firefox is.

  • Can we show custom error message if the user fail to log in MII system.

    Hi,
    Is it possible to show a custom error message when a log in is failed because of access restrictions?
    I am using xMII version 11.5
    Thanks
    Regards,
    Neha Maheshwari

    Since you are on 11.5, it is possible to make edits to some of the system jsp pages, etc. but it would NOT be my recommendation to do so.  Since the NetWeaver versions for MII 12.0 and beyond use UME for the login instead of the LHSecurity engine, this would be a very short term change.
    What specific changes would you like to make, the login page messages, query result messages, applet messages?

  • Help Pls, How to display feedback messages to the user on 10.1.3

    Hi, can anybody explain how to use the <html:messages> tag and the SaveMessages( request , ActionMessage ) on an 10.1.3 ADF application?
    There is not such a logic on the ToyStore sample and my requests for help on this thread "Internal Error" on saveMessages(...) has been ignored ....
    Omar

    Chris,
    The following thread should give you some insight on how to migrate your 10.1.2 Struts + ADF application to 10.1.3: reportErrors(PageLifecycleContext ctx) not called
    If you are not ready to migrate, you can also develop in JDeveloper 10.1.2 and deploy to 10.1.3. The documentation to do so should be available shortly.I will repost when it becomes available.

  • An error message says: the user name is incorrect

    When trying to send emails on my iPad it shows the error message. How do I fix that?

    Delete the account and re-install.

  • I have been uploading videos to Facebook with no problem.   Now get a message that the user has opted out of FB platform.  Videos will not upload.

    I have been uploading videos to FaceBook for about a month now with no problems.  Yesterday, I went to post another video and got this message "user has opted out of FaceBook Platform."  I can still post photos from this computer as well as make regular written posts.  All videos posted are 10-11 minutes in length.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • Displaying Messages to the user

    Hi,
    1. I have created one webDynpro application in which in default view I am using a tabStrip which contains 4 tabs.
    2. 4 different view are associated with these 4tabs.
    3. I am using messageArea UIElement in each view.
    4. But if I try to display any message using wdComponentApi.getMessageManager().reportSuccess(), it displays the same message in each view.
    5. So if I navigate through the tabs, it shows me same message in each & every view.
    6. I don't want to display the same message in another views.
    How to resolve this problem?
    Thanks in Advance

    To display an error message:
    wdComponentAPI.getMessageManager().reportException("Your Error Message", false);
    To display an warning message:
    wdComponentAPI.getMessageManager().reportWarning("Your warning Message");
    To display an success message:
    wdComponentAPI.getMessageManager().reportSuccess("Your success Message");
    This works in an iview other than do modify view.
    if you are using another Java file, you need to pass
    com.sap.tc.webdynpro.progmodel.api.IWDComponent wdComponentAPI
    from your iview to use this messages in your application in that file.
    Thanks & Regards,
    Mohak

  • I need to create an account for my daughter and I keep getting the message that the user id already exsists. When I checked to see if the user id was in the system it told me that it didn't find one. How can I create another account for her?

    I do not want to have to assign her another email address because this is the one she has used as long as long as she has had the ipod. She is under my email account but has her own address.What do I need to do to fix this? She got a card for Christmas that I can't put in to an account for her and she cannot use. Any insight would be appreciated. Thanks!

    You must create the account using an Apple device, a Mac (Lion or greater) or an IOS device (IOS5 or greater). Having done that you will be able to sign in from your Windows machine.
    FYI, iCal is an application that can display calendars from iCloud (and others) it is not a calendar itself, merely a calendar client. In Windows Outlook is the calendar client.

Maybe you are looking for

  • Search indexing not working in Outlook PST files

    My boss recently got Office 2010 on his new laptop.  I copied his PST's from his old laptop whihc had Office 2003 on it to the new one and added them to his profile.  They are there and look to be workign fine, until you try any sort of search on the

  • Memory leak issue in tuxedo server

    Hi, I am facing memory issues in our tuxedo application.One of the server memory utilization is gradually increasing after reboot. As a temporary solution , we are making restart of that particular server every week. I have installed Valgrind tool.i

  • Problem in Material replications

    Hi friends, I am having a problem on Material replication from R/3 to EBP. I had configured all the required settings in EBP as well as in R/3. Whenever we are starting initial loading R3AS I am getting outbound queues in EBP instead of R/3. I am get

  • Cannot Modify Table

    Error occurs when saving or activating the table after changes: Error in object editing "Cannot access file /usr/sap/MD7/trans/sapnames/GALT_P" Path was checked in AL11 and it exist.  GALT_P last user who modified the table. User GALT_P does'nt exist

  • I think I deleted something I shouldn't have, I photo gets hung up.

    A while back I tried to delete photos from Iphoto. I can still download photos from my camera and they go into the Iphoto library and i can see them in the library but when I try to open a photo, actually when I click on any part of the Iphoto screen