Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Build Mapping Load from SELECT Statement

I am trying to execute what seems very simple but I am getting a Script Error, Invalid Expression.

I want to create a mapping load, from the Salesforce User object, containing the Id of the User, and a concatenation of the First and Last name. See below:

LIB CONNECT TO 'Salesforce_BULK (qlikcloud_qlikid_X)';

MapUserName:

Mapping LOAD

Id,

CONCAT(FirstName,' ',LastName);

SELECT Id,

LastName,

FirstName

FROM User;

1 Solution

Accepted Solutions
sunny_talwar

Try this

MapUserName:

Mapping

LOAD Id,

     FirstName & ' ' &LastName;

SELECT Id,

     LastName,

     FirstName

FROM User;

View solution in original post

2 Replies
sunny_talwar

Try this

MapUserName:

Mapping

LOAD Id,

     FirstName & ' ' &LastName;

SELECT Id,

     LastName,

     FirstName

FROM User;

Anonymous
Not applicable
Author

Thank you as always Sunny