Show TOC Start of Content Area

Procedure documentation Creating an HTML Start Page  Locate the document in its SAP Library structure

Use

The first step of the simple HR process that you create is an HTML page that presents for example, the requirements the applicant should meet to be eligible for the vacancy.

You can design the HTML in an appropriate editor, and then upload it as a content package object in Guided Procedures, and expose it as a callable object. Then you create an action and attach the callable object to it, thereby enabling its use in a process template.

Prerequisites

·        You must have the appropriate permissions for creating objects in the gallery.

·        You must have created a plain HTML page. You do not need to implement any specific logic in it.

Example

You can copy the following HTML code and paste it into a text editor. Save the file as StartPage.htm.

<html>

 

<head>

<meta http-equiv="Content-Language" content="en-us">

<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

<title>Job Application</title>

</head>

 

<body>

 

<div align="left">

  <table border="2" cellpadding="50" cellspacing="0" style="border-collapse: collapse" bordercolor="#000080" width="100%" id="AutoNumber1" height="286">

    <tr>

      <td width="100%" height="286">

 

<p style="line-height: 150%"><font face="Arial">For the position of <b><i>

Financial Analyst</i></b>, we are looking for a motivated and competent person

who is willing to work in a dynamic international environment.</font></p>

 

<p style="line-height: 150%"><font face="Arial">Our requirements for the

applicant are:</font></p>

      <ul>

        <li>

 

<p style="line-height: 150%"><font face="Arial">Master Degree in Finance</font></p>

        </li>

        <li>

 

<p style="line-height: 150%"><font face="Arial">At least two years of experience

on a similar position</font></p>

        </li>

        <li>

 

<p style="line-height: 150%"><font face="Arial">Fluent English; knowledge of

German is an advantage.</font></p>

        </li>

      </ul>

      </td>

    </tr>

  </table>

</div>

 

</body>

 

</html>

 

Procedure

Creating a Content Package Object

...

       1.      Launch the GP design time, and choose Create Content Package Object from the contextual navigation panel.

       2.      Enter the required data as follows:

       Name – enter Start Page

       Description – enter a brief description; for example, Content package for start page

       Original Language – select English

       Folder – select My First Process

       3.      Choose Save and Open.

The design time of the content package object opens. You must add content to it.

       4.      Choose Maintain Content from the contextual navigation panel, or click the link under Content.

       5.      Choose Add File and browse to select the StartPage HTML file that you have previously created. Choose Add.

       6.      Choose Done.

       7.      Choose Activate content package from the contextual navigation panel.

       8.      Choose Activate.

 Creating a Callable Object

...

       1.      Open the gallery, and choose Create Callable Object from the contextual navigation panel.

       2.      Enter the following data:

       Type – select User Interface Content Package

       Name – enter CO 1: Start page

       Description – enter a brief description; for example, Start page

       Original Language – select English

       Folder – select My First Process

       3.      Choose Next.

To select the content package that you have created, choose Browse…. Then choose Select.

       4.         To select the HTML document that you have created, expand the root node and select the Start Page HTML file.

       5.      Choose Next.

Do not insert any input parameters.

       6.      Choose Next.

In the Set Configuration screen, enter Apply for Button Label.

       7.      Choose Next and then Finish and Open.

The design time for the callable object opens.

       8.      Choose This graphic is explained in the accompanying text (Activate).

Creating an Action

...

       1.      Return to the gallery and choose Create Action from the contextual navigation panel.

       2.      Enter the following data:

       Name – for example, Display Start Page

       Description – enter a brief description for the action; for example, Display start page

       Original Language – select English

       Folder – select My First Process

       3.      Make sure you select Callable Object for Execution from the Item dropdown list, and choose This graphic is explained in the accompanying text (Insert).

       4.      Browse to select CO 1: Start page.

To confirm, choose Select.

       5.      Choose This graphic is explained in the accompanying text (Activate).

Result

You have created the start page of the process. Go on with creating the data input form.

 

End of Content Area