Hello,
I have developed a adobe PDF Form, which is integrated in web ui.
When I go to Web UI => ServicePro => Billing Document
I choose a billing document.
Clicking in Output preview I have the PDF preview !
Everything is going well except the fact that closing the PDF preview windows genrerate the following message :
Exception Class CX_OS_OBJECT_NOT_FOUND
Error Name
Program CL_TRIGGER_PPF================CP
Include CL_TRIGGER_PPF================CM001
ABAP Class CL_TRIGGER_PPF
Method IF_OS_STATE~HANDLE_EXCEPTION
Line 32
Long text -
Debugging my program, I have found that the probleme comes from the method GET_IS_INACTIV
The error is
state_read_access.
define state_read_access.
try.
raise event if_os_state~read_access.
catch cx_os_no_check_container into
cl_os_system=>exception_no_check_container.
cl_os_system=>exception_object_not_found ?=
cl_os_system=>exception_no_check_container->previous.
call method if_os_state~handle_exception
exporting i_ex_os = cl_os_system=>exception_object_not_found.
endtry.
end-of-definition.
I can't go into os_state~read_access. method.
Does anyone had the same problem and found a solution ?
Best regards.
Abdou