Query exported columns | Community
Skip to main content
Heku_
Level 5
July 31, 2023
Question

Query exported columns

  • July 31, 2023
  • 1 reply
  • 604 views

Hello, I want to see the exported Columns of a Direct Mail Delivery, but when I query the column from [output/extraction/destination/exportColumns/exportColumn/@label] i get only the first column, how can i see all the columns exported?

Thank you.

@Manoj_Kumar_ @ParthaSarathy @Parvesh_Parmar @DavidKangni 

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

1 reply

akshaaga
Adobe Employee
Adobe Employee
August 4, 2023

@heku_ ,

 

If you are only getting the first column when querying from `[output/extraction/destination/exportColumns/exportColumn/@label]`, it indicates that the XML structure you are accessing contains only one column label.

To see all the columns exported in the Direct Mail Delivery, you should check the XML structure to ensure that all column labels are present.

Each column label should be represented under the `exportColumn` node. It might look something like this:


<extraction>
<destination>
<exportColumns>
<exportColumn label="Column1" />
<exportColumn label="Column2" />
<exportColumn label="Column3" />
<!-- Additional columns go here -->
</exportColumns>
</destination>
</extraction>


Ensure all the columns you expect to be exported are listed within the `exportColumns` node. If any columns are missing, you'll need to verify the export configuration and data source settings to ensure that all the required columns are included in the export process.

If you still encounter issues, double-check the XML structure.