‎2007 Apr 18 8:40 AM
HI ALL,
i have a requirement. when i select the checkbox and i click delete button it will delete the entry in alv lis as well as from ztable also. befor deleting i want to show a pop inside this pop up iwant to show somw test like entry will delete from ztable.
anybody can tell me which function module i have to use.
if possible send me some sample code for this function module.
thanks,
maheedhar.t
‎2007 Apr 18 8:43 AM
FM's :
POPUP_TO_CONFIRM_WITH_MESSAGE
POPUP_TO_CONFIRM_STEP
check
POPUP_TO_CONFIRM_*
‎2007 Apr 18 8:43 AM
FM's :
POPUP_TO_CONFIRM_WITH_MESSAGE
POPUP_TO_CONFIRM_STEP
check
POPUP_TO_CONFIRM_*
‎2007 Apr 18 8:47 AM
Hi,
Use the below function module
POP_TO_CONFIRM_LOSS_OF_DATA.
Regards
Sudheer
‎2007 Apr 18 8:49 AM
.hi, if u nid a confirmation then u can use "POP_UP_TO_CONFIRM" but if u need to show the data of the selected row, u can create a screen with the same functionality as the above FM extending by displaying what data u need to display,
regards,
zry
‎2007 Apr 18 8:55 AM
Hi Siri,
you can use the function module "POPUP_WITH_2_BUTTONS_TO_CHOOSE",. You can pass what are all the values that you want to pass, title, yes or no and this wil return 1 or 2 based on the button that you select. Make sure that your import parameter is character type other wise this function module will lead to run time error.
‎2007 Apr 18 8:56 AM
Hello,
check out this one.
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
EXPORTING
ENDPOS_COL = 40
ENDPOS_ROW = 10
STARTPOS_COL = 1
STARTPOS_ROW = 1
TITLETEXT = 'Errors displayed'
IMPORTING
CHOISE =
TABLES
VALUETAB = it_err1
EXCEPTIONS
BREAK_OFF = 1.
<b>
Reward points if helpful.</b>
Thanks,
Sachin