Found 1039 Articles for SAP

Exposing employee master data from SAP HR system using Web Service

Govinda Sai
Updated on 11-Dec-2019 06:51:17

1K+ Views

In a general scenario, when you have ICF configured you can expose SAP system business objects and jobs via BAPI. It is very easy to create and expose BAPI as a web service. As there are only few web services for SAP HR module in SAP system however you can transform a BAPI or ABAP function into a web service. If there is no such function you can create one easily.To find details about BAPI from Function module, use T-Code: SE37 and enter Functional module name for SAP HR module. Below is the list of existing HR function modules in ... Read More

Creating SAP interface to pull data from web application

Ramu Prasad
Updated on 11-Dec-2019 06:47:01

559 Views

Web Dynpro is a complex framework and it would be tough to integrate it to your Java application. You can use SAP Java Connector JCo. SAP Java Connector can be used to call Remote Function calls on SAP system.You can use already defined function modules to connect. You can take help from a SAP ABAP developer if you want to customize any function module request.You can use SAP JCo to make 2 types of calls to system:Inbound calls (Java calls ABAP)Outbound calls (ABAP calls Java).By using a JCo connection, you can call an RFC from the R/3. It contains 2 ... Read More

IMPORTING, EXPORTING and CHANGING Keywords in ABAP

Krantik Chavan
Updated on 09-Dec-2019 06:49:36

4K+ Views

IMPORTING transfers a value from the caller to the called method by passing an actual parameterEXPORTING is just opposite to what IMPORTING does. IT passes value from the method to Caller.CHANGING is transferring the value from caller to method by a variable which is processed or changed and the changed value is passed back to the Caller. Thus it combines both IMPORTING and EXPORTING function.There are a couple of ways in which CHANGING can be used:CHANGING myvar or CHANGING VALUE(myvar)By using, CHANGING myvar , the value of a variable is changed and passed back to the caller or main program.Using ... Read More

Standard way to integrate SAP with external system like .NET application

Nishtha Thakur
Updated on 18-Dec-2019 07:58:19

385 Views

The SAP tables can be directly accessed by the .net application but it is not recommended to do so. Generally, the SAP database is accessed by the program or reports and there are security checks running behind that and directly accessing SAP tables can cause security threats.ERP Connect is the best way. You can access the database by RFC which is supported by ERP Connect.

Determining table or structure of an ABAP code

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

300 Views

abc would be a table and its line will be of type PPP. For structure, you need to code asabc TYPE PPP

Using SQL statements in ABAP Programming and Database performance

Anvi Jain
Updated on 18-Dec-2019 07:57:43

305 Views

The basic principle for performance is that there should be minimal data transferred between application server and database.For your first question, I would suggest to select only the fields that are required. So, don’t use SELECT * in case you don’t require all the fields. But in specific scenarios, if you have multiple SELECT statements at various parts of your program querying the same table but different columns, it is advisable to use SELECT * as the output is stored in a buffer till your program execute. In that case, when you come to subsequent select, the system uses the ... Read More

Standards for maintaining Customer Repository Objects in SAP

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

150 Views

The Y-namespace is meant to be used for centrally developed solutions or also known as head office while the Z-namespace is used for local developed solutions or also known as branch office. But at the end of day, it all depends on the developer how he uses it.

Determining the current client in SAP using code

Jennifer Nicholas
Updated on 18-Dec-2019 07:52:36

1K+ Views

You can find the current client in sy-mandt.ExampleHere is the code you can write for same.IF sy-mandt = ‘001’. *do A. ELSE. *Do B. ENDIF.

Finding a particular value in internal table itab in ABAP

Vrundesha Joshi
Updated on 09-Dec-2019 06:20:33

2K+ Views

you can use a READ statement in combination with TRANSPORTING NO FIELDS. This will skip the values to be transferred to the work area and avoid the loop. Here is an example:READ TABLE itab WITH KEY FIELD = 'ABC' TRANSPORTING NO FIELDS. IF SY-SUBRC = 0. "Field Match.” ENDIF.

“Where” clause not working while updating database record in ABAP

Rishi Rathor
Updated on 18-Dec-2019 07:55:51

470 Views

I think there is a syntax problem in your code. The colon in the first statement adds multiple following statements and hence updating all records in the first statement.Remove the colon in the first line and comma between SET specifiers.ExampleTry using the following statement after update:UPDATE zemployee_jat    SET prijs = zemployee_jat-prijs       naam = zemployee_jat-naam WHERE employeeid = zemployee_jat-motorid.

Advertisements