DBA Data[Home] [Help]

APPS.PSB_WS_POS1 dependencies on FND_DATE

Line 865: g_adjustment_date := fnd_date.canonical_to_date(c_Attributes_Rec.attribute_value);

861: for c_Attributes_Rec in c_Attributes loop
862:
863: if c_Attributes_Rec.attribute_id = g_adjdate_id then
864: begin
865: g_adjustment_date := fnd_date.canonical_to_date(c_Attributes_Rec.attribute_value);
866: l_adjdate_value_id := nvl(c_Attributes_Rec.attribute_value_id, 0);
867: end;
868: elsif c_Attributes_Rec.attribute_id = g_hiredate_id then
869: begin

Line 870: g_hiredate := fnd_date.canonical_to_date(c_Attributes_Rec.attribute_value);

866: l_adjdate_value_id := nvl(c_Attributes_Rec.attribute_value_id, 0);
867: end;
868: elsif c_Attributes_Rec.attribute_id = g_hiredate_id then
869: begin
870: g_hiredate := fnd_date.canonical_to_date(c_Attributes_Rec.attribute_value);
871: l_hiredate_value_id := nvl(c_Attributes_Rec.attribute_value_id, 0);
872: end;
873: end if;
874:

Line 884: g_adjustment_date := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);

880:
881: for c_AttrVal_Rec in c_AttrVal loop
882:
883: if c_AttrVal_Rec.attribute_value_id = l_adjdate_value_id then
884: g_adjustment_date := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);
885: elsif c_AttrVal_Rec.attribute_value_id = l_hiredate_value_id then
886: g_hiredate := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);
887: end if;
888:

Line 886: g_hiredate := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);

882:
883: if c_AttrVal_Rec.attribute_value_id = l_adjdate_value_id then
884: g_adjustment_date := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);
885: elsif c_AttrVal_Rec.attribute_value_id = l_hiredate_value_id then
886: g_hiredate := fnd_date.canonical_to_date(c_AttrVal_Rec.attribute_value);
887: end if;
888:
889: end loop;
890: