I am trying to load records from teradata to a Share point List.
Getting the below error. Tried making all the fields V_WString(forced). Still not working.
Error: SharePoint List Output (21): Error while adding records: Input string was not in a correct format.
Please help.
Hi @Pinaki,
Just a couple of thing to try:
Sam 🙂
My version of Sharepoint is Online/Office365. Connection as Sharepoint List Input and Output are working fine. Teradata is sending records as Varchar(255) and Unicode. Writing to Sharepoint link is failing with the error : Input String was not in a correct format.
I have tried V_Wstring too but same error.
There were lookup columns which were posing the issue.
Once I made all the sharepoint target columns as text, it worked.
Just in case someone else is looking for this answer. You can write to a SharePoint lookup field by formatting the data as RecordID;#LookupName. ie for my scenario I wrote 3;#Categories to the lookup field.
@Pinaki Sometimes if you have renamed Title Column to a custom name in SharePoint in Alteryx rename back to Title and solves upload problem.
Don't understand why, but worked for me.