Configure the item coverage group properly and retest it then to eliminate that.
RE: Forecast Scheduling is run, but planned order are not getting created
Forecast Scheduling is run, but planned order are not getting created
Hi,
I have run the Forecast schedule for an item but it is not creating planned orders. But when I go the released products --> Plan action tab--> Gross requirements and then update forecast scheduling planned orders are creating for that item. I am not sure why planned orders are not getting created through this option in Master planning --> Periodic--> Forecast scheduling.
RE: crossCompany from update_recordset
Hi Avinash Moosa ,
If TmpTaxTransactionRDP has "savedatapercompany" property = "No" then you can use next script:
ttsBegin;
while select crossCompany custTrans
{
select forUpdate TmpTaxTransactionRDP
where TmpTaxTransactionRDP.voucher == custTrans.Voucher;
if (TmpTaxTransactionRDP)
{
TmpTaxTransactionRDP.SourceInvoiceNo=custTrans.Invoice;
TmpTaxTransactionRDP.update();
}
}
ttsCommit;
RE: Runtime Metadata error
Hi Subhash Krishna,
It looks like that you have one object with the same name in a different models. It could happen if you moved object from one model to another. In this case try to include both models into deployable package and install it.
RE: ıphone screen layout in 365 Cloud POS
Hi,
Please, translate error message you have to English. If it's like 'Contact administrator', to find out what is wrong, you should open browser console and read error details from there.
ıphone screen layout in 365 Cloud POS
RE: about loyalty balance from POS
Hi,
rt - you should declare this variable somewhere upper in the code. C# cannot use variable, if it's not defined.
about loyalty balance from POS
i was facing this problem below
View loyalty balance from POS and and print on Reciept
so when i add this code
ILoyaltyCardData cd; cd= Application.Services.Loyalty.GetLoyaltyBalanceInfo(rt.LoyaltyItem.LoyaltyCardNumber); comment.AppendLine("Loyalty Card :" + cd.CardNumber); comment.AppendLine("Customer :" + cd.CustomerName); comment.AppendLine("Card Type :" + cd.CardTypeString); comment.AppendLine(); comment.AppendLine("Issued Points :" + cd.IssuedPoints.ToString("#,##0.00")); comment.AppendLine("Used Points :" + cd.UsedPoints.ToString("#,##0.00")); comment.AppendLine("Expired Points :" + cd.ExpiredPoints.ToString("#,##0.00")); comment.AppendLine(); comment.AppendLine("Balance Points :" + cd.BalancePoints.ToString("#,##0.00")); using (LSRetailPosis.POSProcesses.frmMessage dialog = new LSRetailPosis.POSProcesses.frmMessage(comment.ToString(), MessageBoxButtons.OK, MessageBoxIcon.None)) { LSRetailPosis.POSProcesses.POSFormsManager.ShowPOSForm(dialog); } operationInfo.OperationHandled = true;
i facing this error
RE: Error while performing tender declaration in Retail POS : "Index was outside the bounds of the array"
Hi Vikram,
Try to debug NeedForRecount method - some array has less number of elements than it's expected by POS.
Error while performing tender declaration in Retail POS : "Index was outside the bounds of the array"
Hi Everyone,
I am facing an issue while performing tender declaration in POS (AX Retail). The error says "Index was outside the bounds of the array"
Event Log:
Index was outside the bounds of the array.: System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Microsoft.Dynamics.Retail.Pos.Dialog.WinFormsTouch.frmTenderCount.NeedForRecount(String currentTender, String currentCard, Decimal currentAmount, String currentTenderName, Int32& counter)
at Microsoft.Dynamics.Retail.Pos.Dialog.WinFormsTouch.frmTenderCount.ProcessTenderCountLine(List`1 tenderCountLines, PosisOperations tenderOperationType, Int32& attemptsDoneCounter)
at Microsoft.Dynamics.Retail.Pos.Dialog.WinFormsTouch.frmTenderCount.CreateTransaction()
at Microsoft.Dynamics.Retail.Pos.Dialog.WinFormsTouch.frmTenderCount.OnClosing(CancelEventArgs e)
at System.Windows.Forms.Form.CheckCloseDialog(Boolean closingOnly).
Does anyone have idea on this issue ? Kindly suggest.
Thanks
Vikram Konchada
RE: Blank operation at CLOUDPOS
If you create a new view, no need to use Blank operation - it's outdated concept.
Try the following sequence of steps:
1) Create new operation with ID more than 5000 in D365 'Operations' form - it will be listed together with standard operations - this is replacement of Blank operation, just add new operation (this is main difference with AX2012)
2) Assign new operation to POS button via Designer application
3) Run 1090 job to update database
4) Check StoreHoursSample in CPOS Extensions - this is how you add new operation with Handler - inside Handler new View is opened
RE: Blank operation at CLOUDPOS
Hi Lindaura,
Make sure you included your project into extensions.json file, not only changed tsconfig.json
Blank operation at CLOUDPOS
Hi All,
I am creating a new view in CLOUDPOS. I have created extension project in pos.extension and newly created extension is getting loaded when I run the solution.
Issue:-
I have created a new button at CLOUDPOS of blank operation type with value 4001. Now, when I click on button. it gives pop-up "The blank operation is not invalid".
What my guess is it should hit the handler that I have created but it is not.
Question :- Is there any need to create a new blankoperationhandler.ts file like that exist in MPOS in ax2012.
If yes Please let me know how.
PS :- I am creating a new button at CLOUDPOS with value "3001". and when i click on button it should ideally call "STOREHOURSAMPLE" that comes in CPOS but it gives pop-up "The blank operation is not invalid".
=> I am not able to call storehoursample by just creating a button of type blankoperation in cpos.
PLEASE suggest on how to call storehoursample bycreating a new button. This will solve the above solution.
Thanks
Shubham
RE: Calling Pay Card Operation from custom Operation
Hi,
Try to use AddTenderLineToCartClientRequest to add payment line. POS should include sample how to execute this request
Calling Pay Card Operation from custom Operation
Hi,
I've added a custom Operation Handler in Modern POS and I need to call the existing Pay Card operation form my custom operation.
All I want to do is a complete payment transaction from my custom button but with passing some extra properties.
AX Dynamics 365 Update 12
Modern POS
Thanks,
Shabaz Chishty
RE: Extended Data Types in comparsion with C-Sharp
Yeah. Miroshikov he is right!
Extended Data Types in comparsion with C-Sharp
Hello I want to start a descussion about AX end their EDT.
EDT is a concept that is wery handy and when you create EDT, configure business and validadion for example.
Now when I co over to C# and there is no EDT concept. I have ahcive some goals by creating classes and use it as Data Annotations. But can someone answer me what problems EDT resolve and how can you resove it in C#.
Is a good artical about it?
RE: Ax 2012 Server configuration Manager Disabled
Your welcome
Ax 2012 Server configuration Manager Disabled
RE: Report Design Not showing added field
Hello Compile full CIL