...
Code Block |
---|
[foobarInstance] SYSID = X |; |1 | MANDANT = X |; |2 | CONTREP = C |; |3 | LoginCL = S |; |0 |@SYSID@MANDANT |
here the index files gives mandant and contrep and the LoginCL variable then contains the SAP connector instance id
or this:
Code Block |
---|
[foobarInstance]
CONTREP = C |; |1 |
LoginCL = S |; |2 | |
in this example the index file directly contains the SAP Connector instance id.
As you see, LoginCLis connected to the Variable S. We see it is concatenated from 2 others. So in index file, the concatenation from place 1 and 2 gives the variable value of LoginCL. This value is pointing to an existing SAP-Connector instance with this name.
...