Hi,
I have to set the value of contaiiner element in workflow which is of type of an object IMAGE.
I have written a method to write object reference into the container.
In the log I am able to view the values also.
Problem is that when in the next step of the workflow I am trying to bind it with an element in the task container, I am not able to get the values in the task container.
may be the values which are set in the container at the earlier
step are not persistent.
Please help me out with this
I have followed the following logic to write values to the container element:
data:image type swc_object.
data:begin of imagekey,
swc_container image1.
swc_create_container image1. (workflow container element)
ImageLinkArchiveId type TOAV0-ARCHIV_ID,
ArchiveDocID type TOAV0-ARC_DOC_ID,
end of imagekey.
swc_create_object image 'image' imagekey.
swc_set_element container 'image1' image.
swc_container_to_persistent image1.