community.sap_launchpad.software_center_download (1.1.1) — module

SAP software download

| "added in version" 1.0.0 of community.sap_launchpad"

Authors: Lab for SAP Solutions

Install collection

Install with ansible-galaxy collection install community.sap_launchpad:==1.1.1


Add to requirements.yml

  collections:
    - name: community.sap_launchpad
      version: 1.1.1

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Download using search query
  community.sap_launchpad.sap_launchpad_software_center_download:
    suser_id: 'SXXXXXXXX'
    suser_password: 'password'
    softwarecenter_search_query:
      - 'SAPCAR_1324-80000936.EXE'
    dest: "/tmp/"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Download using direct link and filename
  community.sap_launchpad.software_center_download:
    suser_id: 'SXXXXXXXX'
    suser_password: 'password'
    download_link: 'https://softwaredownloads.sap.com/file/0010000000048502015'
    download_filename: 'IW_FNDGC100.SAR'
    dest: "/tmp/"

Inputs

    
dest:
    description:
    - Destination folder.
    required: true
    type: str

suser_id:
    description:
    - SAP S-User ID.
    required: true
    type: str

deduplicate:
    description:
    - How to handle multiple search results.
    required: false
    type: str

download_link:
    description:
    - Direct download link to the SAP software.
    required: false
    type: str

suser_password:
    description:
    - SAP S-User Password.
    required: true
    type: str

download_filename:
    description:
    - Download filename of the SAP software.
    required: false
    type: str

softwarecenter_search_query:
    description:
    - Filename of the SAP software to download.
    required: false
    type: str

Outputs

msg:
  description: the status of the process
  returned: always
  type: str