Posted inSAP ABAP How to get field description (field label) of data element by ABAP Posted by By admin November 12, 2019 REPORT ztest_get_dataelement_desc. DATA: wa_dd04t TYPE dd04t. PARAMETERS: p_name TYPE rollname DEFAULT 'MATNR' OBLIGATORY. SELECT SINGLE…
Posted inSAP SAP ECC vs. S/4HANA vs. Suite: Understanding Your Destination Posted by By admin September 14, 2019 SAP ECC vs. S/4HANA vs. Suite: Understanding Your Destination As an SAP managed services leader, we see…
Posted inIIS Virtual hosting with IIS (Internet Information Services) Posted by By admin September 13, 2019 "Virtual hosting" means hosting multiple web-sites with different domain names on the same IP address.
Posted inSAP SD VB01 giving shortdump SYSTEM_ABAP_ACCESS_DENIED Posted by By admin June 7, 2019 on Jun-07-2019, when I accessed tcode VB01 I faced a shortdump SYSTEM_ABAP_ACCESS_DENIED. After searching snote…
Posted inExcel Find out the last position of a character in string from right to left Posted by By admin May 30, 2019 EG: find out the last position of character '_' in text in cell A1 =FIND("|",SUBSTITUTE(A1,"_","|",LEN(A1)-LEN(SUBSTITUTE(A1,"_",""))))