cancel
Showing results for 
Search instead for 
Did you mean: 

WAIT STEP issue in a BPM

Former Member
0 Kudos

Hi all,

We have a following message (as a result of a transformation) FECHA is an xsd:date and HORA is an xsd:time. The cardinality of every elements is 1..1:

<?xml version="1.0" encoding="UTF-8" ?> <MT_Retraso_Entrada_Wait>

<row>

<FECHA>2006-10-27</FECHA>

<HORA>15:00:00.0</HORA>

</row>

</MT_Retraso_Entrada_Wait>

And we assing this values to the wait step but it doesn't work.

Has anybody any idea?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Is it giving some error or simply the wait step doesn't work ? Try specifying the values in BPM step itself instead of giving from MT and check if that works.And also Can you remove the last '0' in your HORA tag and check the same..

Thanks and Regards,

Sudheer.

Former Member
0 Kudos

Hi,

Remove that 0 in the HORA tag and execute. It is working for me.

Thanks and Regards,

Sudheer.

Former Member
0 Kudos

Hi all,

it is not giving any error, simply the the wait Step doesn´t work.

And also I have tests setting same values as constants an then the wait steps is executed!. Thant is driving me crazy. The only thing that I can figure it is because the XML that result from the mapping transformation. is not having the name space.

Any idea?

Many thanks

Noelia

Former Member
0 Kudos

Hi Noelia,

I checked the same with the MT also that is working for me.The only change i made is the value in your HORA tag as i said above.

Thanks and Regards,

Sudheer.

Shabarish_Nair
Active Contributor
0 Kudos

dont think the namespace is a problem here.

Cross check if you have assigned the same fields from the xpath. Else for test purpose hard code the value as a constant in the expression editor and then chk if it works.

Former Member
0 Kudos

HI SUDHEER,

Many thnaks for your help, But it is working with this value as constant.

I tried to remove the 0 but still not working is not picking up this values, the desired date and time in the wait step are empty.

How are you using the same MT just in case?.

Many thanks for your help.

Regards Noelia

Message was edited by: Noelia Fernandez

Message was edited by: Noelia Fernandez

Former Member
0 Kudos

Hi all

It is solved this was because the namespace!!!

I have write the namespace and it works!

Many thanks anyway for you help.

Regards

Noelia

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

note if the format of xsd:date follows as specified here - http://books.xmlschemata.org/relaxng/ch19-77041.html

do the same check for xsd:time - http://books.xmlschemata.org/relaxng/ch19-77311.html

<i><HORA>15:00:00.0</HORA></i>

>>> are you sure this is a valid time ?