Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
GetCustomization question
I am using the following C# code to retrieve my custom lists via webservices:
CustomizationType custType = new CustomizationType(); custType.getCustomizationType = GetCustomizationType.customList; custType.getCustomizationTypeSpecified = true; bool bCustomListFound = false; GetCustomizationResult gcr = session.getCustomization(custType); if (!gcr.status.isSuccess) { return false; } foreach (Record r in gcr.recordList) etc...This works beautifully on my developer NS account, but when I move to the real/production one, my lists are not loaded. My question is, does the getCustomization call involve any kind of permissions and if so what? If not, what other reason would cause my lists not to come back. (BTW isSuccess returns true in both of my cases, just no data in the latter)
0