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

reports

Former Member
0 Likes
427

1) What is the difference between report and scripts?

2) How to display all the parameters in single line?

3) How to get user input enabled field on report?

4) What are the different types of variants? What are the screen variants? Difference between screen variants and transaction variants? Where will the created variants store?

How to read the float value in selection-screen?

5) Display the default values in selection screen? List out them?

6) Which table we use to change the selection-screen dynamically?

7) What is the master client in sap

1 ACCEPTED SOLUTION
Read only

prasanth_kasturi
Active Contributor
0 Likes
396

1) What is the difference between report and scripts?

reports are generally used for internal purpose(in the company) and scripts outside the company. scripts can be easily designed to reqiured design(o/p style). these are main two differences.

2) How to display all the parameters in single line?

use all the parameters between

selection-screen begin of line.

parameters : p1 type c,

p2 type i, ....etc

selection screen end of line.

3) How to get user input enabled field on report?

use alv grid and when we pass in layout edit field we get i/p enabled field. i.e user can change a value on the scrren itself

4) What are the different types of variants? What are the screen variants? Difference between screen variants and transaction variants? Where will the created variants store?

check the following link you will get a clear idea on variants

http://help.sap.com/saphelp_nw04/helpdata/en/c0/980374e58611d194cc00a0c94260a5/content.htm

5) Display the default values in selection screen? List out them?

this que is not clear

6) Which table we use to change the selection-screen dynamically?

screen table.

7) What is the master client in sap

master clien 000

😎 How to read the float value in selection-screen?

in parameters and select-options float data type is not allowed. use p insted

my advice is not to post too many que. it will not be helpful for u as u will niot get many ans

regards

prasanth

2 REPLIES 2
Read only

prasanth_kasturi
Active Contributor
0 Likes
397

1) What is the difference between report and scripts?

reports are generally used for internal purpose(in the company) and scripts outside the company. scripts can be easily designed to reqiured design(o/p style). these are main two differences.

2) How to display all the parameters in single line?

use all the parameters between

selection-screen begin of line.

parameters : p1 type c,

p2 type i, ....etc

selection screen end of line.

3) How to get user input enabled field on report?

use alv grid and when we pass in layout edit field we get i/p enabled field. i.e user can change a value on the scrren itself

4) What are the different types of variants? What are the screen variants? Difference between screen variants and transaction variants? Where will the created variants store?

check the following link you will get a clear idea on variants

http://help.sap.com/saphelp_nw04/helpdata/en/c0/980374e58611d194cc00a0c94260a5/content.htm

5) Display the default values in selection screen? List out them?

this que is not clear

6) Which table we use to change the selection-screen dynamically?

screen table.

7) What is the master client in sap

master clien 000

😎 How to read the float value in selection-screen?

in parameters and select-options float data type is not allowed. use p insted

my advice is not to post too many que. it will not be helpful for u as u will niot get many ans

regards

prasanth

Read only

Former Member