Application Development and Automation 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: 
Read only

Opening a XMI Interface...

Former Member
0 Likes
530

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
Read only

Former Member
0 Likes
352

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