Hello.
I have an issue that I can find no solution.
On a custom page I made, I added a custom menu to fill the data.
The thing is, when I run the code behind, the table remains empty, when I run the exact same code on sql developer, the table is correctly filled with data.
Initially, I suspected a trouble related to parameters, I made then a new procedure with no parameter, I continue to have the exact same trouble.
Code I put :
begin
ifsapp.MyCustomPackage_api.SFDChargerContratW0071;
commit;
end;
Right before, I had this code :
begin
ifsapp.MyCustomPackage_api.SFD_CP_PR_Contrat('O', 'W0071');
commit;
end;
Inside the SFDChargerContratW0071 procedure, I put this :
PROCEDURE ChargerContratW0071
IS
BEGIN
SFD_CP_PR_Contrat('O', 'W0071');
END ChargerContratW0071;
Is there something that I’m missing?
Thanks