PeopleCode Question:

How to comment out a piece of the peoplecode in a program?

PeopleCode Interview Question
PeopleCode Interview Question

Answer:

REM can be used to comment a single line, but it will be processed by the comp. processor;

Single and multiple line commenting:

/* PeopleCode stmts

------ ------ ------ ----

*/

Nested Comments:

<*

/* PC Stmts ...... ..... ..... */

/* ...... Some info on code ...... */

/* More comments */

*>


Previous QuestionNext Question
Tell me Is there any function exist in peoplecode which stops the processing of whole component?Tell me What is the difference between SQl Object and SQl Exec?