How to show Popups when the data is updated ????

kishi_gkishi_g Member Posts: 162
edited 2008-01-23 in Navision Attain
Hi,
I used one table for discount prices. now any one enter data in to that table then i will show popups (like for example 10 new records added.)

how can i do that in this scenario????


Thanks & regards,
Kishore.

Comments

  • SavatageSavatage Member Posts: 7,142
    The only way I see a message like that happening would be to have the data entered into an "entry" type table and once the data is entered there you click an Update button that transfers the data from the entry table to it's final desination table. How else would a table know how many new entries were added if you enter it directly into the table?
  • DriesDries Member Posts: 29
    Hi,


    How is the data inserted into the table? is it on a form, report, codeunit, dataport or xml?

    If the data is inserted via an automation process then you need to use the timer after the process run then you show the message to the user based on his userid.

    Actually, there're are different ways of popping up a message. You just need to be more specific on how do you insert entries, when and who do you need to inform about thoses new entries.


    Cheers,
    Dries.
  • kishi_gkishi_g Member Posts: 162
    Suppose in the database i had 20 users. suppose i create new item in item table. then the popup message will appear to the perticular users.

    how can i do that???




    Thanks & Regards,
    kishore.
  • DriesDries Member Posts: 29
    You have two choices:

    Via active sessions where you can get your active USERID or sending an email to your complete users in the user setup table.
  • McClaneMcClane Member Posts: 40
    you could add the table to the ones logged in the Change Log Entry. Then create a codeunit with a timer to look in a specific interval for modifies/inserts/deletes in the table Item and show a message, if some of these events have happened.
Sign In or Register to comment.