1. SAP HANA Smart Data Integration and SAP HANA Smart Data Quality Documentation:
Reference for Procedure and Real-time Task: In the section "Flowgraphs
" under "Executing Flowgraphs
" the documentation states: "When you activate a flowgraph
the system generates a stored procedure (for batch data flows) or a task (for real-time data flows)." This directly supports answers B and D.
Reference for Replication Task: The section "Creating a Replication Task" explains that these tasks are used for real-time data replication and can be based on a flowgraph definition. This supports answer E.
2. SAP HANA SQL and System Views Reference:
Reference for Procedure: The CREATE PROCEDURE statement documentation describes the object generated for batch flowgraphs. The generated procedure is located in the SYSDI schema and its name is derived from the flowgraph name.
Reference for Task: The CREATE TASK statement documentation details the runtime object created for real-time flowgraphs
which is managed using START TASK
SUSPEND TASK
and DROP TASK commands. This confirms the nature of the objects in answers D and E.