If you have 10000 records in your file, which method you use in BDC?
Call transaction is faster then session method. But usually we use session method in real time…because we can transfer large amount of data from internal table... Read more »
Call transaction is faster then session method. But usually we use session method in real time…because we can transfer large amount of data from internal table... Read more »
There are three modes of Call Transaction method: 1) A – Display All Screens 2) E – Display Errors 3) N – Background Processing Read more »
Field Symbols – They are placeholder or symbolic names for the other fields. They do not physically reserve space for a field, but point to its contents. It can... Read more »
STEP 1: CONVERTING THE LEGACY SYSTEM DATA TO A FLAT FILE to internal table CALLED “CONVERSION”. STEP 2: TRANSFERING THE FLAT FILE INTO SAP SYSTEM CALLED “SAP... Read more »
BATCH INPUT SESSION is an intermediate step between internal table and database table. Data along with the action is stored in session i.e. data for screen fields,... Read more »
Call Transaction Method & Call Dialog Read more »
Pool Table - 1) Many to One Relationship. 2) Table in the Dictionary has the different name, different number of fields, and the fields have the different name as... Read more »
Two Problems: - 1) If the user forgets to opt for keep session then the session will be automatically removed from the session queue (log remains). However, if session... Read more »
Different types of data dictionary objects: 1) Tables 2) Views 3) Data elements 4) Structure 5) Domains 6) Search Helps 7) Local Objects Matchcode Read more »
Four Types of Tables: 1. Transparent tables - Exists with the same structure both in dictionary as well as in database exactly with the same data and fields. Both... Read more »
Steps to create a table: Step 1: creating domains (data type, field length, Range). Step 2: creating data elements (properties and type for a table field). Step... Read more »
No, Transparent table do exist with the same structure both in the dictionary as well as in the database, exactly with the same data and fields. Read more »
Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements: EXTRACT... Read more »
Collect : If an entry with the same key already exists, the COLLECT statement does not append a new line, but adds the contents of the numeric fields in the work... Read more »
Open SQL – These statements are a subset of standard SQL. It consists of DML command (Select, Insert, Update, Delete). It can simplify and speed up database access.... Read more »
To use a Native SQL statement, you must precede it with the EXEC SQL statement, and follow it with the ENDEXEC statement as follows: EXEC SQL [PERFORMING ]. ENDEXEC. There... Read more »
ABAP Editor: Tool in the ABAP Workbench in which you enter the source code of ABAP programs and check their syntax. You can also navigate from the ABAP Editor to... Read more »
The events are as follows: 1.Initialization 2.At selection-screen 3.Start-of-selection 4.End-of-selection 5.Top-of-page 6.End-of-page 7.At line-selection 8.At user-command 9.At... Read more »
An Interactive report is a dynamic drill down report that produces the list on users choice. Difference: - A) The list produced by classical report doesn’t allow... Read more »
Its an Interactive report where in the user can get more relevant data by selecting explicitly. Read more »