cancel
Showing results for 
Search instead for 
Did you mean: 

p_wi_id in DynamicParameter fails, donu00B4t open workitem, with wi_id works ok

Former Member
0 Kudos

Hi experts,

We have an ECC 6.0 EHP3 with a EP 7 (Netweaver 2004s SP18). We use the UWL.

The issue is when we try to open a taks in the UWL that launch a transaction in the ECC, it can´t open, show this error:

Work item 000000000000 cannot be read

This is because in the parameter "DynamicParameter" it pass the value "p_wi_id%3D000000007066". It can´t resolve "p_".

The url is try to open is this:

http://asvesap002.forcendm.es:50100/irj/servlet/prt/portal/prteventname/navigate/prtroot/pcd!3aporta...

If I copy this url in a browser and delete u201Cp_u201D DynamicParameter=wi_id%3D000000007066 , it works fine, open the workitem.

Here is the code for the task in the uwl xml:

Thanks in advance,

Manuel

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi Manuel,

From memory I think that we had a similar problem and the field length had to be changed of the field in SAP. The wi_id is partially getting passed to the program so it cannot open the work item details. The field that you will have to change might be a standard one.

hope it helps,

FS

Former Member
0 Kudos

Hi,

I add this property in the xml:

<Property name="WI_ID" value="${item.externalId}"/>

And that solves the problem.

Thanks,

Manuel