
As Part of a MiniApp
Use
You display a report using the MiniALV as part of a MiniApp of your own. This allows you to:
Procedure
You create your own Internet service in transaction
SE80 . You include the MiniALV service in an HTML template of this Internet service and set global variables in advance to pass the name of the proxy report and other parameters (<p1> to <pn) to the MiniALV:`include(~service="system",~theme="dm",~name="templateLibraryDHTML.html")`
<HTML>
<HEAD>
<TITLE>#name</TITLE>
`SAP_Stylesheet()`
`SAP_TemplateJavaScript()`
</HEAD>
<BODY `SAP_TemplateBodyAttributes( )` onload="`SAP_TemplateOnLoadJavaScript()`;">
`report = "<Report name>"`
`<p1> = "<w1>"`
...
`<pn> = "<wn>"`
`include(~service="minialv", "minialv")`
</BODY>
</HTML>

Add-on MiniApps include the service minialv_addon:
`include(~service="minialv_addon", "minialv")`You can then use your Internet service in a MiniApp which you can assign to a role using the MiniApp catalog in transaction
PFCG .
You can find information on creating MiniApps in the ABAP Workbench documentation under
MiniApp Maintenance.
Result
You can now create your own flow files for the flow control of the MiniApp and provide additional interaction possibilities to the user.