Sai Subramanyam has Published 102 Articles

Seeing list of all program screens in SAP ABAP

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

540 Views

If you want to check all Dynpros belongs to one program, you can use table D020S. D020S is known as SAP Table to store screen sources information. This is available within R/3 SAP systems depending on the version and release level. To display or maintain this table, use T-code SM30 ... Read More

Recovery database SBO-COMMON in SAP Business One

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

739 Views

In SAP Business One, SBO-Common is only used in functionality handling or following your company database. Normal day to day business functions happens entirely in the company database. You can create a new set of sample database SBO-COMMON by reinstalling SAP B1 server. SBO-Common database holds this information − ... Read More

How can dead thread be restarted in Java?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

2K+ Views

A thread goes through various stages in its lifecycle. For example, a thread is born, started, runs, and then dies. New − A new thread begins its life cycle in the new state. It remains in this state until the program starts the thread. It is also referred to ... Read More

Explain the difference between getColumnHeaders(), getColumnNames() and getColumnTitles() in SAP?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

103 Views

getColumnHeaders() − This function is used to return all the columns which are theoretically available. getColumnNames() − This function is used to return a list of columns displayed in a tree getColumnTitles() − This function returns same number of columns as returned by getColumnHeaders()

Difference between the use of Type, Types and TYPE POOL in SAP ABAP programming.

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

651 Views

TYPE keyword is used for Data or FIELD Symbol declaration You use TYPES keyword for defining local types TYPE POOL is used for grouping local types so that you can use them without duplication TYPES: BEGIN OF z_t000, Name TYPE c Length 10. ... Read More

Convert CHAR to HEX in SAP system and functions

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

588 Views

I tried to use the same function as mentioned; I am too getting the exception.What I can make out of the dump thrown by the exception, only character type data objects are compatible with the function.You can try using another function module ‘CRM_EI_KB_CONV_DEC_TO_HEX’  which is available in ECC 6.0 environment.It ... Read More

How to pause an ABAP program?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

362 Views

Either you can use SAP “WAIT UP TO” statement. For e.g. the below statement waits up for 30 seconds WAIT UP TO 30 SECONDS But this statement has an implicit database commit. It might sound weird but there are scenarios where this behavior is expected so you should ... Read More

Using memory analyzer in SAP

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

191 Views

There are lots of free and proprietary tools to do the same. You can use Memory Analyzer project done by SAP. It lets you find memory leaks against in-memory objects via simple SQL statements. Also, you can use JHAT (Java Heap Analysis tool) command line tool to examine the memory. ... Read More

How to convert an Array to a Set in Java?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

2K+ Views

One solution to add an array to set is to use the addAll() method of the Collections class. This method accepts a collection and an element and, it adds the given element to the specified Collection. Example Live Demo import java.util.Collections; import java.util.HashSet; import java.util.Set; public class ... Read More

What is SAP ABAP?

Sai Subramanyam

Sai Subramanyam

Updated on 30-Jul-2019 22:30:20

486 Views

ABAP stands for Advanced Business Application Programming. It is one of the primary programming languages used for developing programs and applications for SAP R/3 systems and its related modules. It is a high-level language with respect to SAP as it is understood and known only to SAP environment. The latest ... Read More

Advertisements