LinkedIn
RSS

Archive for July, 2009


Get user email from RH data in SAP

GA_googleFillSlot(“POSTSAP”); When sending one email, sometimes you use SY-UNAME as reference so this is the desired select: select single usrid usrid_long  from pa0105 where pernr eq SY-UNAME and subty eq 9003 (ASK HR Manager) and begda le sy-datum and endda ge sy-datum. if usrid is empty use usrid_long endselect. And it’s this, any doubts just post

Read More...

Send Email SAP Function to External address or distribution list

When you need to trigger email from user exit or from your own program you can use this function. You can send it to single email destination or to a distribution list ( SBWP Transaction ). This will only work if SCOT transaction is correctly configured, and this must be made by a System Administrator. Here goes the [...]

Read More...

Addin a check box to a SAP Table

When you want to make a View of a table and get a check box in one of the fields, tou can use the data element CHKBOX. By doing so, when you use the Table Maintenance Generator, a check box will be added to the maintenance view. Any doubts? Please Comment

Read More...