RV Invoice Document Read Not Returning Data in SAP FM

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

426 Views

I think what you may be missing over here is Alpha conversion set.When you are calling a function module in SE37, it performs alpha conversions as a part of parameter processions. You might do go for internal formatting of the parameters before passing it to ABAP for further use.

Finding Code for Admin User Creation in SAP Hybris

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

177 Views

There is a method addUserRights at below path in which it is done.hybris/bin/platform/bootstrap/bin → ybootstrap.jar → DMLRecordFactory

Write Single Line Comment in Java

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

584 Views

To comment a particular line just place ‘double back slash (//)’ before the line as shown below. // Hello this line is commented Example Following example demonstrates the usage of single line comments in Java. Live Demo public class CommentsExample { public static void main(String args[]) { //Declaring a variable named num int num = 1; //Printing the value of the variable num System.out.println("value if the variable num: "+num); } } Output value if the variable num: 1

What is an Array Data Structure in Java

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

284 Views

Array is a container which can hold a fix number of items and these items should be of the same type. Most of the data structures make use of arrays to implement their algorithms. Following are the important terms to understand the concept of Array. Element − Each item stored in an array is called an element. Index − Each location of an element in an array has a numerical index, which is used to identify the element. Example Live Demo public class ArrayExample { public static void main(String args[]){ int myArray[] = {44, 69, 89, 635}; for (int i = 0; i

Identify the Database Used for Backend in ABAP

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

295 Views

If you would have searched a little in the SAP documentation, then you would have found out the answer.You can use the CL_DB_SYS=>DBSYS_TYPE to fetch the database. For e.g. If you are using SAP HANA as the database, then the DBSYS_TYPE will have the value as HDB.

Getting Data in SAPUI5 Application from Backend Tables in NetWeaver

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

408 Views

Note that Eclipse is just a standard editor to develop UI5 application. You should use SAP IDE which is one of the recommended editor now.When you backend system as NetWeaver system, Gateway and OData would be the recommended way to use.

Difference between SAP ERP and a DBMS System

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

1K+ Views

On a very basic level, a DBMS is a method for looking at something. For ex. SQL Server, MySQL, and others. It is basically a program that lets you communicate with databases.Database management system is a product which sorts out information in a database, gets information, controls and manipulates information. Generally, most of DBMS like SQL Server Management Studio or MySQL Workbench provides an easy to use interface. Also, it lets the user extract data, database entities and structures at will with simple mouse clicks.AN ERP is a product which oversees the complex business process and incorporates each one of ... Read More

List of All Program Screens in SAP ABAP

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

879 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 You can use T-code SE11 to view the fields in table D020S: It is text table D020T with the key program = sy-repid

Error While Using LOOP WHERE in SAP ABAP

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

386 Views

LOOP….WHERE condition was included recently in ABAP. Could you please verify your version?  This will work only on a version of 7.0 Ehp2 or higher.

Difference Between // and /* Comments in Java

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

784 Views

Multiline comments (/* */) are used to comment multiple lines in the source code. Example Live Demo public class CommentsExample { /* Following is the main method here, We create a variable named num. And, print its value * */ public static void main(String args[]) { //Declaring a variable named num int num = 1; ... Read More

Advertisements