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

ANSWER THESE QUESTION

Former Member
0 Likes
509

) What is the maximum value for Line-Size in the Report?

2) How many methods are there in BDC? Which methods you know well?

3) What is the difference between Report and Script?

4) What are control commands in Scripts?

5) What is the use of PROTECT and ENDPROTECT?

6) Can we display text with color in SAP Script? If yes how can we do that?

7) What is the use of event AT SELECTION-SCREEN ON FIELD?

😎 What is the use of CHAIN and ENDCHAIN statement?

9) How can you set rows and columns for Table control in a screen?

10) what is an user exit?

11) What is table maintenance generator?

12) How can you call a subroutine which is located in program A from program B?

13) What is RFC function module?

14) How many types of RFCs are there?

15)Can we use CALL SCREEN in RFC?

thnanxs in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
479

1) 1023...is the max for line-size.

5) Protect.. endprotect helps to keep the text between it together on one page itself.

8)To ensure that one or more PAI modules are only called when several screen fields meet a particular condition, you must combine the calls in the flow logic to form a processing chain. You define processing chains as follows:

CHAIN.

...

ENDCHAIN.

5 REPLIES 5
Read only

Former Member
0 Likes
479

Hi aman,

use http://help.sap.com/

Regards, Dieter

Read only

Former Member
0 Likes
480

1) 1023...is the max for line-size.

5) Protect.. endprotect helps to keep the text between it together on one page itself.

8)To ensure that one or more PAI modules are only called when several screen fields meet a particular condition, you must combine the calls in the flow logic to form a processing chain. You define processing chains as follows:

CHAIN.

...

ENDCHAIN.

Read only

Former Member
0 Likes
479

Hello Aman,

Check the Wiki section in SDN. Almost all of ur questions are answered there.

Regards,

Vasanth

Read only

Former Member
0 Likes
479

hi,

userexit:

User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a functionmodule. The code for the function module is writeen by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.

chain-endchain:

if you want to validate group of fields put in chain and End chain statement. ...

protect endprotect:

While using Scripts, if u don't want to break a

paragraph text which aparts to another page

i.e. if u wanna display the paragraph with out

breaking in between two pages, u have to use

protect...endprotect.

control commands:

Explicit Page Break: NEW-PAGE

Preventing Page Breaks: PROTECT

Next Main Window: NEW-WINDOW

Assigning a Value to a Text Symbol: DEFINE

Formatting Date Fields: SET DATE MASK

Formatting Time Fields: SET TIME MASK

Country-Dependent Formatting: SET COUNTRY

Position of the Leading Sign: SET SIGN

Initializing Numbered Paragraphs: RESET

Including Other Texts: INCLUDE

Changing the Style: STYLE

Formatting Addresses: ADDRESS

Setting a Header Text in the Main Window: TOP

Setting a Footer Text in the Main Window: BOTTOM

Conditional Text: IF

Finding a Match: CASE

Calling ABAP Subroutines: PERFORM

The Table Maintenance Generator is used to create table maintenance program to add, modify or delete records in the database table. This can be accessed using transaction SE54 or in SE11 using the menu Utilities->Table Maintenance Generator.

reward if helpful.

keerthi

regards,

keerthi

Read only

Former Member
0 Likes
479

2.call transaction , session, direct input

3.Report has no text editor. we can format texts in sapscript.

4.SAPscript Control Commands

Explicit Page Break: NEW-PAGE

Preventing Page Breaks: PROTECT

Next Main Window: NEW-WINDOW

Assigning a Value to a Text Symbol: DEFINE

Formatting Date Fields: SET DATE MASK

Formatting Time Fields: SET TIME MASK

Country-Dependent Formatting: SET COUNTRY

Position of the Leading Sign: SET SIGN

Initializing Numbered Paragraphs: RESET

Including Other Texts: INCLUDE

Changing the Style: STYLE

Formatting Addresses: ADDRESS

Parameters

Setting a Header Text in the Main Window: TOP

Setting a Footer Text in the Main Window: BOTTOM

Conditional Text: IF

The CASE command

Calling ABAP/4 Subroutines: PERFORM

Inserting Print Controls: PRINT-CONTROL

Boxes, Lines, Shading: BOX, POSITION, SIZE

BOX Command

POSITION Command

SIZE Command

Hexadecimal Data: HEX, ENDHEX

Summing a Program Symbol: SUMMING

5. when printing it avoid page break.

7. used validate a single selection screen field.

8. In module pool program chain ..endchain used to validate more than one field.

11.using table maintenance generator we can create authorizations

for tables and can also change or delete field contens.