Hui,
In my requirement the condition is given as follows.
Case p_print.
when 1.
print original.
when 2.
print original + copy.
when 3.
print original + copy 1 & 2.
when 4 or space or 0.
print all the copies.
Endcase.
In the above condition for ( 4 or space or 0) the process is taking only 4. When p_print is empty or 0 the condition is not working.
Please help me.