Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

apex.server.process Error: SyntaxError: Unexpected end of JSON input

Jake4321May 12 2021

Hi all,
Current version: Application Express 19.1.0.00.15
I am getting the fowling error on a very simplw apex.server.process call and I cannot figure out what is happening.
Error: SyntaxError: Unexpected end of JSON input
How can I go about troubleshooting this?
As usual, any comments, tips, suggestions are greatly appreciated.
Thanks,
Jake

==>
apex.message.clearErrors();
apex.message.confirm("Les items seront importés au borderau. Désirez vous continuer?",
function( okPressed ) {
if( okPressed ) {
//alert("Ok a été cliqué");
apex.server.process("CBImporterItemsBordereau",
{pageItems:"#P21_SOUS_PROJET_SPD,#P21_INDIC_SUPPRESSION_ON"
},
{success: function()
{alert("Les données ont été importées avec succès");
apex.navigation.dialog.cancel(true);
}
}
)
} else {
alert("Annuler a été cliqué");
}
});
<==

This post has been answered by InoL on May 12 2021
Jump to Answer
Comments
Post Details
Added on May 12 2021
2 comments
4,425 views