‎2009 Jul 16 11:46 AM
Hi,
this call causes a dump if user can not be mapped. How can I prevent a dump in this case.
CALL FUNCTION 'BBP_READ_ATTRIBUTES'
EXPORTING
iv_user = lv_user
iv_scenario = 'BBP'
iv_attr_single = lv_attribute
IMPORTING
ev_attr_dft_single = lv_result.
lv_region = lv_result-value.Regards
Marco.
‎2009 Jul 16 11:52 AM
Hi ,
check whether function module import and export table parametrs matches it with your variables declared in your program ,
normally dump occurs if it encounters with differnt data decleration.
Please let me know if you still need any more help.
Thanks and regards,
Rajeshwar
‎2009 Jul 16 11:52 AM
Hi ,
check whether function module import and export table parametrs matches it with your variables declared in your program ,
normally dump occurs if it encounters with differnt data decleration.
Please let me know if you still need any more help.
Thanks and regards,
Rajeshwar
‎2009 Jul 16 11:58 AM
Check whether function module contains any exceptions declared. If FM returns exception for some reason and if we don't catch those exceptions, then also dump will occur.
Regards,
Siva.
‎2009 Jul 16 11:59 AM
Check the FM typ declaration for the user, you need pass the same type of variable to the FM otherwise you get dump.
‎2009 Jul 16 12:21 PM
Before calling the FM, check whether the user is mapped or not and call the function module only if the user is mapped.
‎2009 Jul 16 12:59 PM