DBA Data[Home] [Help]

APPS.ARP_STANDARD dependencies on AR_LOOKUPS

Line 164: | Interfaces with AR lookups, returning meaning for message type and code |

160: | PUBLIC FUNCTION |
161: | ar_lookup |
162: | |
163: | DESCRIPTION |
164: | Interfaces with AR lookups, returning meaning for message type and code |
165: | |
166: | REQUIRES |
167: | lookup_type |
168: | lookup_code |

Line 192: select meaning from ar_lookups where lookup_type = t

188: function ar_lookup ( lookup_type in varchar2, lookup_code in varchar2 )
189: return varchar2 is
190:
191: cursor sel_lookup_meaning( t in varchar2, c in varchar2 ) is
192: select meaning from ar_lookups where lookup_type = t
193: and lookup_code = c;
194:
195: sel sel_lookup_meaning%ROWTYPE;
196: