‎2006 Nov 21 7:03 PM
‎2006 Nov 21 7:08 PM
Hi
It's a tool to check the program, here the system does several controls (not only the syntax checking).
For example it checks if fms are called correctly, if all variables declarated are used.
So there are some kinds of error you don't want to consider as errors, you can use that statament to hide them. In this way the system'll skip them while doing extended check.
For example:
WRITE: 'Bye Bye'.
It wont't get any dumps, but the system consider it an error because it doesn't use a text symbol to write a texts (so it can't translate it).
If you wan't to see it when you check your progtam:
SET EXTENDED CHECK OFF.
WRITE: 'Bye Bye'.
SET EXTENDED CHECK ON.
Max
‎2006 Nov 21 7:06 PM
‎2006 Nov 21 7:08 PM
‎2006 Nov 21 7:24 PM
‎2006 Nov 21 7:08 PM
Hi
It's a tool to check the program, here the system does several controls (not only the syntax checking).
For example it checks if fms are called correctly, if all variables declarated are used.
So there are some kinds of error you don't want to consider as errors, you can use that statament to hide them. In this way the system'll skip them while doing extended check.
For example:
WRITE: 'Bye Bye'.
It wont't get any dumps, but the system consider it an error because it doesn't use a text symbol to write a texts (so it can't translate it).
If you wan't to see it when you check your progtam:
SET EXTENDED CHECK OFF.
WRITE: 'Bye Bye'.
SET EXTENDED CHECK ON.
Max
‎2006 Nov 21 7:14 PM
Hi Kiran,
Please check this example from SAP Help perhaps it may help.
The statement SELECT SINGLE reads a single line from the database table TDOKUIMGR. Although this table has several key fields, the entry in the NODE_ID column of the WHERE condition is unique. The warning in the extended program check that the specified key may not be unique is therefore deactivated.
...
SET EXTENDED CHECK OFF.
SELECT SINGLE ref_object
FROM tdokuimgr
INTO docu_object
WHERE node_id = node_key.
SET EXTENDED CHECK ON.
Regards,
Ferry Lianto