Description:
I am trying to set up BCPII and extract the APPLDATA. In ACF2 that involves using $USERDATA in the rule.
$KEY(HWI.TARGET.IBMZ390.ZSERVER) TYPE(FAC)
$USERDATA(BCPII)
UID(*) SERVICE(READ) ALLOW
But the EXTRACT call still fails. Why?
Solution:
The ACF2 code does not EXTRACT with SERVICE included in the rule. Modify the rule to not have SERVICE. This is true for all EXTRACT calls, not just BCPII related.
$KEY(HWI.TARGET.IBMZ390.ZSERVER) TYPE(FAC)
$USERDATA(BCPII)
UID(*) ALLOW
-