Creating an Application Engine process file

To create an Application Engine process file:

  1. Select File > New or click New on the toolbar.
  2. If you create a new process, a process frame is shown in which you specify the code:
    #define EngineVersion 5.0
    #define RuntimeVersion 5.0
    
    bool NewProcess()
    @Description: "Describe your process here";
    @Category: "Place your process category here";
    @Returns: "Place the return value description here";
    {
    	/* To use intellisense press Ctrl-Space and select a function from the list */
    	/* To use autocompletion start typing the function. When the right function appears type the round opening bracket and select from a list of available signatures. */
    	/* add your BI# code here */
    
        
    	return true;
    }
    
  3. Specify the required process code in the work space.

    These user interface elements are displayed when you create an Application Engine process file:

    • Process work space
    • Process Information
    • Parameters
    • Output
    • Watch

    To specify the process code, use the code entry help functions and runtime functions.

  4. To save the process to a folder, select File > Save As. Navigate to the folder, specify the file name, and click Save.
  5. To import the process in an application database of a farm to which you are connected, select Repository > Import from Folder.