Show TOC

Application (path with program name)

Definition

Path and program call for the to be started from the document info record for processing original application data.
Usually, the application is installed under this path on all frontend computers of the selected data carrier type.

Use

This entry allows you to start the application from different data carrier types via different paths.

Dependencies

The following additional entries are provided for:

1. There are the following settings available for frontend computers with the operating system Windows:
The Micrsoft Office application is within the window for processing the document info record.
The tab page Originals is split into two areas: Overview tree for original application files and maintenance Office application.
Entry: %SAP-OFFICE-INTEGRATION.INPLACE%
Another window is opened for the Microsoft Office application.
Entry: %SAP-OFFICE-INTEGRATION.OUTPLACE%
Within the window for processing the document info record the following program are started maximized:
Entry: %MAXSIZE%
Example: %SAP-OFFICE-INTEGRATION.INPLACE% %MAXSIZE%
You can set that you do not want to use the SAP System to check out original application files. This is recommended when TIF files are queued to a plotter. The plotter system takes on the task of transferring the original application files.
Entry: %NO-CHECKOUT%
Example: RCDDSPLOT%SAP-PROGRAM% %NO-CHECKOUT%
2. For frontend computers using the operating system MAC OS you have the following possible settings:
3. Start function module as application.
Start SAP function module as application. Enter the SAP function module and the additional %SAP-FUNCTION% . Data is transferred from the document info record to this function module.
4. Start the SAP program as an application
Enter a program name and %SAP-PROGRAM% . Data from the document info record are transferred to this program. An example prgram is located at the end of this document (section Example programADTEST00)

Entries for the integrated viewer

You can view original files with the standard viewer by calling the viewers for the frontend computer with each workstation application :

Entry: EAIWeb.webviewer2D.1 %SAP-CONTROL%
Entry: EAIWeb.webviewer3D.1 %SAP-CONTROL%

Example program ADTEST00

You start SAPscript with the program ADTEST00 that you can use to carry out processing of the standard text for the original file depending on processing category (change, display).

Source text:
report adtest00.
tables: draw.
data: begin of intdraz occurs 0.
include structure draz.
data: end of intdraz.
data: path(140).
data: textname like thead-tdname,
applicationsnumber,
applicationtype,
display.
import draw intdraz path applicationsnumber applicationtype
from memory id 'SAP_APPLICATION'.
textname = path.
display = 'X'.
if applicationtype eq '2'. display = ' '. endif.
perform edit_text(sapmssce) using 'TEXT'
'ST'
textname
sy-langu
display.