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

Link to SAP Documentation in SAPscript text

ralf_wenzel_heuristika
Active Participant
0 Likes
590

Hi,

while writing a program documentation, I was wondering how to write a link to the documentation of the statement IMPORT (see [1]). <DS:ABAP.IMPORT> works, but it takes me to a very general help page for IMPORT.

How can I determine the "address" (means: the part after "DS:ABAP") of a particular help page of the built-in SAP help?

[1] IMPORT FROM MEMORY/DATABASE/SHARED BUFFER

Hi,

while writing a program documentation, I was wondering how to write a link to the documentation of the statement IMPORT (see [1]). <DS:ABAP.IMPORT> works, but it takes me to a very general help page for IMPORT.

How can I determine the "address" (means: the part after "DS:ABAP") of a particular help page of the built-in SAP help?

[1] IMPORT FROM MEMORY/DATABASE/SHARED BUFFER

1 REPLY 1
Read only

Former Member
0 Likes
448

When I open Import's details from transaction SE61 using below selection:

Document ClassABAP Syntax Documentation
Language      English
Area          ABAP
Keyword       IMPORT

I get IMPORT_DATA_CLUSTER. Opening IMPORT_DATA_CLUSTER in SE61, I see <DS:ABAP.IMPORT_PARAMETERLIST>.

In custom program's documentation, I can see correct documentation page by this line:

<DS:ABAP.IMPORT_PARAMETERLIST>import parameter list</>

So, ABAP.IMPORT gives generic help. ABAP.IMPORT_DATA_CLUSTER gives correct help of Import statement, ABAP.IMPORT_PARAMETERLIST gives help of parameter list.