• Bart Chapman
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
I removed a text field (255 char limit) and added a long text box and thought I had all the security adjusted (the record was created with no issues when tested with the 255 box).

I am getting the following error > An error occurred at element Create_Student_Convention_Scholarship_Application (FlowRecordCreate).
Error occurred attempting to get data type for : RawFieldImpl[tableName: Application__c, columnName: SCS_Chapter_Info__c]

The flow alert shows the following when trying to actually creat the record:

"RECORD CREATE: Create_Student_Convention_Scholarship_Application
Create one Application__c record where:
Alternate_Email__c = {!Alternate_Email} (sf-test@gmail.net)
Application_Type__c = Student Convention Scholarship
Cell_Phone_Number__c = {!varCellPhone} (8659347647)
Contact__c = {!varContactID} (003G000002hZpGK)
RecordTypeId = 012G0000001QKQH
SCS_ACS_Career_Goals__c = {!ACSCareerGoals} (NA)
SCS_ACS_Chapter_at_School__c = {!ACSChapteratSchool} (Yes)
SCS_ACS_Value_Most__c = {!What_do_you_value_most_about_ACS} (resources)
SCS_Attend_Previous_Student_Convention__c = null
SCS_Chapter_Info__c = {!Chapter_Info} (Yes)
SCS_Convention_Arrival_Date__c = {!ConventionArrivalNew} (March 31, 2017)
SCS_Convention_Arrival_Time__c = {!Convention_Arrival_Time_New} (AM)
SCS_Convention_Departure_Date__c = {!Convention_Departure_Date_New} (April 2, 2017)
SCS_Convention_Departure_Time__c = {!Convention_Departure_Time_New} (AM)
SCS_Departure_City__c = {!DepartureCityNew} (NA)
SCS_First_Choice_Package__c = {!FirstChoicePackage} (Scholarship Package A: Shared Hotel Accommodations)
SCS_Gender__c = {!varGender} (Male)
SCS_Hosted_Locally__c = {!HostedLocally} (Yes)
SCS_If_Awarded__c = {!IfAwarded} (Yes)
SCS_Lodging_Dates__c = null
SCS_Lodging_Friends_Family__c = {!FriendsandFamily} (Yes)
SCS_Lodging__c = {!Lodging} (No)
SCS_NGL__c = {!ACSNGL} (Yes, I am a current NGL)
SCS_Pet_Allergies__c = {!PetAllergy} ()
SCS_School_Assistance_Type__c = {!SchoolAssistanceType} (NA)
SCS_School_Assistance__c = {!SchoolAssistance} (No)
SCS_Smoke_Bother__c = {!Does_smoking_bother_you} ()
SCS_Smoker__c = {!Smoker} ()
SCS_Special_Circumstances__c = {!SpecialCircumstances} ()
SCS_Travel_Scholarship_Type__c = {!TravelScholarshipTypeNew} (Driving-mileage reimbursement)
SCS_Traveling_Costs__c = {!TravelingCostsNew} ($200)
School__c = {!varSCID} (a0WG000000DPHSQMA5)
Result
Failed to create record.

Error Occurred: Error occurred attempting to get data type for : RawFieldImpl[tableName: Application__c, columnName: SCS_Chapter_Info__c]"

Any help would be appreciated.

 
Hi All,
 
We have an integration system that has been running for more than 2 years without any problems. The system creates contacts / leads...etc via the API.
 
Two days ago we started getting the XML response below everytime we try to create leads....the message says: :insufficient access rights on cross-reference id
 
Did something chnage in the API recently ? our code hasnt been updated for two years...would it be some new permissions ?
 
Thanks,
 
 
The XML response looks like this:
 
  <?xml version="1.0" encoding="UTF-8" ?>
- <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <soapenv:Body>
- <createResponse xmlns="urn:partner.soap.sforce.com">
- <result>
- <errors>
  <fields xsi:nil="true" />
  <message>insufficient access rights on cross-reference id</message>
  <statusCode>INSUFFICIENT_ACCESS_ON_CROSS_REFERENCE_ENTITY</statusCode>
  </errors>
  <id xsi:nil="true" />
  <success>false</success>
  </result>
  </createResponse>
  </soapenv:Body>
  </soapenv:Envelope>
 
 
  • July 17, 2007
  • Like
  • 0