My Stuff
Please note that on Friday, September 19, 2025, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Comments
-
This is in web services, using C#. I have programmatically created an invoice of 4 billable items. Later I want to add a custom item that is nothing more than a description or comment (for whatever reason it's called a Marathon Code). I have no problem with originally creating the invoices, been doing it for about 15…
-
I'm using the term Mass update to refer to sample code I got from netsuite to update multiple records in one stroke using the internal ids. The example I am referring to is updating customer records by internalid and updating certain fields on each of them. This example is in NSEntity.cs in the sample code . Here is the…
-
If you want to provide a programmatic means of doing this, we have a c# means of selecting a range of invoices and producing a single pdf.
-
I tried that at the beginning of where I construct my login information. I may be putting it in the wrong place....maybe it needs to go somewhere else...
-
Thanks for the insight....could well be my situation....but now I am getting a different error. "Application ID mandatory but missing"....sigh....
-
Just in case you haven't found a solution, we have a scriptlet and C# program that does this. Works well in a C# environment
-
thanks very much for your response
-
Many thanks, my friend. Guess I need to go back and "teach this old dog some new tricks".
-
Thank you for your gracious answers. I will try a body level in my C# code and see if that straightens it up. I looked at the download of a similar invoice and it didn't show information in the location level, but, as I said...might not be holding my mouth right...Thanks again
-
Yes... I do understand that....37 years of IT and an accounting degree helps keep me on track with that. I appreciate your response. You say "depending on settings" ? Is this an internal setting to netsuite? I think I've got my code set right, but I've been wrong before. I set this at item level, and I'm setting the…
-
I need to be added also. There are also xml errors accompanying this error.
-
Not sure why I would want to recreate a program to produce a pdf, when the mechanism already exists. Would like to use what facilities exist, but apparently that technology is a little much to ask for..
-
so this will deliver a finished PDF to my server? I do searches all the time, somehow I must have missed this function....
-
I found my solution. The field should have been "parent" private static BaseRef[] GetPostingPeriod() { GetSelectValueFieldDescription selectValueField = new GetSelectValueFieldDescription(); selectValueField.recordType = RecordType.accountingPeriod; selectValueField.recordTypeSpecified = true; selectValueField.field =…
-
Sorry. I'm obviously thinking this is an easy task. I had no luck with it so far. Anybody got any C# solutions to my problem?
-
Thanks for the reply. Possibly I'm still missing something here. This is a customfieldlist that shows as a SelectCustomFieldRef. When I query the value which is a ListOrRecordRef, It shows a internalID=575 and typeID=2, but the name is null. The way I would understand this is that I would have to go to the Custom List of…