DBA Data[Home] [Help]

APPS.OE_FND_ATTACHMENTS_PVT dependencies on OE_FND_ATTACHMENTS_PVT

Line 1: PACKAGE BODY oe_fnd_attachments_pvt as

1: PACKAGE BODY oe_fnd_attachments_pvt as
2: /* $Header: OEXVATTB.pls 120.3.12010000.2 2008/10/16 09:16:07 cpati ship $ */
3:
4: -- Global constant holding the package name
5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'oe_fnd_attachments_pvt';

Line 5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'oe_fnd_attachments_pvt';

1: PACKAGE BODY oe_fnd_attachments_pvt as
2: /* $Header: OEXVATTB.pls 120.3.12010000.2 2008/10/16 09:16:07 cpati ship $ */
3:
4: -- Global constant holding the package name
5: G_PKG_NAME CONSTANT VARCHAR2(30) := 'oe_fnd_attachments_pvt';
6:
7: TYPE Attribute_Rec_Type IS RECORD
8: ( attribute_code VARCHAR2(30)
9: , column_name VARCHAR2(30)

Line 476: oe_debug_pub.add( 'ENTER OE_FND_ATTACHMENTS_PVT.ADD_ATTACHMENTS_AUTOMATIC' , 1 ) ;

472: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
473: --
474: BEGIN
475: IF l_debug_level > 0 THEN
476: oe_debug_pub.add( 'ENTER OE_FND_ATTACHMENTS_PVT.ADD_ATTACHMENTS_AUTOMATIC' , 1 ) ;
477: END IF;
478:
479: -- Initialize API return status to success
480: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 611: oe_fnd_attachments_pvt.Add_Attachment(

607: i := l_documentTbl.first;
608: while i is not null loop
609:
610: -- attach the document to the entity
611: oe_fnd_attachments_pvt.Add_Attachment(
612: p_api_version => 1.0,
613: p_entity_name => p_entity_name,
614: p_pk1_value => p_pk1_value,
615: p_pk2_value => p_pk2_value,

Line 648: oe_debug_pub.add( 'EXIT OE_FND_ATTACHMENTS_PVT.ADD_ATTACHMENTS_AUTOMATIC' , 1 ) ;

644:
645: --6896311 END IF; --l_need_delete_insert ?
646:
647: IF l_debug_level > 0 THEN
648: oe_debug_pub.add( 'EXIT OE_FND_ATTACHMENTS_PVT.ADD_ATTACHMENTS_AUTOMATIC' , 1 ) ;
649: END IF;
650:
651: EXCEPTION
652: WHEN FND_API.G_EXC_ERROR THEN

Line 983: END oe_fnd_attachments_pvt;

979: );
980: END IF;
981: END Delete_Attachments;
982:
983: END oe_fnd_attachments_pvt;