Application Development 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: 

Report & sapscript questions

Former Member
0 Kudos

sir, plz help me to solve the below question

1 . How do you read selected lines of database table into an internal table in packages of predefined size. Give me detail usig example .

2. How do you write a DATA object from ABAP/4 program to ABAP/4 memory and restore the same from memory to program.

3. Name the ABAP/4 key word for searching a string in an Internal Table.

4. Is it possible to create new dynamic programs during runtime of an ABAP/4 program? If so how?

5. There is a standard SAP-Script layout ‘RVINVOICE01’ for printing Invoices using transaction code VF02. Suppose we have to redesign this layout from scratch using Smartforms, to display data all of which the standard driver program fetches. Then why will it be necessary to re-write the driver-program (even though we do not have to fetch any excess data)?

6. Suppose there is an User-exit that has not yet been used by anyone anywhere. Explain in detail how will you make this user-exit functional?

7.What is the basic difference between a Main window and other windows with respect to print outputs?

8. What does the standard SAP function-module ‘SPELL_AMOUNT’ do?

9. Through which transaction-code can you request for a CTS number?

1 REPLY 1

former_member191735
Active Contributor
0 Kudos

1 . How do you read selected lines of database table into an internal table in packages of

predefined size. Give me detail usig example .

select matnr werks from marc into table itab

package size 10.

2. How do you write a DATA object from ABAP/4 program to ABAP/4 memory and restore the

same from memory to program.

EXPORT v_cash TO MEMORY ID 'CID'.

import v_cash from memory id 'CID'.

3. Name the ABAP/4 key word for searching a string in an Internal Table.

4. Is it possible to create new dynamic programs during runtime of an ABAP/4 program? If

so how?

5. There is a standard SAP-Script layout ‘RVINVOICE01’ for printing Invoices using

transaction code VF02. Suppose we have to redesign this layout from scratch using

Smartforms, to display data all of which the standard driver program fetches. Then why

will it be necessary to re-write the driver-program (even though we do not have to fetch

any excess data)?

- because driver program for script and smartforms are different.

check the program RVADIL01 for vf02 smartform. This is standard driver program

6. Suppose there is an User-exit that has not yet been used by anyone anywhere. Explain in

detail how will you make this user-exit functional?

go to CMOD - create a project - give enhancement name in enhancement assignments - go to function

module - double click on include - when warning displays just press enter and then put

a break point or write your code to make it functional.

7.What is the basic difference between a Main window and other windows with respect to

print outputs?

-

8. What does the standard SAP function-module ‘SPELL_AMOUNT’ do?

- read function module documentation.

9. Through which transaction-code can you request for a CTS number?