This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - how to concatenate properties of different Itemtypes?

meenu - Wednesday, September 5, 2012 5:20 AM:

Hi ,

  I need to create an Id that should be generated automatically, for this I need to concatenate properties of two different ItemTypes to a string.

  Using the following code I' m able to concatenate a string to a property.

Dim itemnumber As String = Me.getProperty("item_number")

Dim new_id As String =  "" & itemnumber
Me.setProperty("new_id",new_id)

 

But now I need to concatenate the "item_number" with a property of another ItemType.

How can I do this. Please help me.

Thank You

Meenu