Hi Guys,
I was facing some error using Windows live writer, every time I tried to access my blog account on live writer is showing below error message
Blogger Returned the following error:
NotFount: Not Found
It seems some technical issue is there at Micsoft/Google side, we need to wait for a solution.
Below is some useful links on this ongoing issue, (Still waiting for any solution from either Microsoft or Google itself)
https://productforums.google.com/forum/#!topic/blogger/-49FC2_0l-g
https://social.microsoft.com/Forums/en-US/379fab33-5008-442d-9869-a7357aacbeb0/problem-with-blogger-notfound-not-found?forum=writergeneral
-Harry
Follow us on Facebook to keep in rhythm with us. @Facebook
https://www.facebook.com/theaxapta
Hi Folks,
After applying one HotFix, I got many weird issues, some are mentioned below
1. I wasn't able to confirm any Purchase Order
2.Not able to proceed Sales order to Warehouse.
3.While packing slip of Sales Order, I am getting many lines of different
sales order.
Below error message bother me every time.
Solution:
All you need to do, unmark the below check box from
Now all above error message must not come again.
To do this for all user in one shot, use below job to do it.
static void theAxaptaUpdate(Args _args)
{
UserInfo
UserInfo;
update_recordSet UserInfo
setting
debugInfo =
1036
where UserInfo.debugInfo == 12;
}
-Harry
Follow us on facebook to keep in rhythm with us. @Facebook
Hi Folks,
Many time we need to restore one Database to another system which is not part of current domain. In such cases its not going to be straight forward to click on restore button on SQL. You need to perform some other action to make it work.
Use below steps to restore AX DB from a different Domain.
1. Restore DB using SQL management studio.
2. Edit UserInfo table in SSMS (SQL server management Studio).
you need to update the SID and domain. To find current system user SID use below steps.
SID of current system user:
Run below command in Command prompt.
whoami /user
You can also copy if from Registry
Type RegEdit in run command
3. Open SSMS, open AX database-> Tables -> SysUserInfo
Update below field in
i. UserId
ii. Domain
iii. SID
4. Now start AOS services and open ax client. It should work.
-Harry
Issue: I added below fields in a new table (I picked from DirPartyTable, yes we prefer to copy new fields from other table ;) )
1. FirstName
2. Middle Name
3. Last Name
While i add the same in a Form these fields are not visible at all.
Possible reason:
In DirPartyTable the configuration key for all above fields is set to “SysDeletedObjects60”, also these fields are prefixed “DEL” that means these fields may deprecated in next version on AX.
Solution:
Here is very simple solution, Just remove the configuration key from YOUR NEW table fields(don’t play with DirPartyTable, do it in your new table).
than synch table and restore your form. Now check all fields should visible on form.
Also you can have a look on table “DirPersonName”. Here you will found the same fields.
- Harry