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: 

INTERACTIVE ALV REPORT

Former Member
0 Kudos

1. WHAT ARE FM CALLED IN INTRACTIVE REPORT TO DISPLAY THE OUTPUT.

2. WHAT DOES 'CONVERSION_EXIT_ALPHA_INPUT' FM MEAN .

3. WHAT ARE THE PROGRAMMING STANDARDS FOLLOWED?

4. WHAT ARE THE WAYS TO FIND OUT THE TABLES USED IN THE PROGRAM?

5. CAN YOU HAVE TWO DETAIL LISTS FROM THE BASIC LIST AT THE SAME TIME?

IF YES HOW AND IF NO WHY ?

6. WHY DID U SWITCH TO SAP?

The above Q's were asked in interview which i couldn't answer .

please mail me the solutions .

ThankU .

3 REPLIES 3

uwe_schieferstein
Active Contributor
0 Kudos

Hello

FMs for interactive reporting (presumably ALV) are:

- REUSE_ALV_GRID_DISPLAY (do not use anymore -> stone age programming)

- REUSE_ALV_GRID_DISPLAY_LVC (closer to ABAP-OO, but still old-fashioned)

- class CL_GUI_ALV_GRID

- class CL_SALV_TABLE (requires >= 6.40 basis release)

CONVERSION_EXIT_ALPHA_INPUT converts external input into internal format (e.g. customer '12' is converted to '0000000012' with leading zero).

To find out the tables used in a program you could use:

- fm RS_PROGRAM_INDEX (COMPO-TYPE = 'T')

- fm RS_PROGRAM_TABLES

Regards

Uwe

Former Member
0 Kudos

hi,

Hello

FMs for interactive reporting (presumably ALV) are:

- REUSE_ALV_GRID_DISPLAY (do not use anymore -> stone age programming)

- REUSE_ALV_GRID_DISPLAY_LVC (closer to ABAP-OO, but still old-fashioned)

- class CL_GUI_ALV_GRID

- class CL_SALV_TABLE (requires >= 6.40 basis release)

CONVERSION_EXIT_ALPHA_INPUT converts external input into internal format (e.g. customer '12' is converted to '0000000012' with leading zero).

To find out the tables used in a program you could use:

- fm RS_PROGRAM_INDEX (COMPO-TYPE = 'T')

- fm RS_PROGRAM_TABLES

Former Member
0 Kudos

1. 'REUSE_ALV_LIST_DISPLAY'

'REUSE_ALV_GRID_DISPLAY'.

2. 'CONVERSION_EXIT_ALPHA_INPUT' is used to covert the external data into internal format by padding the number with necessary zeroes. eg. '787' becomes '0000000787'.