You have a worksheet showing work orders. You are asked to report the date used to convert the calculated field EffectiveUnitPrice.
Which expression will accomplish this task?
You want to improve performance by enabling caching on the worksheet shown in the exhibit. The worksheet is based on the CTPActivity table.
Which expression must you migrate to the secondary filter expression box to accomplish this task?
You are asked to create a worksheet that contains fields from four tables.
Referring to the graphic, which table should your worksheet be based on to optimize performance?
Given the following order policies:
Referring to the graphic, what are the sizes of the three planned orders A, B, and C?
You are asked to populate the PartSource BaseKey to ensure unique key values.
In this situation, which expression would create uniqueness while saving memory?
At a customer site, there are multiple TimePhasedSafety records that are duplicated in the Baseline scenario. This is caused by the cross-scenario update from a child scenario.
What are two Kinaxis best practices for cross-scenario updates to prevent this situation? (Choose two.)
Choose 2 answers
You have a worksheet based on the Part table. You want to know the total number of unique customers that have orders for each part.
Which expression accomplishes this task?
After the most recent planning cycle, a planner asks you why there were no new records in the HistoricalPartKPI table. They expected these records to be written as part of a scheduled automation chain. You must determine if the automation chain has been disabled, but you are not familiar with which automation chain should perform this action. As the first step in identifying the automation chain, you need to search for any of its associated resources.
In this situation, which process would guarantee that you have the correct associated resources of the automation chain?
Given the worksheet properties shown in the exhibit, which console output would exist for the following script?
var dataForInsert = [['1','BBy-LCD37','DC-Europe','DCRequest','LCD-3735','DC-Europe','06-01-20',147]];
var wbOrderChng = rapidResponse.workbooks.get({name:'Change Orders',scope:'Private'}, {scenarios: [scenario], filter: {name: 'All Parts', scope: 'Public'}, siteGroup: {name: site, scope: 'Public'}});
var wsOrderChng = wbOrderChng.worksheets.get('ChangeOrders');
var importResult = wsOrderChng.importData(dataForInsert); rapidResponse.console.writeLine(JSON.stringify(importResult));
You want to define a custom data structure connecting BuyerCode to additional information: Manager, Department, and Floor. A manager might be responsible for more than one department. You expect that users will want to filter this information on combinations of each of those data elements.
Referring to the graphic, which data model structure should you use?
You have a report based on an InventoryTransfer table. Due to currency fluctuation, you are asked to report the difference between the future EffectiveUnitTransferCost and the cost to transfer it today.
Which expression will accomplish this task?
Given this information and referring to the graphic:
Which statement about the planned order(s) that are created is true?
You want to enter a forecast for 6000 units of part 89-Prod0966 in the June 8 bucket. You expect that three records will be inserted into the IndependentDemand table (equal quantities of 2000 at each of the three sites); however, you get an error.
Which action would solve the error?
var dataArray = [[line, orderNo, site, orderType, partName, site, dueDate, quantity]];
var dataSettings = {scenarios: [scenario], filter: fAllParts, siteGroup: sgSite}
var wbOrderChng = rapidResponse.workbooks.get({name:'Change Orders', scope:'Private'}, dataSettings);
var cmdDeleteData= wbOrderChng.commands.get('DeleteData');
var wsOrderChng = wbOrderChng.worksheets.get('ChangeOrders')
Which two lines of code would potentially delete records in a table if they appeared after the code shown in the exhibit? (Choose two.)
Choose 2 answers
You want to provide a worksheet based on the CRPOperation table to report destination location. There is only one valid stock location per operation. A secondary requirement is to view all valid work centers that feed a given stock location.
Which approach should you use to optimize performance?