How to obtain HOLDDATA and ++ASSIGNS using HTTPS
search cancel

How to obtain HOLDDATA and ++ASSIGNS using HTTPS

book

Article ID: 208135

calendar_today

Updated On:

Products

COMMON SERVICES FOR Z/OS

Issue/Introduction

Sample installation jobs to obtain the HOLDDATA and ++ASSIGN statements use FTP.

Common Services offers SAMPJCL jobs AW050CAR and AW060RCH

How can these be accessed using HTTPS?

 

Environment

Release : 15.0

Component : CCS390 - COMMON SERVICES FOR Z/OS

Resolution

To download the  HOLDDATA and ++ASSIGN statements to the z/OS mainframe using HTTPS use SMP/E Internet Service Retrieval RECEIVE ORDER.

This feature allows you to submit requests for PTFs and HOLDDATA directly from Broadcom to your mainframe.

To use HTTPS in the RECEIVE ORDER  specify HTTPS in the downloadmethod option in the CLIENT section:

//CLIENT DD *
 <CLIENT
   downloadmethod="https"
..
 >
/*

To download the HOLDDATA specify CONTENT(HOLDDATA) in the RECEIVE ORDER:

//SMPCNTL   DD *
  SET BDY(GLOBAL).
  RECEIVE ORDER(
        CONTENT(HOLDDATA)
          ORDERSERVER(ORDSRVR)
          CLIENT(CLIENT)
          )
          DELETEPKG.
/*

To download the ++ASSIGNS and the corresponding PTFs for the CARS specify CONTENT(RECOMMENDED) in the RECEIVE ORDER: 

//SMPCNTL   DD *
  SET BDY(GLOBAL).
  RECEIVE ORDER(
          CONTENT(RECOMMENDED)
          ORDERSERVER(SMPOSRVR)
          CLIENT(SMPCLNT)
          )
          DELETEPKG.
/*

 

Additional Information