Hope to get some tips or clarifications from valued TM1 developers regarding my queries as follows:
1. What is the actual meaning of this symbol " =>"? I know it's used in the Feeder section but no one can explain to me its real meaning including the vendor of TM1.
2. How does feeder work? Is it independently or work closely with Skipcheck?
3. Would appreciate it if someone can explain to me he following example which I can't figure out its actual meaning:
Example of "Conditional Feeder" as follows:
Given a cube SalesBySaleperson with Dimensions:
- Salesperson
- Product
- Month
- Measures ('Sales' and 'Commissions')
If you calculate Commissions based on Sales using a commission rate as follows:
['Commissions'] = N:['Sales'] * db['CommissionRates',!product, !month);
Commissions should be fed from Sales, but only if the commission rate for the product in the month where the sale occurs is non-zero.
This can be accomplished by a feeder of the form:
['Sales']=> db[cubename, !salesperson, !product, !month, 'Commissions');
Here, cubename is a conditional expression that results in a blank if the corressponding commission rate is zero. Since a blank name cause the feeder to be ignored, the required effect is produced.
The complete feeder would then read:
['Sales']=> db( if(db('CommissionRates',!product, !month)= 0, ' ', 'SalesBySaleperson'), !salesperson, !product, !month, 'Commissions');
Cheers

Regards
Tee Kiam Khai