代码如下,供参考
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
DATA(lo_fpm) = cl_fpm=>get_instance( ). DATA ls_dialog_box_properties TYPE fpm_s_dialog_box_properties. lo_fpm->raise_event_by_id( cl_fpm_event=>gc_event_edit ). ls_dialog_box_properties-height = '50%'. " As per your requirement ls_dialog_box_properties-width = '50%'." As per your requirement lo_fpm->open_dialog_box( EXPORTING iv_dialog_box_id = 'S0_COMPOSITE_ASSIGN' " FPM: ID of the dailog window is_dialog_box_properties = ls_dialog_box_properties " Dialog Box Properties * io_event_data = " Event data for the dilaog box * iv_event_adapts_context = " Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') ). |
以上。
发表评论