Table-Type Layout at the Beginning of the ALV Output
The following example shows how you insert a design object with a table-type layout at the beginning of the ALV output:
...
*... TOP_OF_LIST
data:
lr_node type ref to if_wd_context_node,
lr_grid type ref to cl_salv_form_layout_grid,
lr_text type ref to cl_salv_form_text,
lr_label type ref to cl_salv_form_label.
create object lr_grid.
lr_text = lr_grid->create_text(
text = '1.2 TEXT'
row = 1
column = 2 ).
lr_label = lr_grid->create_label(
text = '1.1 LABEL'
row = 1
column = 1
r_label_for = lr_text ).
lr_text = lr_grid->create_text(
text = '2.2 TEXT'
row = 2
column = 2 ).
lr_label = lr_grid->create_label(
text = '2.1 LABEL'
row = 2
column = 1
r_label_for = lr_text ).
lr_node = wd_context->get_child_node( name = 'TOP_OF_LIST' ).
call method lr_node->set_attribute
exporting
value = lr_grid
name = 'CONTENT'.
...
Row-Type Layout at End of ALV Output
The following example shows how you display an element of type Text at the end of the ALV output:
...
*... END_OF_LIST
data:
lr_node type ref to if_wd_context_node,
lr_flow type ref to cl_salv_form_layout_flow,
lr_text type ref to cl_salv_form_text.
create object lr_flow.
lr_text = lr_flow->create_text(
text = 'MyText').
lr_node = wd_context->get_child_node( name = 'END_OF_LIST' ).
call method lr_node->set_attribute
exporting
value = lr_flow
name = 'CONTENT'.
Cross-Component Programming, Dynamic Programming, Integrating Forms, Integration, Integration of ALV, Interview Questions, List Viewer in Web Dynpro Portal Integration, TCodes, Web Dynpro ABAP
Saturday, October 11, 2008
Subscribe to:
Post Comments (Atom)
Archive
-
▼
2008
(169)
-
▼
October
(63)
- Calculating J2EE Port Numbers
- How To Recover SDM Password
- Changing SDM Server Modes
- Starting JSPM on an IBM eServer iSeries System
- Starting SDM on an IBM eServer iSeries System
- WEB AS Administration Tools And Installation Mater...
- ESA coming to a SAP stack near you
- mySAP ERP first stop to NetWeaver
- Web Services Testing of SAP NetWeaver Application ...
- Web template adjustment is not working while runni...
- RFC load balancing procedure 'Weighted Round Robin'
- MDM SAP Netweaver
- What you need to know about SAP Netweaver infrastr...
- XI Certification Faqs
- Why don't I have the proper rights to consume some...
- I tried so many things to get that enterprise serv...
- I would like to integrate the Services Registry in...
- I am a partner or a customer, but don't get access...
- I have locked my user. How can I get unlocked again?
- What can I do with the WSDL file which appears aft...
- Is the content via the Solution Map different from...
- What is a Process Component, and how is it differe...
- I can't find any enterprise services - where are t...
- Do I have to pay for enterprise services?
- How does the ES Workplace help me during the desig...
- Licenses
- SAP ABAP List Viewer in Web Dynpro
- SAP Netweaver Managing ALV Output Areas
- SAP Netweaver ALV Output Header
- SAP Fields in SAP Netweaver
- SAP Columns
- SAP Column Headers in SAP Netweaver Managing ALV O...
- SAP Position of Columns
- SAP Footer and Paginators in SAP Netweaver Managin...
- SAP Header and Footer Areas in SAP Netweaver Manag...
- SAP Creating Design Objects and Elements in SAP Ne...
- SAP Design Object Settings in SAP Netweaver Managi...
- SAP Examples of Design Objects in SAP Netweaver Ma...
- Settings Dialog Box in SAP Netweaver Managing ALV ...
- what are all the latest technologies in netweaver
- what is the role of java in the netweaver platform
- What about NW/BSP Integration?
- SAP Web Dynpro ABAP Portal Integration
- SAP Binding to Portal: Prerequisites Web Dynpro AB...
- SAP Creating Web Dynpro ABAP iViews Portal Integra...
- SAP Portal Events Web Dynpro ABAP Portal Integration
- SAP Triggering a Portal Event Web Dynpro ABAP Port...
- SAP Registering and Handling an Event Web Dynpro A...
- SAP Portal Navigation Web Dynpro ABAP Portal Integ...
- SAP Object-Based Navigation (OBN) Web Dynpro ABAP ...
- SAP Absolute Navigation Web Dynpro ABAP Portal Int...
- SAP Relative Navigation Web Dynpro ABAP Portal Int...
- SAP Resume Plugs and Portal Navigation Web Dynpro ...
- SAP Work Protect Mode Web Dynpro ABAP Portal Integ...
- Technical Operations Manual for SAP NetWeaver
- Starting and Stopping SAP NetWeaver ABAP and Java
- Starting and Stopping SAP NetWeaver ABAP Under Mic...
- Starting and Stopping SAP NetWeaver Java Under Mic...
- Starting and Stopping SAP NetWeaver ABAP Under UNIX
- Starting and Stopping SAP NetWeaver Java Under UNIX
- Restarting the Java Stack of an SAP NetWeaver Add-...
- Starting or Stopping Application Services via Adap...
- High Availability Netweaver
-
▼
October
(63)
No comments:
Post a Comment