Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have been able to successfully load SharePoint list data into QlikView via RPC calls as outlined in this Wiki post: http://community.qlik.com/wikis/qlikview-wiki/reading-data-from-sharepoint-lists-into-qlikview.aspx.
However, the value of each data from People or Group type SP columns is preceded by a number and pound sign. For example, the list of Program Managers comes in like this . . .
189;#Smith,John
134;#Doe,Jane
Etc.
I just want to pull in Smith, John and Doe, Jane. Has anyone else encountered this and resolved it in their load script?
Thank you,
Ellen
Didn't ever load data from SharePoint, but the question looks clear. There are many ways, the easiest is probably this:
subflield('ProgramManager', '#', 2) as ProgramManager
It will return the text after the first # (and before the 2nd, which will never happen, I assume)
Didn't ever load data from SharePoint, but the question looks clear. There are many ways, the easiest is probably this:
subflield('ProgramManager', '#', 2) as ProgramManager
It will return the text after the first # (and before the 2nd, which will never happen, I assume)
Thank you!
In my opinion this is not the correct answer. My sharepoint data has a variety of delimiters in it which I have to handle on a case by case basis using string functions like findoneof(), textbetween(), etc. Sometimes the delimiters are in the middle of the valid text.
Anyone have any idea how to make the data come in completely clean?
Hi
The particular sharepoint where I am going to fetch the data needs authentication. Could you please let me how that can be done please.
Created the new thread for the same below.
http://community.qlik.com/message/249859#249859
Thanks,
qlikview forum
Hi Ellen
I am also trying to load the sharepoint data into QlikView via RPC calls but I couldn't find the required link in the below post. Could you please tell me where exactly it is?
http://community.qlik.com/wikis/qlikview-wiki/reading-data-from-sharepoint-lists-into-qlikview.aspx
Thanks,
Qlikview Forum
The link does not exist. I am trying to load the persons and group list (_layouts/15/people.aspx?MembershipGroupId=0) as a mapping for another list which brings me the persons and group columns as numbers(ID) when I load it to qlik sense and I want to see the names.
The problem is that I am using Qlik web connectors to load the lists from Sharepoint, but the program can't find the "_layouts/15/people.aspx?MembershipGroupId=0" list.
When I bring the IDs of the lists from the sub-site, the list above doesn't appear.
Thank you!