2013 Feb 21 10:06 AM
Hi experts,
I would like to download the documentation of certain BAPIs from the BAPI explorer.
Is there any solution to download the BAPI documentations from BAPI Explorer (transaction bapi) as HTML to a local client?
Are there any possibilities to access the BAPI explorer and also the BAPI documentation from a external no SAP system?
Regards and thanks for the help
Christian
2013 Feb 21 11:00 AM
Check this function below. This function cal be called from non sap system too.
CALL FUNCTION 'BAPI_INTERFACE_GETDOCU'
EXPORTING
OBJTYPE = P_OBJTYPE
METHOD = P_METHOD
PARAMETER = P_PARA
LANGUAGE = SY-LANGU
TEXTFORMAT = 'HTM'
LINKPATTERN = CS_HYPERLINK_ROOT_MASK
IMPORTING
RETURN = RET
TABLES
TEXT = DOKU_AS_HTML.
2013 Feb 21 11:00 AM
Check this function below. This function cal be called from non sap system too.
CALL FUNCTION 'BAPI_INTERFACE_GETDOCU'
EXPORTING
OBJTYPE = P_OBJTYPE
METHOD = P_METHOD
PARAMETER = P_PARA
LANGUAGE = SY-LANGU
TEXTFORMAT = 'HTM'
LINKPATTERN = CS_HYPERLINK_ROOT_MASK
IMPORTING
RETURN = RET
TABLES
TEXT = DOKU_AS_HTML.
2013 Feb 21 12:34 PM
Do you know also a BAPI to get detailed information about a business object?
For example to get all methods of a business object?
Then I have the possibilty to call the BAPI BAPI_INTERFACE_GETDOCU for each single method...
Regards
Christian
2013 Feb 22 5:51 AM