Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.31 KB

interface.md

File metadata and controls

49 lines (34 loc) · 1.31 KB

Interfaces

  1. create
  2. write
  3. activate
  4. read

create

Creates a public interface of the given name with the given description in the given package.

sapcli interface create ZIF_GREETER "Interface description" '$PACKAGE'

write

Changes source code of the given interfaces without activation

sapcli interface write [OBJECT_NAME|-] [FILE_PATH+|-] [--corrnr TRANSPORT] [--activate] [--ignore-errors] [--warning-errors]
  • OBJECT_NAME either interface name or - when it should be deduced from FILE_PATH
  • FILE_PATH if OBJECT_NAME is not -, single file path or - for reading stdin; otherwise space separated list of file paths
  • --corrnr TRANSPORT specifies CTS Transport Request Number if needed
  • --activate activate after finishing the write operation
  • --ignore-errors continue activating objects ignoring errors
  • --warning-errors treat activation warnings as errors

activate

Activates the given interface

sapcli interface activate [--ignore-errors] [--warning-errors] NAME NAME ...
  • --ignore-errors continue activating objects ignoring errors
  • --warning-errors treat activation warnings as errors

read

Download main source codes of the given public interface

sapcli interface read ZIF_GREETER