DBA Data[Home] [Help]

APPS.OE_DEFAULT_SOURCE_TYPE_PVT dependencies on STANDARD

Line 122: /* if item is standard and line is not an option and line is not a service line

118: when no_data_found then null;
119: end;
120:
121:
122: /* if item is standard and line is not an option and line is not a service line
123: then only allow the line to be externally sourced */
124:
125: if ( (p_item_type = 'STANDARD')
126: and ( (p_linetype = 'REGULAR') or (p_linetype = 'DETAIL')

Line 125: if ( (p_item_type = 'STANDARD')

121:
122: /* if item is standard and line is not an option and line is not a service line
123: then only allow the line to be externally sourced */
124:
125: if ( (p_item_type = 'STANDARD')
126: and ( (p_linetype = 'REGULAR') or (p_linetype = 'DETAIL')
127: or (p_linetype = 'PARENT') )
128: and (p_option_flag = 'N')) then
129:

Line 177: else /* not a standard item or regular line or an option */

173:
174: end if;
175:
176:
177: else /* not a standard item or regular line or an option */
178:
179: p_source_type_svrid := 1;
180: p_source_type := 'INTERNAL';
181: p_msg_data := 'internal';

Line 184: end if; /* standard item ; not an option or service line */

180: p_source_type := 'INTERNAL';
181: p_msg_data := 'internal';
182: p_msg_count := msgcount + 1;
183:
184: end if; /* standard item ; not an option or service line */
185:
186: P_Return_Status := FND_API.G_RET_STS_SUCCESS;
187:
188: end GET_DEFAULT_SOURCE_TYPE;