Found 92 Articles for ABAP

How the Table statement works in ABAP

Syed Javed
Updated on 30-Jul-2019 22:30:22

141 Views

With table statement, you are able to get a single line of data corresponding to the dictionary structure you specify. The fields of structure can be used as select options and the structure can be passed as variable in the program.

Where do we maintain Print programs, routines and forms to be printed in Transaction QM02?

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

82 Views

You have the print program configured in IMG. Run T-code: SPRONext is to assign Shop Papers to “Notification Type” this is used to tell which Shop Paper 4-CHAR code you care about, define Shop Papers has the ABAP Form and Print Program.

Use of Function modules in SAP ABAP to change address independent communication data for BP

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

1K+ Views

You can change address independent communication data using Function Modules like BAPI_BUPA_CREATE_FROM_DATA and BAPI_BUPA_CENTRAL_CHANGE and other FM’s in the same category.Function Module: BAPI_BUPA_CREATE_FROM_DATA   Function Group: BUBA_3            Program Name: SAPLBUBA_3   Following are the parameters:Function Module: BAPI_BUPA_CENTRAL_CHANGEFunction Group: BUBA_3            Program Name: SAPLBUBA_3Following are the parameters:Functional Group: BUBA_3You have lot many function modules that comes under function group BUBA_3, Few of them are below and their description:BAPI_BUPA_CREATE_FROM_DATASAP BP, BAPI: Create Business PartnerBAPI_BUPA_ADDRESSES_GETSAP BP, BAPI: Determine All AddressesBAPI_BUPA_EXISTENCE_CHECKSAP BP, BAPI: Check Existence of Business PartnerBAPI_BUPA_GET_NUMBERSSAP BP, BAPI: Read Business Partner NumbersBAPI_BUPA_ADDRESS_GETDETAILSAP BP, BAPI: Read ... Read More

Exporting data from SAP system to an Excel Report

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

587 Views

You can write an ABAP program for exporting the data from SAP and then use a remote function call which can be invoked my macro to fetch the data. Also, you can go for creating the file itself if that fits the requirement.You can also opt for SAP GUI Scripting as an alternative. The scripting framework allows you to automate the interface for Windows and Java. It can let you perform a lot of activities.Scripting API provides you with the good number of scriptable objects which wraps the SAP GUI objects. You can use these objects from macros. SAP GUI ... Read More

Accessing Source code of SAP Transport without using SAP system

Abhinanda Shri
Updated on 14-Feb-2020 08:13:04

201 Views

I don’t think it is possible to check source code without SAP system until you understand SAP Binary code. The format in which the data are stored in the data file is AFAIK, an SAP own format and you can use R3trans to read code using the command.R3trans -l [-w ] [-v ]To know more about R3trans, you can refer to this link −https://archive.sap.com/discussions/thread/1277788

In SAP ABAP, mapping two database table fields

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

344 Views

I don’t think there is a way to perform this. The common way to do this is by extending original table and fill the new fields.T-Code: SPDD is somewhat relevant that can be used to compare all the dictionary objects- data elements, tables and structure with old system.T-Code: SPAU can also be used to compare objects –Reports, Programs, Screens, Messages, Notes, Function Modules etc. which have difference in the Latest SAP request and the previous ones. You can use SPAU just after SPDD or when SAP system upgrade is performed.Using SPDD and SPAU, you can view all the modified objects, ... Read More

Way to check if SAP system is ABAP based, Java or Dual stack

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

899 Views

Using SAP GUI, you can only access ABAP or ABAP+Java based system. You can check at multiple places if it is a dual system.T-code: SMICM, you can checklist of services in transaction SMICM (Goto --> Services) - dual stack systems will have the J2EE services listed too. There will also be an AS Java menu in SMICM on ABAP+Java systems.

Everything is stored in database in SAP system

Ali
Ali
Updated on 15-Jun-2020 06:51:36

911 Views

Note that it is easy to store data in form of SAP database tables as compared to files. You can also access files in SAP system but they are available on file system of SAP Application server and not easy to use with.With use of ABAP, you can easily raise queries against database tables and it is safe to run queries to get data. SAP has various tools that allow you to work with table entries and also to manage entire landscape easily.What databases are supported by SAP?PartnerVendorMicrosoft SQL Serverwww.microsoft.comMySQL MaxDBwww.mysql.comIBM DB2 (various versions)www.ibm.comOraclewww.oracle.comAlso SAP has its own in-memory computing ... Read More

Checking technical information associated with screen field in SAP without any documentation

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

355 Views

When you have report selection screen option, you can use Ctrl+S to enter the variant screen. Press Technical Name button to display technical name information for the respective field.In case you want more information related to parameter field, you can write an ABAP code to see the definition.Mostly, F1 key is used to get all the details about the technical details of a particular field as shown in below:Also if you want to see Technical name of objects in SAP ECC Easy access for all the modules, you can navigate to Extras -> Settings

Skipping mandatory fields in an ABAP screen

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

650 Views

You can make use of function code which is assigned to push button with “Exit” as function type and an event “AT SELECTION-SCREEN ON EXIT-COMMAND” to achieve this.A call is made to this event to validate the fields on the screen and you can implement all logic here.

Previous 1 ... 3 4 5 6 7 ... 10 Next
Advertisements