DBA Data[Home] [Help]

APPS.OE_VALIDATE_PRICE_BREAK SQL Statements

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

Line: 157

    IF  p_Price_Break_rec.last_updated_by IS NOT NULL AND
        (   p_Price_Break_rec.last_updated_by <>
            p_old_Price_Break_rec.last_updated_by OR
            p_old_Price_Break_rec.last_updated_by IS NULL )
    THEN
        IF NOT OE_Validate_Attr.Last_Updated_By(p_Price_Break_rec.last_updated_by) THEN
            x_return_status := FND_API.G_RET_STS_ERROR;
Line: 167

    IF  p_Price_Break_rec.last_update_date IS NOT NULL AND
        (   p_Price_Break_rec.last_update_date <>
            p_old_Price_Break_rec.last_update_date OR
            p_old_Price_Break_rec.last_update_date IS NULL )
    THEN
        IF NOT OE_Validate_Attr.Last_Update_Date(p_Price_Break_rec.last_update_date) THEN
            x_return_status := FND_API.G_RET_STS_ERROR;
Line: 177

    IF  p_Price_Break_rec.last_update_login IS NOT NULL AND
        (   p_Price_Break_rec.last_update_login <>
            p_old_Price_Break_rec.last_update_login OR
            p_old_Price_Break_rec.last_update_login IS NULL )
    THEN
        IF NOT OE_Validate_Attr.Last_Update_Login(p_Price_Break_rec.last_update_login) THEN
            x_return_status := FND_API.G_RET_STS_ERROR;
Line: 257

    IF  p_Price_Break_rec.program_update_date IS NOT NULL AND
        (   p_Price_Break_rec.program_update_date <>
            p_old_Price_Break_rec.program_update_date OR
            p_old_Price_Break_rec.program_update_date IS NULL )
    THEN
        IF NOT OE_Validate_Attr.Program_Update_Date(p_Price_Break_rec.program_update_date) THEN
            x_return_status := FND_API.G_RET_STS_ERROR;
Line: 468

PROCEDURE Entity_Delete
(   x_return_status                 OUT VARCHAR2
,   p_Price_Break_rec               IN  OE_Pricing_Cont_PUB.Price_Break_Rec_Type
)
IS
l_return_status               VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
Line: 502

            ,   'Entity_Delete'
            );
Line: 506

END Entity_Delete;