Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Opening a XMI Interface...

Former Member
0 Kudos

I have problems in opening a correct XMI Session by using "BAPI_XMI_LOGON". I am not able to specify a certain Interface like the XAL or the XBP in the INERFACE-field. Only the standard case without an INTERFACE-input works...

Has anyone an expirience what the problem or the mistake could be...

PS.: This is my first big SAP Development Project...

1 REPLY 1

Former Member
0 Kudos

Hi Matthäus !

I've just stumbled across your post searching because of the same problem. The thing is - you need to fill in the Version Parameter as well.

For Instance:

CALL FUNCTION 'BAPI_XMI_LOGON'

EXPORTING

extcompany = 'Thisismycompany'

extproduct = 'Thisismyproduct'

interface = 'XBP'

version = '1.0'

IMPORTING

sessionid = sessionid

return = return.

Regards + merry Xmas

Andreas