I am having issue with calling a SQL procedure from dexterity. The procedure contains cursor. This cursor is suppose to call another procedure which has a call to Dynamics GP Procedure 'taComputerChecklineinsert'. The working is supposed to be that the overall process has to insert transactions in the payroll transaction entry. Only a fixed number of 42 transactions get inserted. I have more than 42 transactions. If i execute the same procedure from SQL server with the same parameters itself it gives the required result. the issue comes up when i call from dexterity. what could be wrong?...i have been on this for long....and cannot figure out the issue.
GP proc only executes 42 transactions - Dexterity call to a SQL Procedure contains cursor
510 views Asked by msgpdev10 At
1
There are 1 answers
Related Questions in CURSOR
- How can I make my text visible when my custom curser hovers over it
- Wpf Textbox Cursor on mouse hover
- Change cursor after two clicks using only html and css?
- DB2 - stored procedure - very slow cursor when using IN parameter in fetch first clause
- In React flow, I want to add custom many cursors however, the cursor is not relative to the canvas; it relative to the outer div; how to handle this?
- Setting Debug points for a Chainlit application
- Recharts, how to position the tooltip to the left and top side of the cursor
- Issue with Cursor Movement in Code Selection and Line Start in Terminal-like Environment
- VS Code will backspace or indent-backwards whenever I alt+tab to another program and alt+tab back
- Lock mouse inside window using Python's moderngl_window
- Javascript listener mousemove giving wrong position to custom cursor
- summernote editor - while typing english cursor moves to the top
- Cursor does not appear on initial click in UITextField
- JavaScript zoom to cursor on absolutely positioned element - how to calculate new center coordinates?
- Change WinForm Textbox Cursor-Color
Related Questions in MICROSOFT-DYNAMICS
- D365 F&O - Cannot post addresses with OData
- How to give access to RAPIDSTART in Business Central to SUPER user?
- Handling Success and Error API responses in Logic Apps workflow part 2
- getting errors while installing ISV licence using AXUpdateInstaller.exe devinstall for D365FO
- Microsoft Dynamics Add-in Excel - Filtering multiple values
- How to call OriginalDocuments form by code D365fo
- How to update custom reports in Dynamics 365 Field services
- Concat strings using fx formular
- Dynamics 365: Where does the "Party Number" field in the Contacts table come from?
- Can you reference a class from another solution in Dynamics 365 Cloud?
- Getting rid of "body" from an array content when appending it to a JSON API request payload in Logic Apps
- How to add customization in Knowledge article expiration View in Dynamics CRM
- Is EasyRepro still being maintained?
- How to use/find a customer's MS Dynamics Dataverse tentant resource?
- How to add OffsetLedgerDimension to Fixed Asset Journal by x++?
Related Questions in DEXTERITY
- Rename Dexterity object (id) after copy
- Plone 5 custom content types missing in portal navigation
- How can I fix the error "this launch file is invalid" when running a Dynamics GP macro?
- Is it possible to use VBA Code as an action on a Textbox in SSRS
- [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified [Dynamics GP]
- Plone: Validate field based on other field's value
- Display related dexterity content types with eea.facetednavigation
- Plone 4: Dexterity objects not added to catalog
- Plone best practice for embedding of objects by uid
- Language of Events in Plone Theme
- Plone: dexterity content type default view template
- How I delete custom dexterity objects in Plone 4?
- Plone 5: Dexterity content types do not provide IContentType
- How to use dexterity/forms to add a list of custom objects?
- How to override or inherit a z3c.form widget?
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
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?
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)
Resolved finally. It has got nothing to go with any of the two econnect procedures namely 'taCreatePayrollBatchHeaderInsert' and 'taComputerChecklineinsert'.
It had raised due to a select statement before the batch creation by taCreatePayrollBatchHeaderInsert. the select statement was in place to select the parameters for taCreatePayrollBatchHeaderInsert.
The code worked perfectly fine when the select statement was commented.