Prep for USADRVAL
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
D pMsgQ 10
|
D pMsgQ 10
|
||||||
D pMsgid 7
|
D pMsgid 7
|
||||||
D pMsgFile 10
|
D pMsgFile 10
|
||||||
D pMsgDta 80 options(*NOPASS)
|
D pMsgDta 512 options(*NOPASS)
|
||||||
D Varying
|
D Varying
|
||||||
//============================================================
|
//============================================================
|
||||||
D ClrMsgPgmQ pr N Clear PGM Msg Q
|
D ClrMsgPgmQ pr N Clear PGM Msg Q
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
**free
|
||||||
|
//=== US Address Validation Data Structure Parm template =============
|
||||||
|
dcl-ds USAdrValDS template qualified;
|
||||||
|
Address1 char(30);
|
||||||
|
Address2 char(30);
|
||||||
|
City char(30);
|
||||||
|
State char(2);
|
||||||
|
Zip5 char(5);
|
||||||
|
Zip4 char(4);
|
||||||
|
Number int(10); // Error Number
|
||||||
|
Source varchar(30); // Error Source
|
||||||
|
Description varchar(512); // Error Description
|
||||||
|
end-ds;
|
||||||
|
// === End of US Address Validation Data Structure Parm template =====
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
**Free
|
||||||
|
dcl-pr USAdrVal likeds(USAdrValDs) extproc('USADRVAL');
|
||||||
|
inAddr likeds(USAdrValDS);
|
||||||
|
end-pr;
|
||||||
|
//=== End of USAdrVal Prototype =====================================
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
d pMsgQ 10
|
d pMsgQ 10
|
||||||
d pMsgid 7
|
d pMsgid 7
|
||||||
d pMsgFile 10
|
d pMsgFile 10
|
||||||
d pMsgDta 80 options(*NOPASS)
|
d pMsgDta 512 options(*NOPASS)
|
||||||
d Varying
|
d Varying
|
||||||
//=== Calling Parameters =======================================
|
//=== Calling Parameters =======================================
|
||||||
// Parm I/O/B Description
|
// Parm I/O/B Description
|
||||||
|
|||||||
Reference in New Issue
Block a user