Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap general

Former Member
0 Likes
295

1) What table stores online messages?

2) What is the Difference between Header and Item in ABAP? VBAK-Sales Order Header,VBAP-Sales Order Item, how can u use these tables in one query, means by using these tables write a select query.

3) What is the RANGES stmt used in ABAP. If anybody know this answer. plz post imdtly

4) How to run bdc program in background?

5) How to send the idoc to multiple sub systems?

6) There is size category(0,1,2,3)if i need more space after giving the size 0.what i have to do now?

7) What is the difference b/w linear search and binary search? (How can these search) 8)what is the difference b/w database and data dictionary?

9) How can we get what are the exits available for va01 transaction?

9)1.what are the text modules. 2. What is function module in report.

10) Utility of bdc cursor?

11)what a full form of badi,bapi,alv,ale .

12)how many fields in Mara table.

13) Suppose, we are creating one table. at that time we are mention table space and size category. Generally size category is from 0 to 6 is available. suppose if we are declare size category as 0(zero). For 0 (zero) the size of rows is from 0(zero) to 19000. I have 25000 records to insert into table. But table size is declared as 0(zero). i.e 19000 records. What about remaining 6000 records. Shall i insert in to table or not? If insert how can i do? if not insert what can i do?

14) How to calculate the difference between two date type of variables?

15) In a script, i want to print something at end of last page only. How can i print it?

1 REPLY 1
Read only

Former Member
0 Likes
265

1) What table stores online messages? ---T100 table stores the messages.

2) What is the Difference between Header and Item in ABAP? VBAK-Sales Order Header,VBAP-Sales Order Item, how can u use these tables in one query, means by using these tables write a select query. -


We can use Join Statements to get data from both the tables in one Select stmt.

3) What is the RANGES stmt used in ABAP. If anybody know this answer. plz post imdtly -


if u want to specify a WHERE condition in Select stmt which contains more than one value.

U can declare ranges this way:

ranges: r_period for

R_PERIOD-SIGN = 'I'.

R_PERIOD-OPTION = 'BT'.

R_PERIOD-LOW = v_value1.

R_PERIOD-HIGH = V_value2.

append r_period.

Sign: Two values: I- Included E-Excluded

Option: it can take values such LT -Less than, GT- greater than ,LE-Lessthan Equalto , GE-Greater than Equalto , BT-between.

Low- Lowest value it can take

High-Highest value it can take.

6) There is size category(0,1,2,3)if i need more space after giving the size 0.what i have to do now? -


You can select the categories 0 to 4 for your table. Each category is assigned a specific fixed storage area value in the database. When you create a table, initial space is saved for it in the database. If more space is required later as a result of data that has been entered, the storage space is increased in accordance with the category selected.

7) What is the difference b/w linear search and binary search? (How can these search) 8)what is the difference b/w database and data dictionary? -


The BINARY SEARCH addition means that you can access an entry in a standard table by its key as quickly as you would be able to in a sorted table.

9)1.what are the text modules. 2. What is function module in report. -


Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function modules perform tasks of general interest to other programmers. Usually these tasks are well-defined functions that all users need, regardless of application. Some well-defined tasks include performing tax calculations, determining factory calendar dates, and calling frequently used dialogs.

10) Utility of bdc cursor? -


BDC_CURSOR is to place the cursor in the field where u want.

11)what a full form of badi,bapi,alv,ale . -


BADI- Business Add-ins, BAPI-Business Application Programming Interface

ALV-ABAP List Viewer , ALE- Application Link Enabling.

12)how many fields in Mara table. -


It depends. U can increase the no. of fields by appending structures.

13) Suppose, we are creating one table. at that time we are mention table space and size category. Generally size category is from 0 to 6 is available. suppose if we are declare size category as 0(zero). For 0 (zero) the size of rows is from 0(zero) to 19000. I have 25000 records to insert into table. But table size is declared as 0(zero). i.e 19000 records. What about remaining 6000 records. Shall i insert in to table or not? If insert how can i do? if not insert what can i do?------- I think it will ask you to change the size category before inserting the records 19001.

14) How to calculate the difference between two date type of variables?---- plz go through the thread named: " Calculation Of Days" in SDN.

15) In a script, i want to print something at end of last page only. How can i print it? -


U can create a footer window.display whatever u need in that window. In the layout place the window last.

Do reward points if helpful.

Thanks