Sravani S has Published 86 Articles

Difference between Work area, global structure and internal table in SAP ABAP

Sravani S

Sravani S

Updated on 18-Feb-2020 07:20:22

921 Views

Internal tables let you read data from a fixed structure and stores it in-memory (working memory) in ABAP. The data is stored in a sequential manner in memory. They are basically equivalent to arrays but dynamic in nature. Since they are dynamic in nature, memory management is already taken care ... Read More

Integrating SAP system with ISV company product to deploy at client end

Sravani S

Sravani S

Updated on 14-Feb-2020 11:07:30

62 Views

SAP NetWeaver is just a term used for SAP system. All SAP systems are mostly running on NetWeaver. SAP PI is one of common integration tool like Biztalk and it is not necessary that all clients has SAP PI system for integration.You should use Remote Function Call RFC in SAP ... Read More

In SAP ABAP, few records are skipped during parallel processing

Sravani S

Sravani S

Updated on 14-Feb-2020 10:11:03

252 Views

Check out on code to handle parallel processing-gv_semaphore = 0. DESCRIBE TABLE lt_itab LINES lv_lines. LOOP AT lt_itab INTO ls_itab. CALL FUNCTION 'ZABC' STARTING NEW TASK taskname DESTINATION IN GROUP srv_grp PERFORMING come_back ON END OF TASK EXPORTING ... EXCEPTIONS ... . "

Binding OData service to SAP UI5 table

Sravani S

Sravani S

Updated on 14-Feb-2020 10:10:22

986 Views

Your service end point is incorrect- var oModel = new sap.ui.model.odata.v2.ODataModel("http://admin- think:88/sap/...", {useBatch : true});.To fix this issue, you need to remove “CoreOpenAppSet()” portion of the variable which is getting passed to ODataModel constructor. You need to pass function import using ODataModel- “oModel.callFunction()”.Once function call is completed, you can bind ... Read More

How can we create a MySQL stored function that uses the dynamic data from a table?

Sravani S

Sravani S

Updated on 13-Feb-2020 07:12:47

331 Views

MySQL Stored functions can reference tables but they cannot make use of statements that return a result set. Hence we can say that there is no SELECT query that returns result set. But we can have SELECT INTO to get rid of that. For example, we are creating a function ... Read More

How to convert an std::string to const char* or char* in C++?

Sravani S

Sravani S

Updated on 12-Feb-2020 06:30:54

15K+ Views

You can use the c_str() method of the string class to get a const char* with the string contents. example#include using namespace std; int main() {    string x("hello");    const char* ccx = x.c_str();    cout

What is double address operator(&&) in C++?

Sravani S

Sravani S

Updated on 11-Feb-2020 05:00:36

16K+ Views

&& is a new reference operator defined in the C++11 standard. int&& a means "a" is an r-value reference. && is normally only used to declare a parameter of a function. And it only takes an r-value expression.Simply put, an r-value is a value that doesn't have a memory address. ... Read More

What would be effect of negative value of second argument, which specifies the number of decimal places, on the output of MySQL TRUNCATE() function?

Sravani S

Sravani S

Updated on 10-Feb-2020 10:39:10

246 Views

If we specify the negative value of the second argument then the digits before the decimal point would be deleted without rounded off. The number of digits to be deleted depends upon the value of the negative second argument. Following examples will demonstrate the change, depending upon the negative value of ... Read More

How to use sub-package in Java?

Sravani S

Sravani S

Updated on 04-Feb-2020 11:12:22

880 Views

Subpackages are similar to sub-directories. Consider an example. The company had a com.apple.computers package that contained a Dell.java source file, it would be contained in a series of subdirectories like this −....\com\apple\computers\Dell.javaAt the time of compilation, the compiler creates a different output file for each class, interface, and enumeration defined ... Read More

How can we import only specific columns from the text file, into MySQL table?

Sravani S

Sravani S

Updated on 04-Feb-2020 06:04:45

1K+ Views

Suppose if we have the values for some specific columns in the text file and MySQL table, in which we want to import the data, is having an extra column(s) then by mentioning the names of the columns in the query we can upload the values of those specific columns ... Read More

Advertisements