memo description is not working | Community
Skip to main content
Level 2
January 29, 2024
Question

memo description is not working

  • January 29, 2024
  • 1 reply
  • 3074 views

Hi Guys,

 

I have created a field element called memo description using the type memo to hold large amount of value, while calling the filed using targetdata . memodescription inside the delivery to print the value stored in memo description, the value is not populating.

 

But i tried calling someother filed using target data , that field value is populating correctly.

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

isahore
Community Advisor
Community Advisor
January 30, 2024

Hi @haricharan,

Is the memo field holding data in the actual data table or are you populating it in the temp table while the workflow is executing?

I tried adding memo type field to my recipient table, and put values into it, both string and xml. The preview displayed without issues.

 

If you can share your code, may be the community can help better.

 

BR,

Ishan

Level 2
January 30, 2024

Hi Ishan,

 

I'm populating the data's in the temp table while the workflow is executing?

 

and I could not able to populate the data's using memo filed?

 

Let me know your concerns.

 

 

Marcel_Szimonisz
Community Advisor
Community Advisor
January 30, 2024

Hi Ishan,

 

Please find the attached screenshot for the reference.

 

After updating memo description we can find the values populated in the display target

 

 

And updated the delivery screenshot where memo field updated using targetdata to populate the value

 

Please let me know what should i do to populate the values in the delivery

 


Hello @haricharan,

I think you can only hold 255 characters when you create column within your workflow. 

 

  • I did try to ALTER the temporary table column on fly

 

-- Alter the table to change the length of the varchar column to 2000 ALTER TABLE your_table ALTER COLUMN your_column TYPE VARCHAR(2000);

 

  • you can create schema and varchar field with as many charcters needed

 

<attribute length="5000" name="Memostring" type="string"/>

 

then try to copy your memo here within workflow 🙂


Marcel