Show TOC

Procedure documentationSetting up a Repository Locate this document in the navigation structure

Procedure

  • For the JCo Repository, you need the following interfaces:

    • JCoRepository: Contains the runtime metadata of the RFMs.

    • JCoFunctionTemplate: Contains the metadata for an RFM.

    • JCoFunction: Represents an RFM with all its corresponding parameters.

  • Make sure that the user ID for the Repository has all the required authorizations for accessing the metadata of the SAP servers.

    Note Note

    The user ID for querying the repository is defined in the corresponding destination.

    End of the note.

    Caution Caution

    It is strongly recommended that you lock metadata before using it for changes to avoid it be used elsewhere.

    End of the caution.

Example

Example Example

Interfaces

JCoRepository

JCoFunctionTemplate

JCoFunction

JCoParameterList

JCoStructure

JCoTable

End of the example.

Syntax Syntax

Creating a JCo Repository

JCoRepository mRepository;

mRepository = destination.getRepository ();

End of the code.