SAP Articles - Page 45 of 91

Reading the contents of SAP structures from outside using RFC

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

437 Views

It seems you are confused with the definition of structure. The structure does not contain any data. They just type definition.If you want to return or receive a structure as a parameter, that can be done using RFC.

How to use constant in ABAP program which has trailing space?

Amit Sharma
Updated on 25-Feb-2020 11:05:26

600 Views

This is because you are declaring constant as type c. The type c variable always trims the trailing space. I would suggest you define it as string as followsCONSTANTS: co_abc type string value ' b '.This will keep the trailing spaces.

Information regarding function used in remote machine and their return values.

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

173 Views

There is a table TFDIR which contains all the information. You can use this table with FMODE=’R’ by transaction SE16. R denotes remote functions. If you want to check the return values of the function, you can use transaction SE37 by inputting the function in the search field.

How to take Backup in SAP system.

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

751 Views

Generally, it is not required to take the backup as SAP is very secure system and they keep the backup. But if you still want to take the backup, you would require creating a dummy destination, add the objects/your programs to transport and point it to that dummy destination and release it. Now you can keep the object s from dummy destination to any of your directory.

Usage of subqueries in internal table as condition in SAP ABAP source code.

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

431 Views

Note that if you specify an OPTIONS parameter with parenthesis, it will show an error. When you use Where (itab)In this case, itab has only one field with type C and shouldn’t be longer than 72 characters. “Itab” must be specified in parenthesis without any space between parenthesis and table name.You should use the same condition in the internal table as a condition in ABAP source code.

Difference between SE01, SE09 and SE10 Transactions in SAP

Swarali Sree
Updated on 11-Dec-2019 10:25:17

5K+ Views

Both SE09 and SE10 were used in earlier releases of SAP for different purposes.SE09 – This was used for development of transportsSE10 – This was used for customizing the transports request. When you run SE10 in SAP ERP, you will get the same screen as in T-Code SE09 of Transport Organizer.In the latest version of SAP NetWeaver, both the Transactions are same.SE01 –This combines the features of both SE09 and SE10. Apart from that, there are many other features included in it like displaying specific transport request.

Difference between an SAP ERP system and DBMS

Samual Sam
Updated on 25-Jun-2024 16:17:28

3K+ Views

DBMS or Database Management system is basically the tool/interface required to manage the database.  For example, SQL server or a tool like MYSQL workbench is a DBMS. A DBMS is mainly used by or designed for technical people.ERP (Enterprise Resource Planning System) is a complete system with one database and number of function modules and has a number of inputs and output interfaces to be used by everyone. For example, there can be a user interface for customer or business people, another for technical people with various skills.So basically we can say that DBMS can be a subset of ERP.Read More

Difference between SAP BAPI and BAdi and Customer Enhancement vs Customer Modification?

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

1K+ Views

BAPI It is a short form for Business Application Programming Interface. It is a simple API used for business operations. It can be simple module function provided by SAP or it can be developed by the user as well. BAdI This is an abbreviation for Business Add-Ins. These are customer exits which are used to modify or customize existing SAP functionality. BAdI can be reused as they follow Object-oriented approach. Enhancements It is a modification of SAP functionality or adding new functionality possibly by using a BAdI class or any enhancement technique. Customer modification It is to customize existing function ... Read More

How to Find out the source code of a transaction in SAP?

Lakshmi Srinivas
Updated on 17-Feb-2020 06:47:01

4K+ Views

First, go to System → Status to find the program name. Now use the transaction SE38 or SE80 to view the source code.Alternatively, you can activate the debugging mode before running your transaction by keying in /h.

How to Fetch source code of the transaction note in SAP R/3?

Monica Mona
Updated on 11-Dec-2019 10:31:57

419 Views

If you ever need to fetch the mapped program with a transaction, you need to call the transaction SE93. It will fetch you the program and variant of the selection screen.Now, if you need source code then you can use the transaction SE38 or SE80. If you also require Dynpro which is mapped against the program then use SE80.

Advertisements