Author |
Message
|
ucbus1 |
Posted: Fri Mar 19, 2004 12:56 pm Post subject: Errors while using LEVELS |
|
|
Knight
Joined: 30 Jan 2002 Posts: 560
|
Hello,
I am trying to use Levels in my instantiation XML and I am getting the following erros
Code: |
... ... ...
... ... ...
</WfMessageHeader>
<ProcessTemplateExecuteResponse>
<Exception>
<Rc>1104</Rc>
<Parameters>
<Parameter>_ACTIVITY_INFO.LowerLimit</Parameter>
<Parameter>ProviderReturns</Parameter>
</Parameters>
<MessageText>FMC01104E Data member '_ACTIVITY_INFO.LowerLimit' of data structure 'xyz' not found.
</MessageText>
<Origin>/projects/fmc/drvp/lbld/v332/src/fmcmctnm.cxx(351)</Origin>
</Exception>
</ProcessTemplateExecuteResponse>
</WfMessage> |
Code: |
My instantiation XML has
... .... ...
... .... ...
<ProcInstInputData>
<_ACTIVITY_INFO>
<LowerLimit>1</LowerLimit>
<UpperLimit>1</UpperLimit>
</_ACTIVITY_INFO>
<xyz>
my data elemennts
</xyz>
</ProcInstInputData>
.... .... ...
...... .... ... |
The error clearly tells my datastructure "xyz" is not having the _ACTVITY_INFO.LowerLimit .
1. My question is, does it need to be clearly indicated in the data structure?
I was under the impression that it would be automatically taken with out adding specifically to the data structure..
Again I may be wrong
2.If it si to be defined specifically, please let me know how to define
Thanks |
|
Back to top |
|
 |
jmac |
Posted: Fri Mar 19, 2004 1:04 pm Post subject: |
|
|
 Jedi Knight
Joined: 27 Jun 2001 Posts: 3081 Location: EmeriCon, LLC
|
The names of these members are:
Code: |
_ACTIVITY_INFO.UpperLevel
_ACTIVTY_INFO.LowerLevel |
_________________ John McDonald
RETIRED |
|
Back to top |
|
 |
ucbus1 |
Posted: Fri Mar 19, 2004 1:24 pm Post subject: |
|
|
Knight
Joined: 30 Jan 2002 Posts: 560
|
Thanks john,
May be I am missing something here..
Do you mean the XML need to be
Code: |
... .... ...
... .... ...
<ProcInstInputData>
<_ACTIVITY_INFO>
<_ACTIVITY_INFO.LowerLimit>1</_ACTIVITY_INFO.LowerLimit>
<_ACTIVITY_INFO.UpperLimit>1</_ACTIVITY_INFO.UpperLimit>
</_ACTIVITY_INFO>
<xyz>
my data elemennts
</xyz>
</ProcInstInputData>
.... .... ...
...... .... ... |
But I find on the programming guide "Execute process instance example"
it is defined as following and I am just trying to follow the example
Code: |
<ProcInstInputData>
<_ACTIVITY_INFO>
<Priority>1</Priority>
</_ACTIVITY_INFO>
<CreditData>
<Customer>
<Name>User1</Name>
<Account>4711</Account>
<Account>1100</Account>
</Customer>
<Amount>100000</Amount>
<Currency>CurrencyX</Currency>
<Risk>high<Risk>
</CreditData> |
|
|
Back to top |
|
 |
jmac |
Posted: Fri Mar 19, 2004 1:38 pm Post subject: |
|
|
 Jedi Knight
Joined: 27 Jun 2001 Posts: 3081 Location: EmeriCon, LLC
|
It is my opinion that the member names you are specifying are incorrect.
Look at the error message you are getting
Quote: |
FMC01104E Data member '_ACTIVITY_INFO.LowerLimit' of data structure 'xyz' not found. |
The member name is _ACTIVITY_INFO.LowerLevel not _ACTIVITY_INFO.LowerLimit _________________ John McDonald
RETIRED |
|
Back to top |
|
 |
ucbus1 |
Posted: Fri Mar 19, 2004 2:30 pm Post subject: [SOLVED]Errors while using LEVELS |
|
|
Knight
Joined: 30 Jan 2002 Posts: 560
|
Thanks... Nowadays I missing words...
Now the instantiation worked fine... I could surpass initial hurdle |
|
Back to top |
|
 |
|