Dynamics 365 Talent is now Dynamics 365 Human Resources
New updates are on the way for D365 Talent, checkout below links
Building a more successful workforce with Dynamics 365 Human Resources
Announcing changes to Dynamics 365 Talent
-Harry
Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
Search This Blog
December 21, 2019
December 19, 2019
[Logic Apps] Define parameter null-able.
Hi Folks,
When we define parameters in a Logic apps by default they need a value to be passed by calling object. If you want to make a parameter to accept null value as well then define them as below.
default declaration:
{
"properties": {
"packageName": {
"type": "string"
}
"type": "object"
}
}
Allow null value:
{
"properties": {
"packageName": {
"type":["string", "null"]
}
"type": "object"
}
}
-Harry
Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
When we define parameters in a Logic apps by default they need a value to be passed by calling object. If you want to make a parameter to accept null value as well then define them as below.
default declaration:
{
"properties": {
"packageName": {
"type": "string"
}
"type": "object"
}
}
Allow null value:
{
"properties": {
"packageName": {
"type":["string", "null"]
}
"type": "object"
}
}
October 24, 2019
Create and save a csv/text file in D365FO (x++ code sample)
Hi Folks,
Let's see how to create a CSV or TXT file through X++ code and later save that on local folder.
In code there is the full syntax of File::SendStringAsFileToUser method with all parameters. However, not all of them are mandatory but it's nice if you can explore them for your solution, for eg. changing the file encoding.
-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
September 23, 2019
[Solved] The server did not received a response from an upstream server
Hi Folks,
Here we come to our second post on Logic app troubleshooting. Check this link (if you haven't yet) for the previous post.
Error:
Possible reason:
Well, there is not an issue in your logic app, it's running fine. There must be some issue with data.
Solution:
As its a data related issue and to see more details on the error, navigate to data management in FO and see the execution history of this export/Import. You must get detail of error and once you fix them you must be able to run successful next time. Also, I would recommend adding an extra action on your logic app to handle this error.
Another thing you can try to do import same file manually and if you found the issue, fix that and try again with Logic app.
-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
PS: Logic apps can be used for multiple purposes. In most of my post, I'll be dealing with in #MSD365FO related issues.
Here we come to our second post on Logic app troubleshooting. Check this link (if you haven't yet) for the previous post.
Error:
"error":
{
"code":
"NoResponse",
"message":
"The server did not received a response from
an upstream server. Request tracking id
'#########'."
Possible reason:
Well, there is not an issue in your logic app, it's running fine. There must be some issue with data.
Solution:
As its a data related issue and to see more details on the error, navigate to data management in FO and see the execution history of this export/Import. You must get detail of error and once you fix them you must be able to run successful next time. Also, I would recommend adding an extra action on your logic app to handle this error.
Another thing you can try to do import same file manually and if you found the issue, fix that and try again with Logic app.
-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
PS: Logic apps can be used for multiple purposes. In most of my post, I'll be dealing with in #MSD365FO related issues.
Subscribe to:
Posts (Atom)