Quantcast
Channel: NAV/Navision Classic Client — mibuso.com
Viewing all 2239 articles
Browse latest View live

Any help out there?? Dimensions when Adjust Exchange Rate, how to?

$
0
0
When setup Accounts for Gain and Losses on Dimensions with ex. Department Code "Same Code" as entered in the Dimension Setup on the current Account then the Exchange Rate Adjustment Function "ask" for enter the Dimensions, the Dimension Setup is NOT transferred to the temporary Journal Line As if you enter the Accounts in a Journal manually.

One Customer ask me for make this adjustment and I cannot see where to change some code, does not look logic for me.

Anybody have any solution for this issue, please let me know how.

Cheers
Rainer

Codeunits

$
0
0
Hi!

Now we have stupid situation when the vendor create API with closed sources to put orders in sales line table.
Of course no access to source code and no support - because it's became expensive.
We want to somehow investigate what the code units run when we are putting orders through this API?
Is this possible?

Confirm: How dont I show the focus in YES or NO ?

$
0
0
Hello.

I have a CONFIRM function but I need dont have the focus in YES or NO.
Or this, I need that the users push with mouse in the button YES or NO for validate. They cant use the key ENTER for validate the option.
How can I do ?

Thx a lot !.

PCI compliance issue with Navision 2009R2 MSXML on Server 2012 with SSL/TLS 1.0 turned off

$
0
0
We have a 2008R2 Webserver with IIS 7 that we access from Navision Webservices using msxml3 automation. Everything is working correctly. We created a new 2012 server with IIS 8 and was forced to shutdown ssl and tls 1.0 (due to PCI compliance). When we run our Navision msxml automation routine in Windows 8 or 2012 server again everything works fine; however, when when we run it from Windows 7 or Windows server 2008 R2 we get the following error:
Microsoft Dynmics NAV Classic
This message is for C/AL programmers:
The call to member send failed. msxml3.dll returned the following message:
The connection with the server was terminated abnormally.

I've turned on tls 1.1 and tls 1.2 on the windows 7 box (and rebooted) but still get the same error.

The windows 7 system is using msxml3r.dll version 8.110.7601.18980 while the windows server 2012 server version is 8.110.9600.16384. Is there a way to make the automation routine to work with Windows 2008 R2 and 7? We have many clients that still run on earlier windows versions.

COGS and Inventory Accounts Suddenly Not Posting

$
0
0
We have noticed that our COGS and Inventory Accounts are suddenly not posting.

Invoiced sales no longer show these 2 accounts in the G/L.

We are running Adjust Cost - Item Entries.

Any ideas as to what might be causing this?

Thank you,

headley27

Cisco Aironet 1240AG Series Access Points

$
0
0
I'm implementing a Wireless Network for my 300,000 (1000 feet long, 300 feet deep and 30 feet tall) square feet warehouse. I've purchased some Hawking Technology Hi-Gain Antennas (15dbi up to 1 mile) and some Hawking Technology Hi-Gain 300N Access Points. I just realized that the Operating Temperature my the Hawking Access Point is at Max 104 F degree and during the summer months, the Warehouse temperature reaches 108 F degree at the ground floor and upward to 120 F degree (or more) close to the ceiling.
I have decided to return the Hawking Access Points and am LOOKING at this Cisco Aironet 1240AG Series Access Points. It has Operating Temperature upward to 120 F degree.
This Cisco 1240AG is $515/ea and I need at least 5 of them.

I'm using Intermec CK3 Handheld Barcode Scanner (recomended by Lanham). For Navision, I'm using ADCS.

Does anyone has any positive experience or successful implementation with Cisco 1240AG Access Point?
Or do you have any recomendation for an Access Point for Warehouse project?

You can'tcreate an Automationobject"XlApp"on Microsoft DynamicsNAV Server. mustcreate it on compter

$
0
0
You cannot create an Automation object "XlApp" on Microsoft Dynamics NAV Server. You must create it on a client computer.

The validation for file:///C:/Users/Wasiu/Desktop/Nav 2009 R2 W1/TransformationTool

$
0
0
The validation for file:///C:/Users/Wasiu/Desktop/Nav 2009 R2 W1/TransformationTool/ApplicationObjects.xsd.tmp.xml failed. Detailed Information: LineNumber=5, LinePosition=8


i create a no series on table or page but when insert new record then enter on document no dont get

$
0
0
when assist on document no and select the series then get the correct ddocument no please suggest me how can do that

Incoming http Request Modifying NAV Table [NAV 2009 R2]

$
0
0
Hi there,
I am designing a code unit and a xmlport in order to modify NAV contact table record from an external .net http-request. (Avoiding physical xml-files in the process is preferred). However the method below is only good for inserting new records into the NAV table. Modifying is also required.

A XMLport has the following layout based on the contact table:
9pnv0r21ilet.png

A code unit has the xmlport as input parameter and the following statement only:
8mt9p9qoiltz.png

A simplified request from a test client has the following xml-design (based on the published NAV codeunit's wsdl):
<CRMImporttest xmlns="urn:microsoft-dynamics-schemas/codeunit/WSUpdateNAVContact">
      <cRMImportxml>
        <Contact xmlns="urn:microsoft-dynamics-nav/xmlports/x50009">
          <No>KT1234569</No>
          <Name>hello</Name>
        </Contact>
      </cRMImportxml>
    <CRMImporttest />
When the test client is executed the record is inserted perfectly into the NAV table.
z8anauoxdhrt.png

But NAV returns error if the record already exist and the record has to be modified instead. Any ideas how tweak the codeunit to modify existing records using the method described above?
Thanks in advance!

How to make connection between NAV 2009 on terminal server and outlook on the local machines?

$
0
0
I'm new to NAV, make a research, but I can find, that everybody mentioning 'the TS is going to be very tricky when it comes to synchronising with Outlook on local machines'... But haven't found any decision yet.

We're using NAV 2009 Classic Client (exclusively) and use a Terminal Server to run NAV. All other programs (especially Outlook and Office) are installed on their local machines.

When NAV and Outlook run on the same machine everything is just fine, but not when Outlook runs on the local machine and NAV runs on a Terminal Server session.

Could anyone help me?

Outlook Automation : Appointment Item

$
0
0
Hi

I am trying to create appointments in folders form Navision using outllok atuomation as follows:


CREATE(oApp);
oNS := oApp.GetNamespace('mapi');
oRecipient := oNS.CreateRecipient(Recipient);
oFolder := oNS.GetSharedDefaultFolder(oRecipient,9); //9 is constant for Outlook.OlDefaultCalendar.olFolderCalendar
oAppt := oFolder.Items.Add(1); //1 is constant for Outlook.OlItemType.olAppointmentItem
oAppt.Subject := Subject;
oAppt.Location := Location;
StartTime := CREATEDATETIME(Start,Time);
oAppt.Start := StartTime;
oAppt.Duration := (Duration/60000);
oAppt.ReminderSet := TRUE;
oAppt.ReminderMinutesBeforeStart := 15;
oAppt.BusyStatus(2); //2 is constant for Outlook.OlBusyStatus.olBusy
oAppt.IsOnlineMeeting := FALSE;
oAppt.Save;
CLEAR(oAppt);

The problem I am having is with the line

oAppt.Start := StartTime;

The microsoft help pages say that the start property takes a datetime and I am passing a datetime but when I compile the code I get a type conversion message saying that the start property is expecting a date only. Has anyone else had this problem?

I spoke to another developer who said that the datetime type is a recent addition to Navision so maybe Navaion doesn't recognise the datetime type required.

Any thoughts would be appriciated.

Debbie

Insert new line for a string in C/AL Code

$
0
0
Dear
Could you please tell now to insert new for string

A := "Welcome"
B :="Cambodia"

how can i make C become 2 lines ?
C := A + B

waiting for your kindly reply.

Evaluating NAV2016. We are on 3.70 & really could use some screen tips.

$
0
0
Some of my key users have started to evaluate the Demo version of NAV 2016. But oh boy, the UI/screen layouts are very different from our current 3.70 version.
As such, my testers are becoming frustrated (even irritated..) because it's taking them 2-4x as long to perform any work-process, because they can't find their way around the screen.
What can I do to alleviate their pain? For example:
1. Are there any screen-setting-parameters in NAV2016 which allow me to create 'Classic' screen views or alter the UI such that it resembles more 3.70 ?
2. Any documents which help to explain the changes between 3.7 and NAV 2016?
3. ....any other tips more than welcome!!

Thanks in advance for any suggestions!
Olof

How to access Other Outlook Client in NAV 2009 R2

$
0
0
Dear Sir,

Is it possible in NAV 2009 R2 (Classic environment System) to access a Particular MS Outlook Client from the different NAV Clients. Every NAV Client will use CU 397 to create a draft email in the Particular Outlook Client.

Kindly reply.

Fully subcontracted / outsourced production order caveats?

$
0
0
I when you don't own a factory, it is outsourced, but you still manage your BOMs and all that and it is going to be complicated so you decide to use the Manufacturing granules. NAV2009.

As typical, I have to implement it without any sort of a testing period or pilot project, one day we are going to sign a contract with a factory, the next day they start churning out products and we have to track it all.

So I would like to ask, what are the caveats, what are the major things to not forget? I have seen I should have two steps in the Routing, the subcontracted one and a "finish" one so that we can write off scrap, that is correct, right? Because the purchase order should always be fully received and invoiced?

What else?

Given that the whole operation is outsourced, would it be correct to not actually use the subcontracting feature? We would book an internal routing and put the labor costs to some account and then book the outsourcing invoice to another G/L account?

Filter Option values in Form

$
0
0
Hi :)

I have a form with a text box of type Option, and it has values in the OptionString property ; <Senior Manager, Manager, Senior Partner, Partner>
Is it possible to filter these depending on a criteria?

Thanks,
Y_1716

logging in to NAV RDP from accross the planet, too slow

$
0
0
We need to provide read-only access to our NAV Classic 2009 through RPD to accountants, auditors living halfway across the planet and it is unusably slow. IT tells me it is the laws of nature, bouncing electrons to 8000km always has latency. Not having the new versions in some of our subsidiaries web access is not an option, and I am not sure that would be faster. We can't just export data or send reports, they need to be able to validate them directly by looking at all our entries and documents, they must be able to ensure we are not hiding anything. I am thinking about simply replicating the database weekly on their servers but this may not be 100% trustworthy for them. We are thinking in solutions like satellite internet but it would probably have the same latency. And it is already RDP which is the most low-bandwitch approach. Is this basically impossible? To log into a NAV Classic through RDP or something located in Europe while you are in Asia and not have it unusuably slow / high-latency?

Replication, Field List.. help

$
0
0
hello everyone..
i have table on two different pc, and one field[option] that can be replicated olny if field<>option::0...
this field added to exclude list.... i think what need to choose conversion type ... but what?...
sorry for my english and thank you for answers

Item Availability by Location filter

$
0
0
Hi,

Is it possible to filter Item availability by Location (form 515) to show only locations where inventory is not 0?

Thanks,
Y_1716
Viewing all 2239 articles
Browse latest View live