Question { 7958 }
how to call the function module generated in smartform for
printing the form ?
Answer
Is This Answer Correct ? | 2 Yes | 0 No |
01 xxx pic 9(4).
01 yyy pic 9(6).
move 123456 into yyy.
move yyy to xxx.
display yyy.
what would be the value of yyy
Answer
Is This Answer Correct ? | 3 Yes | 12 No |
01 xxx pic 9(4).
01 yyy pic 9(6).
move 123456 into yyy.
move yyy to xxx.
display yyy.
what would be the value of yyy
Answer
Is This Answer Correct ? | 14 Yes | 2 No |