Posts

Showing posts from October, 2017

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 ...