The specified
attributes must have an entry in the MAXLOOKUPMAP table or be mapped in the
field validation class of {2}.{1}.
In order to add MAXLOOKUPMAP
there are two ways
Through
DB
insert into
maxlookupmap (target,lookupattr,targetattr,sourcekey,seqnum,allownull,source,maxlookupmapid)
values ('target','lookupattr','targetattr','sourcekey',1,0,'source',maxlookupmapseq.nextval);
commit;
(for
db2)
insert into
maxlookupmap
(target,lookupattr,targetattr,sourcekey,seqnum,allownull,source,maxlookupmapid)
values
('target','lookupattr','targetattr','sourcekey',1,0,'source',nextval
for maxlookupmapseq ) ;
Through
the front End
Identify the
attribute on which maxlookupmap need to insert
Click on maxlookupmap
icon as shown
Enter the required
details such as target and source and etc. as shown. For example refer
CONTRACTREFNUM attribute of PO object
Restart the application server to
reflect the changes