DBA Data[Home] [Help]

APPS.JAI_AR_EER1_PKG dependencies on FND_FILE

Line 55: FND_FILE.put_line(FND_FILE.log, 'Cetsh Header') ;

51: FETCH cur_ecc into lv_ecc;
52: CLOSE cur_ecc; -- for registration number
53:
54: IF p_action_flg = 'Y' THEN
55: FND_FILE.put_line(FND_FILE.log, 'Cetsh Header') ;
56: create_ceth_header;
57: END IF;
58:
59: FND_FILE.put_line(FND_FILE.log, 'Cetsh Dtl') ;

Line 59: FND_FILE.put_line(FND_FILE.log, 'Cetsh Dtl') ;

55: FND_FILE.put_line(FND_FILE.log, 'Cetsh Header') ;
56: create_ceth_header;
57: END IF;
58:
59: FND_FILE.put_line(FND_FILE.log, 'Cetsh Dtl') ;
60:
61: populate_ceth_wise_details(
62: p_organization_id => p_organization_id,
63: p_location_id => p_location_id,

Line 69: FND_FILE.put_line(FND_FILE.log, 'Duty Header') ;

65: p_end_date => p_end_date
66: );
67:
68: IF p_action_flg = 'Y' THEN
69: FND_FILE.put_line(FND_FILE.log, 'Duty Header') ;
70: create_duty_header;
71: END IF;
72:
73: FND_FILE.put_line(FND_FILE.log, 'Duty Detail') ;

Line 73: FND_FILE.put_line(FND_FILE.log, 'Duty Detail') ;

69: FND_FILE.put_line(FND_FILE.log, 'Duty Header') ;
70: create_duty_header;
71: END IF;
72:
73: FND_FILE.put_line(FND_FILE.log, 'Duty Detail') ;
74: populate_duty_paid_details(
75: p_end_date => p_end_date,
76: p_location_id => p_location_id,
77: p_organization_id => p_organization_id,

Line 82: FND_FILE.put_line(FND_FILE.log, 'Input Header') ;

78: p_start_date => p_start_date);
79:
80:
81: IF p_action_flg = 'Y' THEN
82: FND_FILE.put_line(FND_FILE.log, 'Input Header') ;
83: create_input_header;
84: END IF;
85:
86: FND_FILE.put_line(FND_FILE.log, 'Input Detail') ;

Line 86: FND_FILE.put_line(FND_FILE.log, 'Input Detail') ;

82: FND_FILE.put_line(FND_FILE.log, 'Input Header') ;
83: create_input_header;
84: END IF;
85:
86: FND_FILE.put_line(FND_FILE.log, 'Input Detail') ;
87: populate_input_details
88: ( p_end_date => p_end_date,
89: p_location_id => p_location_id,
90: p_organization_id => p_organization_id,

Line 94: FND_FILE.put_line(FND_FILE.log, 'Cenvat Header') ;

90: p_organization_id => p_organization_id,
91: p_start_date => p_start_date);
92:
93: IF p_action_flg = 'Y' THEN
94: FND_FILE.put_line(FND_FILE.log, 'Cenvat Header') ;
95: create_cenvat_header;
96: END IF;
97:
98: FND_FILE.put_line(FND_FILE.log, 'Cenavt Detail') ;

Line 98: FND_FILE.put_line(FND_FILE.log, 'Cenavt Detail') ;

94: FND_FILE.put_line(FND_FILE.log, 'Cenvat Header') ;
95: create_cenvat_header;
96: END IF;
97:
98: FND_FILE.put_line(FND_FILE.log, 'Cenavt Detail') ;
99: populate_cenvat_credit_details (
100: p_end_date => p_end_date,
101: p_location_id => p_location_id,
102: p_operating_unit => p_operating_unit,

Line 109: FND_FILE.put_line(FND_FILE.log, 'Payment Header') ;

105: p_start_date => p_start_date);
106:
107:
108: IF p_action_flg = 'Y' THEN
109: FND_FILE.put_line(FND_FILE.log, 'Payment Header') ;
110: create_payment_header;
111: END IF;
112:
113: FND_FILE.put_line(FND_FILE.log, 'Payment Detail') ;

Line 113: FND_FILE.put_line(FND_FILE.log, 'Payment Detail') ;

109: FND_FILE.put_line(FND_FILE.log, 'Payment Header') ;
110: create_payment_header;
111: END IF;
112:
113: FND_FILE.put_line(FND_FILE.log, 'Payment Detail') ;
114: populate_payment_details
115: (p_start_date => p_start_date) ;
116:
117: IF p_action_flg = 'Y' THEN

Line 118: FND_FILE.put_line(FND_FILE.log, 'SAM Header') ;

114: populate_payment_details
115: (p_start_date => p_start_date) ;
116:
117: IF p_action_flg = 'Y' THEN
118: FND_FILE.put_line(FND_FILE.log, 'SAM Header') ;
119: create_sam_header;
120: END IF;
121:
122: FND_FILE.put_line(FND_FILE.log, 'SAM Detail') ;

Line 122: FND_FILE.put_line(FND_FILE.log, 'SAM Detail') ;

118: FND_FILE.put_line(FND_FILE.log, 'SAM Header') ;
119: create_sam_header;
120: END IF;
121:
122: FND_FILE.put_line(FND_FILE.log, 'SAM Detail') ;
123: populate_sam_details
124: (
125: p_organization_id => p_organization_id,
126: p_location_id => p_location_id,

Line 133: FND_FILE.put_line(FND_FILE.log, 'Close File') ;

129: p_auth_sign => p_auth_sign ,
130: p_place => p_place
131: ) ;
132:
133: FND_FILE.put_line(FND_FILE.log, 'Close File') ;
134:
135: closeFile;
136: FND_FILE.put_line(FND_FILE.log, 'End ') ;
137:

Line 136: FND_FILE.put_line(FND_FILE.log, 'End ') ;

132:
133: FND_FILE.put_line(FND_FILE.log, 'Close File') ;
134:
135: closeFile;
136: FND_FILE.put_line(FND_FILE.log, 'End ') ;
137:
138: -- Body for Generate Returns
139:
140: END generate_flat_file;

Line 3698: FND_FILE.put_line(FND_FILE.log, ' rec.total_quantity : ' || rec.total_quantity || ' rec.total_value : ' || rec.total_value ) ;

3694: lv_uqc := null ;
3695: ln_ln_total_qty_recd := null ;
3696: ln_value_good_recd := null ;
3697:
3698: FND_FILE.put_line(FND_FILE.log, ' rec.total_quantity : ' || rec.total_quantity || ' rec.total_value : ' || rec.total_value ) ;
3699:
3700: lv_ceth := substr(rec.item_tariff,1,8) ;
3701: lv_uqc := substr(rec.primary_uom_code,1,8) ;
3702: FND_FILE.put_line(FND_FILE.log, '1' ) ;

Line 3702: FND_FILE.put_line(FND_FILE.log, '1' ) ;

3698: FND_FILE.put_line(FND_FILE.log, ' rec.total_quantity : ' || rec.total_quantity || ' rec.total_value : ' || rec.total_value ) ;
3699:
3700: lv_ceth := substr(rec.item_tariff,1,8) ;
3701: lv_uqc := substr(rec.primary_uom_code,1,8) ;
3702: FND_FILE.put_line(FND_FILE.log, '1' ) ;
3703: ln_ln_total_qty_recd := rec.total_quantity ;
3704: FND_FILE.put_line(FND_FILE.log, '2' ) ;
3705: ln_value_good_recd := rec.total_value ;
3706:

Line 3704: FND_FILE.put_line(FND_FILE.log, '2' ) ;

3700: lv_ceth := substr(rec.item_tariff,1,8) ;
3701: lv_uqc := substr(rec.primary_uom_code,1,8) ;
3702: FND_FILE.put_line(FND_FILE.log, '1' ) ;
3703: ln_ln_total_qty_recd := rec.total_quantity ;
3704: FND_FILE.put_line(FND_FILE.log, '2' ) ;
3705: ln_value_good_recd := rec.total_value ;
3706:
3707: FND_FILE.put_line(FND_FILE.log, '3' ) ;
3708: create_input_details(

Line 3707: FND_FILE.put_line(FND_FILE.log, '3' ) ;

3703: ln_ln_total_qty_recd := rec.total_quantity ;
3704: FND_FILE.put_line(FND_FILE.log, '2' ) ;
3705: ln_value_good_recd := rec.total_value ;
3706:
3707: FND_FILE.put_line(FND_FILE.log, '3' ) ;
3708: create_input_details(
3709: p_record_header => lv_record_header,
3710: p_rt_type => lv_rt_type,
3711: p_ecc => lv_ecc,

Line 3722: FND_FILE.put_line(FND_FILE.log, '4' ) ;

3718: p_value_good_recd => ln_value_good_recd,
3719: p_notf_no => lv_notf_no,
3720: p_notf_sno => lv_notf_sno);
3721:
3722: FND_FILE.put_line(FND_FILE.log, '4' ) ;
3723: END LOOP ;
3724:
3725: END populate_input_details;
3726: