Quantcast
Channel: Microsoft Dynamics SL
Viewing all 14968 articles
Browse latest View live

Forum Post: RE: How export an application made on Dynamics SL 2011 to 2015 versions.

$
0
0
Lisa, yes you do. From your response, it sounds like you must have inherited the custom applications. I was assuming that they were developed using the SL SDK in the prior versions when I responded but that may not be the case. The quick and dirty way to figure that out is whether the application is a screen that appears on the SL menu and looks and acts like other SL screens. If they were SDK created applications and you have never used SDK then you may be best suited to seek out a SL partner who has experience in developing in SDK. It is a bit quirky at times. However, if the screen works under SL 7.0 or under SL 2011 then the SDK conversion tool should create an SL 2015 version without having to know too much about the SDK

Forum Post: RE: How export an application made on Dynamics SL 2011 to 2015 versions.

$
0
0
Rick, the application is a separate screen and it appears under the process section for the specific module. It is working in SL 7.0 so I am guessing that SDK conversion tool maybe able to help. However, it does not seem like the client has a license for SDK conversion tool. I will have a closer look into this issue. Thanks for the feedback

Forum Post: RE: Display date and time on screen

Forum Post: RE: Display date and time on screen

$
0
0
This is not as simple as you might think. Using the DSLDate control will only show the date in MM/dd/yyyy format. In order to display the time from the table, you would need to add TextBox to the screen, then convert the smalldatetime field from the table into a Time format. Problem is, you cannot add the same field twice to a screen, so you can only display either the date OR the time. I also don't think that Customization Manager will allow you to add a smalldatetime field using a TextBox, so you would probably need to convert the smalldatetime data value in a SQL view to a char field, then you might be able to pull it into the screen. You would need to add a virtual table (SQL view) to the database that pulls in the data fields you need, create and add a DH file that holds the view data in a buffer, then add the textbox that pulls in the converted smalldatetime field ("HH:MM AM/PM" format) from the view. It would require some VBA and SQL code/skills to accomplish all this. As I started with, not as simple as you might think....

Forum Post: Date adaptations (Customizations) or Modifications screens

$
0
0
Is there any way to determine the dates of adaptations (custumitation) on the screens or modifications (Custumitation) screens?

Forum Post: RE: Syntax to return a value from a stored procedure to Dynamics

$
0
0
This should do it. strSQL = "exec [spName] , " serr8 = SqlFetch(c1, strSQL, bVariableName)

Forum Post: SL 2011 Vendor Quick Query

$
0
0
It seems there is an issue with the quick query in SL for my client. In AP, when I try to add or remove columns from the Vendor Addresses or Vendor Details QQ the columns won't add. It is acting the same way in AR for Customer Details. What could be causing this issue? Cherie

Forum Post: RE: auto numbering is in effect, entry in fiel will be overridden

$
0
0
I found out that there is a bug on the pvrec record and that this query has to be run to avoid this problem Alter Procedure APDoc_QCPP_RefNbr @parm1 varchar(1), @parm2 varchar (10), @parm3 varchar(10) as Select * From APDoc Where DocClass = @parm1 and CpnyID = @parm2 and (APDoc.DocType = 'VO' OR APDoc.DocType = 'PP') and APDoc.RefNbr LIKE @parm3 and Status <> 'V' Order by RefNbr I did run it, and the message stopped showing up.

Forum Post: RE: I'm getting the message 9 item not found when trying to unapply a prepayment on screen 0307000

$
0
0
I am having a similar issue, but with SL2015 where multiple vouchers should be able to support multiple prepayments. Any suggestions?

Forum Post: SL 2015 Message 9 Item not found when trying to unapply prepayment screen 0307000

$
0
0
In SL 2015, user is receiving the Message 9 Item not Found response when trying to unapply a prepayment in screen 0307000. I checked apdoc.prepy_refnbr and there was no data for the batch. Then I checked ap_ppapplic, ap_applicbat and ap_ppapplicdet and found the batch there. How do I resolve so that batch show up in prepayment application screen to be unapplied?

Forum Post: RE: SL 2011 Vendor Quick Query

$
0
0
Cherie, I just ran a test and have the same issue with SL 2011 (no CUs installed). My SL 2015 works fine. I will test SL 2011 CU 1 a bit later this morning to see if that corrects this issue.

Forum Post: RE: Date adaptations (Customizations) or Modifications screens

$
0
0
The CustomVBA table is not defined with a created or updated date-time field, and the timestamp column represents just the relative sequence of a record change. The best suggestion I saw in another posting was to compare periodic backup copies of the system database - CustomVBA table to be able to identify differences in the table made within a range of dates.

Forum Post: RE: Error "System Message 10065 - has exceeded the limit of 50 cursors ".

$
0
0
I have the error "System Message 10065" in Dynamics SL 2011 FP1 in Application Server (96.010.00) "Application has exceeded the limit of 50 cursors. Please decrease the number of cursors in use by this application." Please help. ~gladiatr.

Forum Post: RE: GL detail report

$
0
0
The GL Detail report uses the view vr_01620. As Mark mentioned, a custom view could be used that adds the vendor table to the report. The GLTran.ID field links to the vendor id field where the journal type is AP and the transactions are posted in detail.

Forum Post: System message 6901

$
0
0
Hi Almost every morning we are getting an issue where the process manager is being stopped by some process. Today we got this message when the process manager stopped "system message 6901 - Another process has updated the process control table. The program will be terminated". We have recently upgraded to Dynamics SL 2015 CU1 and have never experienced this issue before. This is presently a continuous problem as all documents cannot be printed and inventory cannot be updated when this happens. Has anyone experienced this issue and know what is causing it and how to resolve it? Any input will be appreciated. Thanks

Forum Post: Foreign Currency Invoice

$
0
0
I have a foreign currency Invoice with the decimal amount in the APDOC and APTRAN table. I can see the decimal amount in the tables but its not displaying in the application. Any one ran through this issue and know how to resolve.

Forum Post: RE: Foreign Currency Invoice

$
0
0
1. What is the decimal of the currency used for the payment? 2. did the user set they screen magnification to Medium (125%)? This would cause some of the data field to cut of the decimal place in amount fields.

Forum Post: Vendor PV Issue

$
0
0
Good Day, I have an odd issue related to the Vendor PV Listing If i go to the voucher entry window, attempt to create a new transaction and go straight to the vendor pv listing, i only see three vendors listed. The other vendors are not available for selection. However, If i go to the Vendor Maintenance window and use the Vendor PV lookup, i see all vendors listed. And also, If i go to the voucher entry window, select an existing transaction and then pull the vendor pv listing i see all vendor records. What would cause this? Note all vendors are active and not on hold.

Forum Post: RE: SL 2011 Vendor Quick Query

$
0
0
Thanks Rick. I thought it was strange since some of the other queries work just fine.

Forum Post: RE: SL 2011 Web Services/Web Apps Email Problem

$
0
0
Check the following: 07718158D19D4f5f9D23B55DBF5DF1 user is mapped to msdb database with membership in DatabaseMailUserRole dbmail profile is setup with a default profile use MSDB; grant execute on sp_send_dbmail to "07718158D19D4f5f9D23B55DBF5DF1";
Viewing all 14968 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>