Reg: mail need to be trigger for salary change

Hi gurus,
I have one requirement.
If any one does the changes in salary I mean in infotype 0008 then one mail need to be trigger.
Can any one tell me the procedure how to do this requirement?
Regards
Ramesh

HI Soumya,
Thank you very much .
I have found one BOR for this workflow
BOR name  : BSAICPAY
if any changes happen in infotype 0008 then changes event will tiger in this bor.
I completed this requirement trough simple workflow
Thank you all
Thank you for your support
Regards
RameshG

Similar Messages

  • [svn:fx-trunk] 12481: Because of the Change/Changing changes in VideoPlayer , we need to also listen for a CHANGE as well as the CHANGE_END, CHANGE_START, THUMB_PRESS, and THUMB_RELEASE events.

    Revision: 12481
    Revision: 12481
    Author:   [email protected]
    Date:     2009-12-03 18:48:17 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Because of the Change/Changing changes in VideoPlayer, we need to also listen for a CHANGE as well as the CHANGE_END, CHANGE_START, THUMB_PRESS, and THUMB_RELEASE events.
    Also, when clicking on the track and animating, the scrubbar's playedArea should move along with the thumb.  We do this by using pendingValue, rather than value in updateSkinDisplayList().
    QE notes: -
    Doc notes: -
    Bugs: SDK-24528
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24528
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/ScrubBar.as

    My first observation is that you don't reraise the error in the CATCH handler. That is bad, because it makes the proceedure fail silently which may be very difficult to troubleshoot.
    The version numbers for Change Tracking are indeed database-global. MIN_VALID_VERSION can be different for different tables, if they have different retention periods. But if they all have the same retention period, it seems likely that MIN_VALID_VERSION
    would increase as the database moves on.
    I'm not sure about your question Can we use the CHANGE_TRACKING_CURRENT_VERSION even though we want to download subset of data from the table (only records matching for one data_source_key at a time). Where would you use it? How would you use
    it?
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Workflow for salary changes

    Dear All,
    Do we have workflow process for element entry changes?
    Regards
    Stalin G

    Hi Stalin,
    Element entries cannot be entered/updated by employees, so there's no WF on entries.
    But there is one for Salary change(based on Salary basis).
    Cheers,
    Vignesh

  • Does Mail need to be open for emails to appear in Notifications?

    I love the notifications feature in Mavericks, and in particular, I like that incoming emails pop up like in iOS. My question is, does Mail app need to be open for emails to appear in Notifications?

    On the Mac, Mail needs to be open to be notified of incoming Mail. I tend  to leave the app open all the time, just collapsed into the Dock, getting notified by Notification Centre as emails arrive and leaving a red badge on the Mail icon in the Dock if Mail arrived whilst I was away.

  • Recording Increment and Percentage Increase for salary changes

    Hi,
    I am undertaking a large HR/Payroll implementation and one of the requirements is to record in SAP the following fields for any salary changes:
    - Absolute Increment - monetary value of an increase
    - Percentage Increase
    I was hoping it would just be sufficient for us to create a bespoke report for this information, however the customer is insistent that they want to record this for each individual.
    Any ideas where this could be stored? I was thinking perhaps of setting up two non-paying WTs in IT15 to record these.
    Thanks
    Hannah

    Hi,
    I am undertaking a large HR/Payroll implementation and one of the requirements is to record in SAP the following fields for any salary changes:
    - Absolute Increment - monetary value of an increase
    - Percentage Increase
    I was hoping it would just be sufficient for us to create a bespoke report for this information, however the customer is insistent that they want to record this for each individual.
    Any ideas where this could be stored? I was thinking perhaps of setting up two non-paying WTs in IT15 to record these.
    Thanks
    Hannah

  • Need help with trigger for whitespace and caps validation

    I need to create a table trigger that will generate an error whenever a specific column does not contain all caps or has whitespace when records are either inserted or updated. I'm new to writing SQL, so any help is appreciated!

    In 10g
    SQL> create or replace trigger trigg_sample
      2  before update or insert on sample
      3  for each row
      4  declare
      5  lv_pos number;
      6  begin
      7  select regexp_instr(:new.col1,'[a-z|( )]') into lv_pos from dual;
      8  if lv_pos > 0 then
      9  raise_application_error(20000,'The column contains lowercase or white space characters');
    10  end if;
    11  end;
    12  /
    Trigger created.
    SQL> desc sample;
    Name                                      Null?    Type
    COL1                                               VARCHAR2(20)
    SQL> insert into sample values('DFD') ;
    1 row created.
    SQL> insert into sample values('dfdfd') ;
    insert into sample values('dfdfd')
    ERROR at line 1:
    ORA-21000: error number argument to raise_application_error of 20000 is out of
    range
    ORA-06512: at "XLS_ADMIN.TRIGG_SAMPLE", line 6
    ORA-04088: error during execution of trigger 'XLS_ADMIN.TRIGG_SAMPLE'
    SQL> insert into sample values('DFDF ') ;
    insert into sample values('DFDF ')
    ERROR at line 1:
    ORA-21000: error number argument to raise_application_error of 20000 is out of
    range
    ORA-06512: at "XLS_ADMIN.TRIGG_SAMPLE", line 6
    ORA-04088: error during execution of trigger 'XLS_ADMIN.TRIGG_SAMPLE'
    SQL>

  • Need Procedure or trigger for My query

    Hi,
    I want to know all the tables which are going to be affected by deleting a row in a particular table.For an example suppose i delete a row in TABLE A,it has relationship with TABLE B,TABLE c.But i don't know the relationship and the tables.I want to write a trigger or procedure to know the tables which are affected by that DML operations.
    Kindly answer the above question,it helps me lot.
    Thanking YOu

    If by "has a relationship", you mean that you want to find tables that have a foreign key relationship with A, then you could do something like:
    SELECT table_name
    FROM all_constraints
    WHERE r_constraint_name IN (SELECT constraint_name
                                FROM all_constraints
                                WHERE table_name = 'A' and
                                      constraint_type IN ('P', 'U');If that is not what you meant, please clarify.
    TTFN
    John

  • Trigger for logging changes(DML changes) for All tables in Schema

    Hi ,
    Is there a way to create a schema level trigger to audit the DML changes that affect all the tables.I need the output in my log table as
    1) the table name on which the DML occurred
    2) type of DML
    3) column names affected.
    I know this can be achieved through enabling AUDIT or by creating dynamically, triggers for each tables...
    Is there a way to create a single trigger to achieve this??

    It's not possible to create DML trigger on schema level
    I think the only way is to create the triggers dynamically for each table..
    Re: Schema level Database triggers by Kamran Agayev
    Edited by: jeneesh on Oct 12, 2012 6:39 PM

  • Do "Developed" jpgs need to be exported for the changes to be recognized by other viewers/software?

    I have the box checked in Catalog Preferences to include Develop settings inside jpgs.
    Do I have to export jpgs from Lightroom in order for other programs and photo viewers to "see" the changes I made to the jpgs in LR 5.3?
    Yes, I normally Develop Raw files but am wondering how jpgs, that I import into LR, are handled when I make changes to them in LR?

    99jon wrote:
    You must also write the metadata to the files.
    Go to:
    Windows - Edit >> Catalog Settings
    Mac - Lightroom >> Catalog Settings
    Select the metadata tab and make sure these two boxes are checked.
    Include develop settings in metadata
    Automatically write changes into XMP
    This useful video gives further information:
    I do have those boxes checked. I will check out the video. Thanks.

  • Single Trigger for muliple tables

    Hi All,
    I have one requirement to create a trigger to populate a table (X) based on the any insert or update on few tables (A,B,C,D,E,F).
    Do I need to create trigger for each table ??. any idea of using all tables in one trigger.

    Hi,
    this is not possible.
    but you can use multiple trigger on single table
    if you can use view, then you can use INSTEAD OF Trigger on view
    for example
    CREATE OR REPLACE VIEW manager_info AS
        SELECT e.ename, e.empno, d.dept_type, d.deptno, p.prj_level,
               p.projno
            FROM   Emp_tab e, Dept_tab d, Project_tab p
            WHERE  e.empno =  d.mgr_no
            AND    d.deptno = p.resp_dept;
    CREATE OR REPLACE TRIGGER manager_info_insert
    INSTEAD OF INSERT ON manager_info
    REFERENCING NEW AS n                 -- new manager information
    FOR EACH ROW
    DECLARE
       rowcnt number;
    BEGIN
       SELECT COUNT(*) INTO rowcnt FROM Emp_tab WHERE empno = :n.empno;
       IF rowcnt = 0  THEN
           INSERT INTO Emp_tab (empno,ename) VALUES (:n.empno, :n.ename);
       ELSE
          UPDATE Emp_tab SET Emp_tab.ename = :n.ename
             WHERE Emp_tab.empno = :n.empno;
       END IF;
       SELECT COUNT(*) INTO rowcnt FROM Dept_tab WHERE deptno = :n.deptno;
       IF rowcnt = 0 THEN
          INSERT INTO Dept_tab (deptno, dept_type)
             VALUES(:n.deptno, :n.dept_type);
       ELSE
          UPDATE Dept_tab SET Dept_tab.dept_type = :n.dept_type
             WHERE Dept_tab.deptno = :n.deptno;
       END IF;
       SELECT COUNT(*) INTO rowcnt FROM Project_tab
          WHERE Project_tab.projno = :n.projno;
       IF rowcnt = 0 THEN
          INSERT INTO Project_tab (projno, prj_level)
             VALUES(:n.projno, :n.prj_level);
       ELSE
          UPDATE Project_tab SET Project_tab.prj_level = :n.prj_level
             WHERE Project_tab.projno = :n.projno;
       END IF;
    END;see more : http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_triggers.htm
    Edited by: Mahir M. Quluzade on Oct 12, 2011 9:23 AM

  • Mail needs to be sent after updating the salary column of emp table

    Hi,
    we have table test_emp_table, oracle form based application is running on this table...
    it conatins salary column, we have requirement that, when every any update to the salary column, a mail needs to be sent to concerned person with new and old salary values..
    I did that using the following procedure...
    ===========
    -- Create Temporary Table to hold the Updated values
    create table email_parameters
    ( id number primary key,
    oldsal varchar2(10),
    newsal varchar2(10),
    ename varchar2(100));
    --- Create Procedure
    CREATE OR REPLACE PROCEDURE send_email_new (
    l_job IN NUMBER ) is
    l_oldsal varchar2(100);
    l_newsal varchar2(100);
    l_emp_name varchar2(100);
    l_message varchar2(100);
    BEGIN
    SELECT oldsal
    INTO l_oldsal
    FROM email_parameters
    WHERE ID = l_job;
         SELECT newsal
    INTO l_newsal
    FROM email_parameters
    WHERE ID = l_job;
         SELECT ename
    INTO l_emp_name
    FROM email_parameters
    WHERE ID = l_job;
         l_message:=
    'Employee Name= '
    || l_emp_name
    || chr(10)||chr(10)
    || 'Old Salary= '
    || l_oldsal
         || chr(10)||chr(10)
    || 'New Salary= '
    || l_newsal;
    send_mail(l_message);
    DELETE FROM email_parameters
    WHERE ID = l_job;
         EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_stack);
    DBMS_OUTPUT.put_line (DBMS_UTILITY.format_call_stack);
    END;
    --- Create Trigger
    create or replace trigger send_email_trg
    after update on TEST_EMP_TABLE
    for each row
    declare
    l_job number;
    begin
    dbms_job.submit (job => l_job,
    what => 'send_email_new(job);' );
    insert into email_parameters
    values (l_job, :old.sal,:new.sal,:new.ename);
    end send_email_trg;
    -- Create Procedure for Sending Mail
    create or replace procedure send_mail(l_message varchar2) is
    c utl_smtp.connection;
    PROCEDURE send_header(name VARCHAR2, header VARCHAR2) AS
    BEGIN
    utl_smtp.write_data(c,name ||':'|| header || UTL_TCP.CRLF);
    END;
    BEGIN
    c := utl_smtp.open_connection('192.168.0.18');
    utl_smtp.helo(c, 'abc.com');
    utl_smtp.mail(c, '[email protected]');
    utl_smtp.rcpt(c, '[email protected]');
    utl_smtp.open_data(c);
    send_header('From', '[email protected]');
    send_header('To', '[email protected]');
    send_header('Subject', 'Warning: Employee Solary has been updated!');
    utl_smtp.write_data(c, UTL_TCP.CRLF || l_message);
    utl_smtp.close_data(c);
    utl_smtp.quit(c);
    EXCEPTION
    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
    BEGIN
    utl_smtp.quit(c);
    EXCEPTION
    WHEN utl_smtp.transient_error
    OR utl_smtp.permanent_error THEN
    NULL;
    END;
    raise_application_error(-20000, SQLERRM);
    END;
    ====================
    But I have doubt, if there is any problem with mail server, if user is updating salary column from form based application at same time....
    will table trigger allows him to save the new record or not????? or will he get any errors????

    thanks justin...
    I have written that code..but it works...problem is ...i am not able to understand the flow...what happens in the order, until mail is sent...
    i have another code.....
    I have written with out dbms_job, i have witten directly in the trigger itself...
    Tom suggested the procedure, what i have given above..but not the below procedure....
    I am not able to understand, what is the difference between them.....
    CREATE OR REPLACE TRIGGER test_emp_table_trg
    AFTER UPDATE
    ON test_emp_table
    FOR EACH ROW
    WHEN (NEW.sal <> OLD.sal)
    DECLARE
    l_employee_name VARCHAR2 (240);
    l_old_sal VARCHAR2 (240);
    l_new_sal VARCHAR2 (240);
    l_message VARCHAR2 (240);
    BEGIN
    /* Gets the employee full name */
    BEGIN
    SELECT ename
    INTO l_employee_name
    FROM test_emp_table
    WHERE empno = :OLD.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_employee_name := NULL;
    END;
    /* Gets the old Salary */
    BEGIN
    SELECT sal
    INTO l_old_sal
    FROM test_emp_table
    WHERE empno = :OLD.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_old_sal := 0;
    END;
    /* Gets the new position name */
    BEGIN
    SELECT sal
    INTO l_new_sal
    FROM test_emp_table
    WHERE empno= :NEW.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_new_sal := 0;
    END;
    l_message:=
    'Employee Name= '
    || l_employee_name
    || 'Old Salary= '
    || l_old_sal
    || 'New Salary= '
    || l_new_sal;
    BEGIN
    send_mail (l_message);
    END;
    ==========
    can you please describe it clearly???
    thanks in advance my dear friend????
    Edited by: oraDBA2 on Oct 4, 2008 10:26 PM

  • How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?

    How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?
    This helps the storage and purpose of email as well. I could always log into online email account to find history of emails.
    Thanks
    Chai

    How do i setup Mail account on my mac book like in mobile phone? I.e. Don't want to store the mails/attachments on pc, however need the latest emails for given number of days?
    This helps the storage and purpose of email as well. I could always log into online email account to find history of emails.
    Thanks
    Chai

  • E-mail trigger for BP creation

    Hi
    We have a requirement where a e-mail needs to be triggered once a BP is created.
    Please provide me some inputs as to how to achieve the same
    regards
    Subhasis

    Hi Subhasis,
    The best way to do it, is to start a workflow that start when the standard event 'CREATED' of the object BUS100605 is triggered.
    to do it
    1 - go to transaction SWO1 create a sub type for the object BUS100605 and add a a method "SendMail".
    2- Go to transaction PFTC and create a worflow that start after the event 'created' of the BUS100605.
    3- In the workflow creae a tak that call you "SendMail" method.
    I Hope that this basic explanation will help you.
    regadrs
    Jacques

  • I need a serial Number for lightroom and photoshop. Its working on the imac already, I am paying. Now want to install on the mac book. There are no adobe-mails...

    I need a serial Number for lightroom and photoshop. Its working on the imac already, I am paying. Now want to install on the mac book. There are no adobe-mails...

    dear jeff,
    its both the newest versions downloaded at adobe.com <http://adobe.com/>
    after testing i signed the contracted and i am paying
    the mail with the serial number got lost
    both apps are working on my imac
    now the should be installed on my book
    there are no informations in creative cloud about my problem.
    Am 04.03.2015 um 22:41 schrieb Jeff A Wright <[email protected]>:
    I need a serial Number for lightroom and photoshop. Its working on the imac already, I am paying. Now want to install on the mac book. There are no adobe-mails...
    created by Jeff A Wright <https://forums.adobe.com/people/JeffAWright> in Creative Cloud Download & Install - View the full discussion <https://forums.adobe.com/message/7252990#7252990>
    Berndh38291059 what version of Photoshop and Lightroom are you installing?  Do you receive any specific error messages?
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7252990#7252990 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7252990#7252990
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Creative Cloud Download & Install by email <mailto:[email protected]dobe-v7.hosted.jivesoftwa re.com> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=47 86>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.
    Bernd Hoff
    Fotoproduktion
    Stoffeler Str. 26
    D- 40227 Düsseldorf
    +49 211 37 05 14
    +49 171 642 42 07
    [email protected]
    berndhoff.de

  • Need v11.5 Xtras for e-mail, saving list variables

    Hi all,
    I'm working on a new DVD project that needs to run on the latest Windows and Mac platforms, but am having trouble finding Xtras that have been updated for Director 11.5 and have been recompiled for Intel-based Macs.
    Specifically, I am looking for Xtras with these features:
    1. Ability to send e-mails. DirectEMail appears to be the most-recommended, but the newest version I see is dated 2004. StarSoft has an Xtra that only lists Windows platforms as compatible. Is there anything good out there for Director 11.5 for both platforms?
    2. Ability to save/retrieve Lingo variables (specifically lists) to/from a disk file. I've looked at both PropSave (appears to be very outdated - 2002?) and vList (newest version is 11.5-compatible, but appears to be discontinued - no obvious way to order from their web site). Can anyone suggest anything?
    Many thanks in advance!

    Hi,
    May be using flash ? here is an example :
    http://www.sourcecodeonline.com/details/flashformmail.html
    Brahim AYI
    De : WHairston [email protected]
    Envoyé : mercredi 21 septembre 2011 13:52
    À : brahim_ayi
    Objet : Need v11.5 Xtras for e-mail, saving list variables
    Re: Need v11.5 Xtras for e-mail, saving list variables
    created by WHairston <http://forums.adobe.com/people/WHairston>  in Basics - View the full discussion <http://forums.adobe.com/message/3929351#3929351

Maybe you are looking for