Quantcast
Channel: Forums - Recent Threads
Viewing all 143529 articles
Browse latest View live

Slow printing of Job Card in AX2012

$
0
0

Hi all,

We are trying to print the JobCard in AX 2012 but we are encountering the following slowness issue with different scenarios:

1. The printing of Job Card is slow when the Desktop where the printer is connected is not logged in but powered ON. (1 minute 4 sec to print)

2. Printing of Job Card is slow when the desktop where the printer is connected is logged on (45-50 sec) 

The issue and number of seconds is contant.

Anyone encountering the same issue? appreciate any help.

Thank you.


Opportunity Plug-In Create and Update - Plug-in Registration Profile Debugging

$
0
0

Hi,

I am running into a strange issue recently. I have created a Opportunity Plug-in and registered on Create and Update steps. In Update step i have some business logic that will retrieve the SalesProcessStage (ActiveStageName) name, i am retrieving this using the leadtoopportunitysalesprocess.

When i Qualify a Lead there is some thing going wrong and when i debug the code its going to update plug-in call and its failing exactly at my fetchxml call that will retrieve some opportunity fields along with ActiveStage. Here is the query.

string oopfetchXml = "<fetch mapping='logical'>" +

"<entity name='opportunitysalesprocess'>" +
"<attribute name='activestageid'/>" +
"<filter type='and'>" +
"<condition attribute='opportunityid' operator='eq' value='" + opportunityId + "' />" +
"</filter>" +
"<link-entity name='opportunity' alias='oppsalesprocess' link-type='outer' to='opportunityid' from='opportunityid'>" +
"<attribute name = 'name'/>" +
"<attribute name = 'opportunityid'/>" +
"</link-entity>" +
"</entity>" +
"</fetch>";

When i tried to debug, the call was failing with below error during the above fetcXml Retrieval but when i ran the same fetchxml in XRMToolbox it works fine.

{"contextUserId=9d5b504c-4b3c-e611-80e7-5065f38ada11 has correct privileges but allowImpersonationOfOrganizationSystemUser == false. Parameter'user'=860ace9d-2597-436b-8f79-edddcd663f8c, callerId=860ace9d-2597-436b-8f79-edddcd663f8c."},


This plug-in is generic and contains the code for Create and Update MessageTypes. When i was debugging the Lead to Qualify i can see the call is going to two steps (Create/Update) in my my plug-in trace log and the above error is coming in Update step. My question is when i qualify a Lead does it go to Create and Update both the opportunity steps? I am wondering why the call is going to Update code block. I am unable to figure out what exactly the below error is?

{"contextUserId=9d5b504c-4b3c-e611-80e7-5065f38ada11 has correct privileges but allowImpersonationOfOrganizationSystemUser == false. Parameter'user'=860ace9d-2597-436b-8f79-edddcd663f8c, callerId=860ace9d-2597-436b-8f79-edddcd663f8c."},

Unwanted Price Charge Or Purchase Order,

$
0
0

Hi All,

I am having an issue regarding Price Charge in Purchase Order. 

After checking found out that the item is apply with price charge. 

However we did not set the item price charge, its automatically appear itself. So, my concern how we disable this price charge to occur. And what trigger for the price charge to appear itself on price charge field in the item master since we did not set any figure. 

Appreciate anyone who has experience on this to share your recommendation. 

Thanks 

Alerts notifications on any modification of a value.

$
0
0

Dear experts,

One of our user ask that there is any way, if a user makes any modification in a value or change the value so we get notification. Here in the above screenshot(unit form in Organization Administration module and setup menu), if someone change "Decimal Precision" field value so we get notification of that or we track that ABC user  who change this value,please help.

Thanks and Regards,

Shabir Ahmad

Object reference not set to an instance of an object

$
0
0

Hi

trying to import tax configuration in electronic reporting  getting the below error.

Object reference not set to an instance of the object

Is this a generic error related to the environment , or related to the function.

how to set the default Notes font to default to 14pt?

$
0
0

Hi All,

how to set the default Notes font to default to 14pt?

Currently note's font something like this.

now,I will change Notes font to default to 14pt,is it possible to change css in CRM ?

Following code used but not working  now, any suggestion ?

I have created new_lead.js Web-resource and created LdCss function anc call on form load page but css not applied in notes tab.

please help me.

function LdCSS()
{
var path ="/WebResources/new_ContactNotesFontChange.css";
var head = document.getElementsByTagName('head')[0];
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = path;
link.media = 'all';
head.appendChild(link);
}

Added new CSS file (new_ContactNotesFontChange.css )(Web-resource)

.tabsControl .tabsHeader .tabLink.active

{
font-size: 14pt !important;;

}

any idea ?

Thanks

Using Extension property in Custom model in D365 FO

$
0
0

Hello all,
I have created a custom model in D365 FO in usr layer, after adding data models and user interfaces i have build the project. 
Now the question is;

"Can i add new customization like code, new fields, controls to existing elements direct by adding the element in project area or  should I create an extension for applying new modification to already created elements ?
Model is custom, layer used is USR. 

Ps: I am new to D365 please help me out, TIA 

how to combine 3 views into a single view

$
0
0

Hi Karthik,

 

As discussed with you on the call please check the feasibility of the below requirement on consolidation of the following 6 views into 2 single views one for Closed Opps and one for Open Opps.

 

Currently there are three views we need to run separately to get all Open Opps that belong to either one of the following conditions.

 

  1. Opportunity includes a Japan Desk Member
  2. Opportunity is associated to an Account of Type either Strategic, Group Relationship Customer or P1 Divisional Customer
  3. Opportunity owning users BU is Toll Group Sales & Marketing

 

The expected outcome is to consolidate these three open views into one view to get all Opportunities that meet either one of the above conditions to eliminate having to execute three view separately.

 

The similar solution is expected for the closed views as well.


Web Services(ODataV4) filter on BC

$
0
0
Hi All,
I've created custom Sales Header Page and Sales Line Page to extract data using Web Services in ODataV4.
I want to apply filters I tried applying filters as follows
1. api.businesscentral.dynamics.com/.../Company('CRONUS%20USA%2C%20Inc.')/DWSalesOrderLinesAPI?$count=true&$filter=Shipment_Date%20gt%202018-01-01T23:59:59.999Z
giving error: 'Unable to convert value to Date'
2. api.businesscentral.dynamics.com/.../Company('CRONUS%20USA%2C%20Inc.')/DWSalesOrderLinesAPI?$count=true&$filter=Shipment_Date%20eq%20'2018-09-19'
giving error: A binary operator with incompatible types was detected. Found operand types 'Edm.Date' and 'Edm.String' for operator kind 'Equal'
I've refered here:
I'm wondering if these filters are available for Web Services or API in BC?
And also what exactly is the difference between API and WebService(ODataV4) as I've found few differences like Parent-Child relationship and complex data types.
Kindy advise!

Data is not showing in a legal entity for Top vendor YTD report

$
0
0

Hi 

When I am running 'Top vendors by YTD', the data is not shown up in a legal entity.

I doubt that exchange rates are defined in system for 'default'. But in system parameters, it is 'average'.

1.If that is the reason. Can I change the exchange rate to "default' from "average"?

2.After that do I need to deploy cubes again and then process SQL Analysis DB. Else directly I can process without deploy?

Please help me out.

Thank you.

MS Team integration with Dynamic 365 CE

$
0
0

Hi All,

Is it possible to have MS teams integrated to portal like a live chat? Ie it is exposed from the portal front end and we put some processes in place to handle that info into dynamics. Possibly using Flow etc. At the moment we are just brainstorming and are wondering if this is possible (and how much effort it might be)

I do know of cafeX live assist but due to a licensing constraint, we are trying to be creative.

TIA!

J

Server unavailable error

$
0
0

Hi

Our client has an issue.Their AX server is in different location and the user machines are at different site. These two sites are connected by  high speed internet. At some time they are facing the issue when opening forms in AX. Attached is the error.

The error message appears is "The server is unavailable. Check your configuration and network connection and try again.". Kindly let me know what might be causing this issue.

Regards,

Durai Murugan R

opportunities not exporting to excel

$
0
0

when i try to export the opportunities into excel its not showing any error message but the screen becomes blank.

Account Structures - HELP!

$
0
0

Hi,

I have issues with my account structures.  For the balance sheet I have a main account only account structure  and for other accounts they have 3 dimensions.  How is the best way to do this.  Have two separate account structures and attach both to the ledger?

I have tried this but when validate journals it just chooses the first one, why is that? what am I doing wrong, it tells me not in the account structure but is in the other one?

Also for advanced rules do you have to do an advanced rule for multiple main account numbers, who are not joined in order so can use a between 16010..16090 - does not accept this? any advice?

Thanks

The kinds of Test Dynamics 365 FO (on-cloud, on-premise)

$
0
0

Dear Friends,
I have a case (Ex: I purchase 100 users):
1/ I want to test unit test (some functions, forms)
2/ I want to test performance (ex: 500 users do in the same time)
3/ I want to test full business process (ex: Procure-to-Pay, Order-to-Cash, synchronize data between D365 FO and 3rd tool).
4/ I want to test securiy of the system.
5/ If I create new application from PowerApps, I want to find the tool automatic test (unit test, performance,full business process, securiy) of this application.
6/ I want to test case of 5000 emails transfer from MailChimp to D365 FO in the same time.
Requirements:
1/ I want to setup the tool automatic test. Could you recommend the lisf of tools test Dynamics 365 FO (on-cloud, on-premise)?. Thank you.


The kinds of Test Dynamics 365 BC (on-cloud, on-premise)

$
0
0

Dear Friends,
I have a case (Ex: I purchase 100 users):
1/ I want to test unit test (some functions, forms)
2/ I want to test performance (ex: 500 users do in the same time)
3/ I want to test full business process (ex: Procure-to-Pay, Order-to-Cash, synchronize data between D365 BC and 3rd tool).
4/ I want to test securiy of the system.
5/ If I create new application from PowerApps, I want to find the tool automatic test (unit test, performance,full business process, securiy) of this application.
Requirements:
1/ I want to setup the tool automatic test. Could you recommend the lisf of tools test Dynamics 365 BC (on-cloud, on-premise)?. Thank you.

Deploy to UAT , deploy Button Stuck

$
0
0

Dears,

I have deployed earlier from DEV to UAT and the deployment was successful, but the Deploy Button was stuck with status ( Deploy...) and it is been like this for a month.

We have ended the deployment yesterday ,and now the status is FAILED,and the system only gave us one option is to restore UAT to previous point, but we cant do that as many changes has been done during this month to the UAT in term of DATA.

any suggestion how we can solve this issue without loosing existing DATA on UAT.

Thanks,

How to Comment Standard Code.

$
0
0

How can we comment standard code via visual studio code.

Need to make method a standard method Replaceable to true, to bypass the standard method and calls my extended method.

$
0
0

We need to add an “and condition” in a where clause of a while loop in standard method  of class .We have tried with pre/post Event handlers , COC and even tried deleting the records after the creation but we couldn’t’ be successful in achieving our requirement. In order to add my condition in while loop I need to by-pass the standard method and replace my new extended method with "and condition" added to the while loop.

How To Set Item With Multiple Barcode

$
0
0

Hi All,

How do I set, 1 item with multiple barcode?

I couldn't find the guide/steps to do this. 

Appreciate anyone who has knowledge in this, to share with me.

Thanks

Viewing all 143529 articles
Browse latest View live


Latest Images

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