PeopleCode Question:
Download Job Interview Questions and Answers PDF
How to comment out a piece of the peoplecode in a program?
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 */
*>
Single and multiple line commenting:
/* PeopleCode stmts
------ ------ ------ ----
*/
Nested Comments:
<*
/* PC Stmts ...... ..... ..... */
/* ...... Some info on code ...... */
/* More comments */
*>
Download PeopleCode Interview Questions And Answers
PDF
Previous Question | Next 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? |