24.11 GET_BLUEPRINT_ID Function
This function returns the blueprint ID from the name.
Syntax
APEX_DG_DATA_GEN.GET_BLUEPRINT_ID (
p_name IN VARCHAR2 )
RETURN NUMBER;
Parameters
Parameter | Description |
---|---|
p_name |
The blueprint identifier. |
Returns
ID of the blueprint.
Example
The following example demonstrates
DECLARE
l_blueprint_id apex_dg_blueprints.id%TYPE;
BEGIN
l_blueprint_id := apex_dg_data_gen.get_blueprint_id(p_name => 'MY BLUEPRINT');
END;
Parent topic: APEX_DG_DATA_GEN