Skip to main content
July 25, 2024

Not able to call Parameter value from Dashboard button to DM Seq

  • July 25, 2024
  • 2 replies
  • 0 views

Can someone please guide me on passing parameter from dashboard button to DM seq. I followed couple close forum question but still it did not work.

Basically trying to call DM seq which has extensibility rule from button. Some how it not able to read value from the parameter. Could you guide me what I am doing wrong.

Trying to capture value here. It work if I just execute DM but does not from button. 

Dim DimTypeStr As String = args.NameValuePairs.XFGetValue("EnterDimensionType", String.Empty)


pranav46_0-1721946093745.png

pranav46_1-1721946125133.png

 

2 replies

July 29, 2024

Calling a parameter in the Selection Changed Server Task Arguments must be done using pipes also. Change it to {Export_Data_To_File}{EnterDIMType = [|!DimensionList!|]} and try again.

pranav46Author
July 29, 2024

Thanks for responding!

It did not work. Just does not pass value from button to DM SEQ.

July 29, 2024

You will need to reference the parameter in the DM Step and not the sequence in this case. 


TheJonG_0-1722283597746.png

 

 

pranav46Author
July 30, 2024

I figured it out.
I had to put space in between my parameter value and removed parameter from DM SEQ. I left it blank and value is being passed from Server action.