DBA Data[Home] [Help]

APPS.PO_VAL_LINES2 dependencies on FND_FLEX_KEYVAL

Line 4036: validateSegments := fnd_flex_keyval.validate_segs('CHECK_SEGMENTS',

4032: x_user_id := fnd_global.user_id;
4033: x_resp_id := fnd_global.resp_id;
4034: x_resp_appl_id := fnd_global.resp_appl_id;
4035:
4036: validateSegments := fnd_flex_keyval.validate_segs('CHECK_SEGMENTS',
4037: 'INV',
4038: 'MCAT',
4039: x_structure_id,
4040: p_category,

Line 4061: IF fnd_flex_keyval.error_segment IS NOT NULL THEN

4057: x_results := 'Y';
4058: x_result_msg := 'Segments Valid';
4059: ELSE
4060: x_results := 'N';
4061: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4062: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment ) || ' - '|| fnd_flex_keyval.error_message ;
4063: ELSE
4064: x_result_msg := fnd_flex_keyval.error_message;
4065: END IF;

Line 4062: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment ) || ' - '|| fnd_flex_keyval.error_message ;

4058: x_result_msg := 'Segments Valid';
4059: ELSE
4060: x_results := 'N';
4061: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4062: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment ) || ' - '|| fnd_flex_keyval.error_message ;
4063: ELSE
4064: x_result_msg := fnd_flex_keyval.error_message;
4065: END IF;
4066: END IF;

Line 4064: x_result_msg := fnd_flex_keyval.error_message;

4060: x_results := 'N';
4061: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4062: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment ) || ' - '|| fnd_flex_keyval.error_message ;
4063: ELSE
4064: x_result_msg := fnd_flex_keyval.error_message;
4065: END IF;
4066: END IF;
4067: EXCEPTION
4068: WHEN OTHERS THEN

Line 4126: v_category := fnd_flex_keyval.validate_ccid('INV',

4122:
4123: FOR i IN 1..p_po_line_id_tbl.Count
4124: LOOP
4125: IF ( Nvl(p_clm_info_flag_tbl(i),'N') <> 'Y') THEN --Bug 12768893 Should not be called for Info Lines.
4126: v_category := fnd_flex_keyval.validate_ccid('INV',
4127: 'MCAT',
4128: x_structure_id,
4129: p_category_id_tbl(i) ,
4130: 'ALL',

Line 4147: v_category := fnd_flex_keyval.validate_segs('CHECK_SEGMENTS',

4143: into x_category
4144: From Mtl_Categories_Kfv Mck
4145: where mck.category_id = p_category_id_tbl(i);
4146:
4147: v_category := fnd_flex_keyval.validate_segs('CHECK_SEGMENTS',
4148: 'INV',
4149: 'MCAT',
4150: x_structure_id,
4151: x_category,

Line 4236: validateSegments := fnd_flex_keyval.validate_segs(operation => 'CHECK_SEGMENTS',

4232:
4233: --Bug 14415818 , no need to validate for one time item
4234: IF (p_item is NOT null)
4235: THEN
4236: validateSegments := fnd_flex_keyval.validate_segs(operation => 'CHECK_SEGMENTS',
4237: appl_short_name => 'INV',
4238: key_flex_code => 'MSTK',
4239: structure_number => x_structure_id,
4240: concat_segments => p_item,

Line 4253: IF fnd_flex_keyval.error_segment IS NOT NULL THEN

4249: x_results := 'Y';
4250: x_result_msg := 'Segments Valid';
4251: ELSE
4252: x_results := 'N';
4253: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4254: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment )
4255: || ' - '|| fnd_flex_keyval.error_message ;
4256: ELSE
4257: x_result_msg := fnd_flex_keyval.error_message;

Line 4254: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment )

4250: x_result_msg := 'Segments Valid';
4251: ELSE
4252: x_results := 'N';
4253: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4254: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment )
4255: || ' - '|| fnd_flex_keyval.error_message ;
4256: ELSE
4257: x_result_msg := fnd_flex_keyval.error_message;
4258: END IF;

Line 4255: || ' - '|| fnd_flex_keyval.error_message ;

4251: ELSE
4252: x_results := 'N';
4253: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4254: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment )
4255: || ' - '|| fnd_flex_keyval.error_message ;
4256: ELSE
4257: x_result_msg := fnd_flex_keyval.error_message;
4258: END IF;
4259: END IF;

Line 4257: x_result_msg := fnd_flex_keyval.error_message;

4253: IF fnd_flex_keyval.error_segment IS NOT NULL THEN
4254: x_result_msg := fnd_flex_keyval.segment_value ( fnd_flex_keyval.error_segment )
4255: || ' - '|| fnd_flex_keyval.error_message ;
4256: ELSE
4257: x_result_msg := fnd_flex_keyval.error_message;
4258: END IF;
4259: END IF;
4260: EXCEPTION
4261: WHEN OTHERS THEN

Line 4335: v_item :=fnd_flex_keyval.validate_ccid(

4331: IF (p_item_id_tbl(i) is null)
4332: THEN
4333: v_item :=true;
4334: ELSE
4335: v_item :=fnd_flex_keyval.validate_ccid(
4336: APPL_SHORT_NAME=>'INV',
4337: KEY_FLEX_CODE=>'MSTK',
4338: STRUCTURE_NUMBER=>x_structure_id,
4339: COMBINATION_ID=>p_item_id_tbl(i),

Line 4361: v_item := fnd_flex_keyval.validate_segs(operation => 'CHECK_SEGMENTS',

4357: From mtl_system_items_vl msi
4358: where msi.inventory_item_id = p_item_id_tbl(i)
4359: AND MSI.ORGANIZATION_ID=x_org_id;
4360:
4361: v_item := fnd_flex_keyval.validate_segs(operation => 'CHECK_SEGMENTS',
4362: appl_short_name => 'INV',
4363: key_flex_code => 'MSTK',
4364: structure_number => x_structure_id,
4365: concat_segments => x_item,