DBA Data[Home] [Help]

APPS.BOM_RTG_APPLET_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 8

              x_last_updated_by         NUMBER,
              x_last_update_date        DATE,
	      x_return_code    	OUT NOCOPY	VARCHAR,
	      x_error_msg     	OUT NOCOPY	VARCHAR
         ) IS
  BEGIN
    IF (x_operation_type = 2) THEN
    	UPDATE BOM_OPERATION_SEQUENCES
      	SET
           process_op_seq_id	     =     x_new_parent_op_seq_id,
           last_updated_by           =     x_last_updated_by,
           last_update_date          =     NVL(x_last_update_date, SYSDATE)
    	WHERE operation_sequence_id  = x_event_op_seq_id;
Line: 22

    	UPDATE BOM_OPERATION_SEQUENCES
      	SET
           line_op_seq_id            =     x_new_parent_op_seq_id,
           last_updated_by           =     x_last_updated_by,
           last_update_date          =     NVL(x_last_update_date, SYSDATE)
    	WHERE operation_sequence_id  = x_event_op_seq_id;
Line: 48

              x_last_updated_by         NUMBER,
              x_creation_date           DATE,
              x_last_update_date        DATE,
              x_created_by              NUMBER,
              x_last_update_login       NUMBER,
              x_attribute_category      VARCHAR2,
              x_attribute1              VARCHAR2,
              x_attribute2              VARCHAR2,
              x_attribute3              VARCHAR2,
              x_attribute4              VARCHAR2,
              x_attribute5              VARCHAR2,
              x_attribute6              VARCHAR2,
              x_attribute7              VARCHAR2,
              x_attribute8              VARCHAR2,
              x_attribute9              VARCHAR2,
              x_attribute10             VARCHAR2,
              x_attribute11             VARCHAR2,
              x_attribute12             VARCHAR2,
              x_attribute13             VARCHAR2,
              x_attribute14             VARCHAR2,
              x_attribute15             VARCHAR2,
              x_return_code   OUT NOCOPY       VARCHAR2,
              x_error_msg     OUT NOCOPY      VARCHAR2
         ) IS

    l_return_code   VARCHAR2(1)   := 'S';
Line: 77

    IF (x_transaction_type = 'insert') THEN

	-- Call validate and continue if valid
      Validate_Link(
              x_from_op_seq_id  => x_from_op_seq_id,
              x_to_op_seq_id    => x_to_op_seq_id,
              x_transition_type => x_transition_type,
              x_planning_pct    => x_planning_pct,
              x_transaction_type => x_transaction_type,
              x_return_code     => l_return_code,
              x_error_msg       => l_error_msg
        );
Line: 91

	INSERT INTO BOM_OPERATION_NETWORKS(
	      from_op_seq_id,
              to_op_seq_id,
              transition_type,
              planning_pct,
              last_updated_by,
              creation_date,
              last_update_date,
              created_by,
              last_update_login,
              attribute_category,
              attribute1,
              attribute2,
              attribute3,
              attribute4,
              attribute5,
              attribute6,
              attribute7,
              attribute8,
              attribute9,
              attribute10,
              attribute11,
              attribute12,
              attribute13,
              attribute14,
              attribute15
	      ) VALUES (
	      x_from_op_seq_id,
              x_to_op_seq_id,
              x_transition_type,
              x_planning_pct,
              x_last_updated_by,
              NVL(x_creation_date, SYSDATE),
              NVL(x_last_update_date, SYSDATE),
              x_created_by,
              x_last_update_login,
              x_attribute_category,
              x_attribute1,
              x_attribute2,
              x_attribute3,
              x_attribute4,
              x_attribute5,
              x_attribute6,
              x_attribute7,
              x_attribute8,
              x_attribute9,
              x_attribute10,
              x_attribute11,
              x_attribute12,
              x_attribute13,
              x_attribute14,
              x_attribute15
	      );
Line: 146

    ELSIF (x_transaction_type = 'update') THEN
	-- Call Lock row before updation

	-- Call validate and continue if valid
      Validate_Link(
              x_from_op_seq_id 	=> x_from_op_seq_id,
              x_to_op_seq_id   	=> x_to_op_seq_id,
              x_transition_type => x_transition_type,
              x_planning_pct	=> x_planning_pct,
              x_transaction_type => x_transaction_type,
	      x_return_code	=> l_return_code,
              x_error_msg	=> l_error_msg
	);
Line: 161

      	UPDATE BOM_OPERATION_NETWORKS
    	SET
           transition_type         =       x_transition_type,
           planning_pct            =       x_planning_pct,
           last_update_date        =       NVL(x_last_update_date, SYSDATE),
           last_updated_by         =       x_last_updated_by
    	WHERE from_op_seq_id = x_from_op_seq_id
            and to_op_seq_id = x_to_op_seq_id;
Line: 171

    ELSIF (x_transaction_type = 'delete') THEN
	-- Call Lock row before deletion

	DELETE FROM BOM_OPERATION_NETWORKS
 	WHERE from_op_seq_id = x_from_op_seq_id
            and to_op_seq_id = x_to_op_seq_id;
Line: 214

   IF (x_transaction_type = 'insert') THEN
    	-- Only one primary
	IF (x_transition_type = 1) THEN
    	SELECT count(*)
    	INTO primary_exists
    	FROM BOM_OPERATION_NETWORKS
    	WHERE from_op_seq_id = x_from_op_seq_id
     		and transition_type = 1;
Line: 225

    	SELECT count(*)
    	INTO link_exists
    	FROM BOM_OPERATION_NETWORKS
    	WHERE from_op_seq_id = x_from_op_seq_id
       		and  to_op_seq_id = x_to_op_seq_id;
Line: 232

    	SELECT sum(planning_pct)
    	INTO sum_planning_pct
    	FROM BOM_OPERATION_NETWORKS
    	WHERE from_op_seq_id = x_from_op_seq_id
		AND transition_type IN (1, 2);
Line: 238

   ELSIF (x_transaction_type = 'update') THEN
	BEGIN
	  SELECT from_op_seq_id, to_op_seq_id,
		 transition_type, planning_pct
	  INTO l_from_op_seq_id, l_to_op_seq_id,
		l_transition_type, l_planning_pct
	  FROM BOM_OPERATION_NETWORKS
	  WHERE from_op_seq_id = x_from_op_seq_id
		 and to_op_seq_id = x_to_op_seq_id
		 and transition_type IN (1, 2);
Line: 250

		SELECT from_op_seq_id, to_op_seq_id,
			transition_type, planning_pct
          	INTO l_from_op_seq_id, l_to_op_seq_id,
			l_transition_type, l_planning_pct
          	FROM BOM_OPERATION_NETWORKS
          	WHERE from_op_seq_id = x_from_op_seq_id
                 	and to_op_seq_id = x_to_op_seq_id
                 	and transition_type = 3;
Line: 262

        SELECT count(*)
        INTO primary_exists
        FROM BOM_OPERATION_NETWORKS
        WHERE from_op_seq_id = x_from_op_seq_id
        	and to_op_seq_id <> x_to_op_seq_id
        	and transition_type = 1;
Line: 270

	-- Only one link validation NOT reqd for update

	-- Sum of planning_pct should be <= 100
	if l_transition_type <> 3 then
           SELECT sum(planning_pct) - l_planning_pct
           INTO sum_planning_pct
           FROM BOM_OPERATION_NETWORKS
           WHERE from_op_seq_id = x_from_op_seq_id
		AND transition_type IN (1, 2);
Line: 287

	SELECT operation_type, operation_seq_num
	INTO op_type, from_op_seq_num
	FROM bom_operation_sequences
	WHERE operation_sequence_id = x_from_op_seq_id;
Line: 305

	SELECT operation_seq_num
        INTO   from_op_seq_num
        FROM   bom_operation_sequences
        WHERE  operation_sequence_id = x_from_op_seq_id;
Line: 310

        SELECT operation_seq_num
        INTO   to_op_seq_num
        FROM   bom_operation_sequences
        WHERE  operation_sequence_id = x_to_op_seq_id;
Line: 325

	SELECT operation_type, operation_seq_num
        INTO op_type, from_op_seq_num
        FROM bom_operation_sequences
        WHERE operation_sequence_id = x_from_op_seq_id;
Line: 358

              x_last_updated_by         NUMBER,
              x_last_update_date        DATE,
	      x_return_code       OUT NOCOPY   VARCHAR2,
              x_error_msg         OUT NOCOPY  VARCHAR2
         ) IS
  BEGIN
    UPDATE BOM_OPERATION_SEQUENCES
      SET
      	x_coordinate              =     x_x_coordinate,
       	y_coordinate              =     x_y_coordinate,
       	last_updated_by           =     x_last_updated_by,
       	last_update_date          =     NVL(x_last_update_date, SYSDATE)
    WHERE operation_sequence_id   = x_operation_sequence_id;