-
Reading someone else’s SAP Inbox
Well it does sound awesome .Use of auto forwarding functionality one can get someone else’s mail in his/her sap inbox and if the person is not smart he won’t be knowing it.
Transaction code: SO36
Enter your target person’s ID inside the User field.
Note: It’s a nice functionality to setup out of Office.
- Don’t have authorization? No worries try below ways…
Go to Transaction Se11, open any table and use other object button to navigate to your desired object.
Doesn’t work? Try this…
Go to Transaction SE37 open function module C160_TRANSACTION_CALL.
Execute it with your desired transaction code you want to execute.
-
Converting Spool Request Output to PDF.
Try report program RSTXPDFT4 with your spool request and Bingo!!!!!PDF is with you.
-
Text to speech in SAP system
One can use OLE to do text to speech in SAP. Try below report program to test it in your system.
*&———————————————————————*
*& Report ZTST_SCHEDULE_MEETING
*&
*&———————————————————————*
* copy the text elements
*P_DATE Date
*P_MEND Meeting End
*P_MNAME Meeting name
*P_MST Meeting Start
*&
*&———————————————————————*
report ztst_schedule_meeting.
tables : zmeetings.
include ole2incl.
parameters : p_mname type char20.
parameters : p_date type dats.
parameters : p_mst type sy-uzeit.
parameters : p_mend type sy-uzeit.
data : ole type ole2_object,
voice type ole2_object,
text type string.
data : lv_time type t.
at selection-screen.
create object voice ‘SAPI.SpVoice’.
if p_mend < p_mst.
text = ‘Meeting Start time should be less than meeting End Time.’.
call method of voice ‘Speak’ = ole
exporting #1 = text.
message ‘meeting Start time should be less than meeting End Time’ type ‘E’.
endif.
- Send Popup message to your friends in SAP
Go to transaction code SE37 and execute the function module “TH_POPUP”.
Put your friend’s SAP user ID in user field.
- Execute .EXE file from ABAP Code
http://sapignite.com/trying-your-hands-with-exe-file-sap-abap/
-
Unlock any user account if it’s locked in SAP system.
See below image and follow steps till it starts the debugger screen.
Use the navigation option (Breakpoints -> create break points at statement) in the debugger screen to create break point as “message” statement.
System will throw the Error message if you don’t have authorization and debugger will stop there. Edit the SY-SUBRC to 0 and execute the statement again to grant you authorization and you can unlock the user.