In the SAP Business One database, the CTNS table contains instructions that can disable the Post Transaction Notification for selected object ID’s.
For detailed information about the CTNS table, read this SAP Note.
In your SAP Business One database, execute the following SQL query to see all the object IDs that are disabled for Post Transaction Notification:
SELECT CTNS."ObjectId" FROM CTNS WHERE CTNS."EnablePTn" = 'N'
If the result contains object IDs that are required for a given Netronic Manufacturing application, then you should re-enable the Post Transaction Notification for them. You can do so by executing the following SQL query:
UPDATE CTNS SET "EnablePTn" = 'Y' WHERE "ObjectId" = '…'
You can then execute the first SQL query again to verify that the required object IDs are not listed anymore.
For the object IDs that are required for a given Netronic Manufacturing application, click here.
Comments
0 comments
Please sign in to leave a comment.