File name adobe campaign | Community
Skip to main content
New Participant
April 3, 2023
Solved

File name adobe campaign

  • April 3, 2023
  • 1 reply
  • 767 views

I have uploaded a file through data load file activity , and i want to display the file local name through js.

ADOBE CAMPAIGN

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

@jettyro,

 

You can try something like this to get the file name after the file load using enrichment by ignoring the complete path,

 

Substring($(vars/@filename),45,Length($(vars/@filename)))

1 reply

SatheeskannaK
SatheeskannaKAccepted solution
New Participant
April 3, 2023

@jettyro,

 

You can try something like this to get the file name after the file load using enrichment by ignoring the complete path,

 

Substring($(vars/@filename),45,Length($(vars/@filename)))

Thanks, Sathees