Print Commands

What are Explicit Print and Implicit Print

Questions by bandisdevi   answers by bandisdevi

Showing Answers 1 - 6 of 6 Answers

Here we have two types of print commands
1) Implicit print:
  (a) here no need to give the print statement.
  (b) mainly useful for variables...
2)explicit print:
   (a)we must give the print statement
   (b)mainly useful for static text..
Sysntax:   <static text>/<variable>(row no.,col no., length)
    here row number specifies from which row print will be started
    here col number specifies from which column print will be started
    length specifies  how much ength should be printed 

anandayn

  • Dec 1st, 2010
 

In Explicit Print Command, you code the Print Command giving the coordinates where you want to print the data.  However, in the implicit Print Command you can print the value directly from the select statement without typing the print command.  For example
Implicit Command:
select
emplid            &emplid (10,11,7)
from PS_JOB

Explicit Command
         Let &emplid = $emplid
         Print $emplid (10,11,7)

Hope this helps.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions