How can I show the description of keyfiex in the report by srw.user_exit [message #341097] |
Sat, 16 August 2008 07:36  |
vitas_haiyi
Messages: 36 Registered: April 2007
|
Member |
|
|
Dear experts:
I will make a report+XML Publisher. I want to show the description of keyfiex in the report by srw.user_exit.The Keyflex is Account Keyflex.I make a report, but only show segment1 od description.
Follow code is I define keyflex by srw.user_exit
function CF_ACCOUNT_DESCFormula return Char
is
v_result varchar2(500);
begin
srw.reference(:STRUCT_NUM);
srw.reference(:CF_ACCOUNT_SEG);
srw.user_exit('FND FLEXIDVAL CODE="GL#"
NUM=":STRUCT_NUM"
APPL_SHORT_NAME="SQLGL"
DATA=":CF_ACCOUNT_SEG"
DESCRIPTION=":CF_ACCOUNT_DESC"
DISPLAY="ALL"
IDISPLAY="ALL"
SHOWDEPSEG="Y"
');
RETURN(:CF_ACCOUNT_DESC);
end;
What's wrong with it? It only showed the segment1 of description.
I updated the rdf file,I'd be glad if someone can help me to see this wrong.
|
|
|
|
|