I am brand new to working with GP and eConnect. I am attempting to update the LOCNCODE for a sales order. I am working in a C# application using eConnect. I can update the header(taSopHdrIvcInsert) and any non-serialized line items(taSopLineIvcInsert_Items), but any serialized items (taSopSerial) fail to update. I do not get any errors from eConnect. As far as I can tell, everything looks right in my xml document being sent to eConnect, and I have traced the SQL queries being performed by eConnect, again without any errors. Any advice is appreciated.
Unable to update taSopSerial through eConnect
89 Views Asked by nherrmann At
1
There are 1 best solutions below
Related Questions in C#
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in DYNAMICS-GP
- Using Microsoft Dynamics GP Web Services, how do I add a salesperson to a sales invoice?
- How can I print non-sequential orders within Dynamics GP?
- eConnect for Payables Transaction Entry Distribution UNIT Distribution Type
- Varchar to numeric conversion error in SQL query, references line with simple select clause?
- SQL query self-join without CTE or temp
- Match Shipments to Invoice isn't inserting Vendor Doc Number
- Dynamics GP MuleSoft Connector CreateGLTransactions
- What sql GP user principle do I need to GRANT the CREATE privilage to for my trigger to still work?
- Change SQL Script to show every item
- taRMDistribution - Account does not exist for Account Index (DSTINDX)
- In Dynamics GP, how do I remove items stuck in allocated?
- How can I fix the error "this launch file is invalid" when running a Dynamics GP macro?
- GP Dynamics Report Writer Calculated Field RW_POPLINECommentText not showing on Blanket POs
- How to execute a shortcut with space in the target field from the command line?
- Object reference not set to an instance of an object while connecting Microsoft Dynamics GP 2018 with eConnect 18 using .net Framework 4.6.1
Related Questions in ECONNECT
- eConnect for Payables Transaction Entry Distribution UNIT Distribution Type
- taRMDistribution - Account does not exist for Account Index (DSTINDX)
- Object reference not set to an instance of an object while connecting Microsoft Dynamics GP 2018 with eConnect 18 using .net Framework 4.6.1
- Handling a method that takes too long to execute and is not awaitable
- Unable to update taSopSerial through eConnect
- Econnect Warning: Distributed Transaction was used
- GP web services or econnect to process payment against newly created sales invoice after payment gateway returns success
- Terminating a function after a specified time
- EConnect not inserting a customers credit limit in GP
- Deserializing complicated xml into objects - Problems creating the objects
- EntryPointNotFoundException when running EConnect sample console app
- Get next BACHNUMB for econnect taPopRcptHdrInsert
- Could not load file or assembly 'Microsoft.Dynamics.GP.eConnect' or one of its dependencies
- trying to use econnect in crm as a plugin but could not load assembly
- GP 10 econnect , What is the use (or possible values) of the second parameter of the GetNextSOPNumber method
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
After talking with some of my coworkers, I think we might have found the problem. It seems I cannot update taSopSerial in this way. Since the line items have not yet been fulfilled, and do not yet have serial numbers assigned, I can update them through taSopLineIvcInsert_Items just like the non-serialized line items.