DBA Data[Home] [Help]

APPS.CS_TP_QUESTIONS_PKG dependencies on CS_TP_QUESTIONS_PKG

Line 1: package body CS_TP_QUESTIONS_PKG as

1: package body CS_TP_QUESTIONS_PKG as
2: /* $Header: cstpqueb.pls 115.8 2002/12/04 18:15:32 wzli noship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out NOCOPY VARCHAR2,
5: X_QUESTION_ID in NUMBER,

Line 512: CS_TP_QUESTIONS_PKG.Update_Row(

508:
509: l_mandatory_flag := x_mandatory_flag;
510: l_scoring_flag := x_mandatory_flag;
511:
512: CS_TP_QUESTIONS_PKG.Update_Row(
513: X_QUESTION_ID => x_question_id,
514: X_LOOKUP_ID => x_lookup_id,
515: X_MANDTORY_FLAG => l_mandatory_flag,
516: X_SCORING_FLAG => l_scoring_flag,

Line 530: CS_TP_QUESTIONS_PKG.Insert_Row(

526: X_SHOW_ON_CREATION_FLAG => X_SHOW_ON_CREATION_FLAG );
527:
528: exception
529: when no_data_found then
530: CS_TP_QUESTIONS_PKG.Insert_Row(
531: X_Rowid => l_rowid,
532: X_QUESTION_ID => x_question_id,
533: X_LOOKUP_ID => x_lookup_id,
534: X_MANDTORY_FLAG => l_mandatory_flag,

Line 583: end CS_TP_QUESTIONS_PKG;

579:
580: end;
581:
582:
583: end CS_TP_QUESTIONS_PKG;