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

ALV issue

Former Member
0 Likes
853

Which is the standard FM for ALV

null

8 REPLIES 8
Read only

Former Member
0 Likes
817

hi

reuse_alv_list_display for list display

reuse_alv_grid_display for grid display

pl do check the forum before posting your question...will be always helpful

Sathish. R

Read only

Former Member
0 Likes
817

hi SV,

Can you be more clear ???

any ways refer

http://www.sap-img.com/abap-function.htm

for ALV's

Regards,

Santosh

Read only

Former Member
0 Likes
817

ALV is a technology that is driven by function modules. There is not one but many of them. THese FMs start with 'REUSE_ALV'. Since each of the function modules perform a different activity, which is significant within itself, we cannot pinpoint a specific FM to be the standard.

Read only

Former Member
0 Likes
817

Hey SV,

please check alv demo pgms by searching...

programs by typing <b>BALV</b> in SE38..

regards

raghu

Read only

Former Member
0 Likes
817

Check some of these

REUSE_ALV_BLOCK_LIST_APPEND Append Simple List in Block Mode

REUSE_ALV_BLOCK_LIST_DATA_GET Internal Use

REUSE_ALV_BLOCK_LIST_DATA_SET Internal Use

REUSE_ALV_BLOCK_LIST_DISPLAY Display a block table

REUSE_ALV_BLOCK_LIST_HS_APPEND

REUSE_ALV_BLOCK_LIST_INIT Initialization of Block List Output

REUSE_ALV_BLOCK_LIST_REFRESH

REUSE_ALV_BLOCK_STATUS_GET

REUSE_ALV_CHECKBOX_SET

REUSE_ALV_COMMENTARY_WRITE List body comment block output

REUSE_ALV_EVENTS_GET Returns table of possible events for a list type

REUSE_ALV_EVENTS_TRANSFER

REUSE_ALV_EVENT_NAMES_GET Returns table of constant names of possible events for a list type

REUSE_ALV_FIELDCATALOG_MERGE Create field catalog from dictionary structure or internal table

REUSE_ALV_HIERSEQ_LIST_DISPLAY Hierarchical sequential list output

REUSE_ALV_HS_LIST_WIDTH_GET Calculate list width

REUSE_ALV_HS_TABLES_GET

REUSE_ALV_LIST_DISPLAY Output a simple list (single line or several lines)

REUSE_ALV_LIST_LAYOUT_INFO_GET Read current ALV list information

REUSE_ALV_LIST_LAYOUT_INFO_SET Set current ALV list information

REUSE_ALV_LIST_SELECTIONS_GET

REUSE_ALV_LIST_SELECTIONS_SET

REUSE_ALV_LIST_WIDTH_GET Calculate list width

REUSE_ALV_POPUP_TO_SELECT List in dialog box to choose one or more entries (or display only)

REUSE_ALV_TABLES_GET

REUSE_ALV_TABLE_CREATE Internal Use

REUSE_ALV_TEXTPOOL_WRITE List body comment block output

REUSE_ALV_TRANSFER_DATA

REUSE_ALV_TRANSFER_DATA_BACK

REUSE_ALV_VARIANT_ALL_MAINTAIN Maintain all display variants for one object

REUSE_ALV_VARIANT_DEFAULT_GET Read default display variant (description only, w/o field catalog)

REUSE_ALV_VARIANT_EXISTENCE Checks whether a display variant exists

REUSE_ALV_VARIANT_F4 Display variant selection dialog box

REUSE_ALV_VARIANT_MAINTAIN Definition of a display variant outside the list context

REUSE_ALV_VARIANT_SAVE Save a display variant

REUSE_ALV_VARIANT_SELECT Read a display variant

Regards,

Santosh

Read only

RaymondGiuseppi
Active Contributor
0 Likes
817

Look at REUSE libray <b>SE83</b>

Look at <a href="http://help.sap.com/saphelp_46c/helpdata/en/38/248338c617623ce10000009b38f8cf/frameset.htm">How do I use the Reuse Library? (BC-DWB-UTL)</a>

<i>The Reuse Library is a transaction in the R/3 System that helps developers when searching for reusable software objects (transaction code SE83).</i>

Regards

Read only

Former Member
0 Likes
817

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

I_CALLBACK_PROGRAM = WS_REPID

I_GRID_TITLE = '1234'

IT_FIELDCAT = INT_FIELDCAT[]

I_SAVE = WS_SAVE

IS_VARIANT = WS_VARIANT

IT_EVENTS = INT_EVENTS[]

TABLES

T_OUTTAB = <FS_TAB>.

If I send IS_VARIANT, dynamically generated fields are hidden.

Read only

Former Member
0 Likes
817

Hi,

Check this link:

http://www.sapbrain.com

You will get full knowledge of ALV.

Regards,

Bhaskar