Useful Function Modules in SAP ABAP
1) Pop up Message as Screen with YES / No Buttons : Code : data : g_res( 1 ) type c . clear : g_res. call function 'K_KKB_POPUP_RADIO2' exporting i_title = 'You want to Enter-New Reason Code?' i_text1 = 'YES' i_text2 = 'NO' i_default = 'NO' importing i_result = g_res exceptions cancel = 1 . output : 2 ) Information message as Displayed as Table ( List of Points we can display in Screen ). types : begin of t_tab , text ( 120 ) type c , end of t_tab . data :i_tab type standard table of t_tab , wa_tab type t_tab. refresh : i_tab[]. clear wa_tab. wa_tab- text = 'Use of Create' . append wa_tab to i_tab . clear wa_tab. wa_tab- text = '• To Insert the Records.' . append wa_tab to i_tab . call function 'POPUP_WITH