‎2006 Jun 13 2:08 PM
Hi,
i need simple program using classes, which should populate the pop up window.
Thanks,
Regards.
‎2006 Jun 13 2:16 PM
‎2006 Jun 13 2:16 PM
‎2006 Jun 13 2:23 PM
‎2006 Jun 13 2:31 PM
Maybe something like this?
report zrich_0005.
data: it001w type table of t001w with header line.
data: dialog_box type ref to cl_gui_dialogbox_container,
alv_bottom type ref to cl_gui_alv_grid,
alv_right type ref to cl_gui_alv_grid,
repid type syrepid.
parameters: p_check type c.
at selection-screen output.
select * into corresponding fields of table it001w
from t001w.
create object dialog_box
exporting
width = 700
height = 300.
create object alv_right
exporting i_parent = dialog_box.
call method alv_right->set_table_for_first_display
exporting
i_structure_name = 'T001W'
changing
it_outtab = it001w[].
Regards,
Rich Heilman
‎2006 Jun 13 2:58 PM
Hi Rich Heilman,
It looks good, but close button of that dailog bos not activated like minimize and maximize.
is it possible without using of alv grid.
it should be display as simple text
Thanks &
Regards
‎2006 Jun 13 2:25 PM
HI
GOOD
GO THROUGH THESE LINKS WHERE YOU CAN GET SOME GOOD EXAMPLES USING OO CONCEPT.
http://abap4.tripod.com/SAP_and_ABAP_Links.html
http://www.sapgenie.com/abap/OO/eg.htm
THANKS
MRUTYUN
‎2006 Jun 13 2:56 PM
hi Madhu
check the below links
http://www.sapgenie.com/abap/OO/index.htm
http://www.geocities.com/victorav15/sapr3/abap_ood.html
http://www.brabandt.de/html/abap_oo.html
Check this cool weblog:
/people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
/people/thomas.jung3/blog/2004/12/08/abap-persistent-classes-coding-without-sql
http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b6254f411d194a60000e8353423/frameset.htm
Regards,
Naveen