Blog

March 26, 2020

ABAP-OO:How to get Domain Key Text

Get the Domain key Text by Calling public method Get_Domain_text from CL_WER_SERVICES Sample Code: DATA: lv_Str TYPE String.   lv_Str = cl_wer_services=>get_domain_text( i_domname = "YourDomainName" i_key […]
March 15, 2020

How to get Month Shortname in ABAP OO

March 1, 2020

ABAP-OO: Change First letters to Uppercase in a String

August 10, 2015

SAP EHP 4 to EHP 7 Upgrade Issues

Few issue list 1. Session Issue If its common system the portal application showing last login user’s details in portal even though logged in with different […]
April 7, 2015

SAP HCM: FM to Get Employee From Position

Using  RH_GET_STRUCTURE ACT_WEGID = ‘SBES’ Pass ACT_WEGID as ‘SBES’ Pass the Value for AC_Container   Output It will Return only active Employee for that position. and its […]
April 30, 2014

Parameter is not passed to SICF service call

Issue: Ex. if you want to call a transaction with parameter using ITS service in webdypro, the parameter is not passed to the webgui screen eventhough […]
September 24, 2012

Send SMS using OOPS CL_BCS

Pre-Requisties: SMS service (Refer) .   1. Create a class 2. Create static public Method ‘SEND_SMS’ with below parameter. METHOD send_sms. DATA: send_request TYPE REF TO cl_bcs. DATA: […]
July 17, 2012

IW31 Movement Type Customization

Req.: Movement Type field is Defaulted, we need to modify the Movement Type based on Order type(caufvd-auart) & Item  Category ( resbd-postp) and based on Order Quantity […]
June 11, 2012

SAP WF View workitem of other user inbox

Pass the username in USER parameter in SAP_WAPI_CREATE_WORKLIST You can get the workitem from WORKLIST parameter.    CALL FUNCTION ‘SAP_WAPI_CREATE_WORKLIST‘ * EXPORTING * USER = SY-UNAME […]