I need to create an AS/400 command. Based on the requirement, it has two parameter, say A and B, which cannot be filled in the same time. Both will be displayed when F4 is pressed to prompt, but only one can be filled at a time. If both are filled an error message should appear saying this is invalid. Can someone tell me how to create a command like this? What do I need to specify in the CMD source to achieve it?

link|improve this question

53% accept rate
feedback

2 Answers

up vote 8 down vote accepted

Use the DEP command definition statement to control the parameters.

CMD PROMPT('TEST')
PARM KWD(A) TYPE(*CHAR) PROMPT('A')
PARM KWD(B) TYPE(*CHAR) PROMPT('B')
DEP CTL(*ALWAYS) PARM(A B) NBRTRUE(*EQ 1)
link|improve this answer
1  
Does the source above mean that one of A and B must be filled, but not both? This is what I need. The can't be filled in the same time but they can't be left blank together either. – God_of_Thunder Nov 3 '11 at 16:16
@God_of_Thunder: It means 1 of the 2 parameters must have a value and the other must be empty. – JamesA Nov 3 '11 at 16:52
@God_of_Thunder If you want display a message if both are specified, then on the DEP statement specify MSGID(yourmsgid). – WarrenT Nov 4 '11 at 4:03
It works! Thanks a lot. – God_of_Thunder Nov 4 '11 at 12:53
feedback

The CMD source only has rudimentary ability to perform validity checking. Typically, end user business rules are enforced by a validity checking program. See CRTCMD VLDCKR(). The VCP is very similar to the CPP, except if the command fails validity checking, your VCP sends a *DIAG message to the caller with the details of the reason, and a CPF0002 *ESCAPE message to the caller to tell it the command did not run.

link|improve this answer
How to create this VCP? – God_of_Thunder Nov 3 '11 at 16:14
2  
In this case, a VCP is an overly cumbersome way to accomplish what is easily done with the DEP statement shown above. – WarrenT Nov 4 '11 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.