Exploring TM1 - a Chartertech Company
Search
Close this search box.

ItemSkip TM1 Function: Use and Syntax

ITEMSKUP is a Turbo Integrator function that forces the current record being read from a data source to be skipped.

Syntax of ITEMSKIP

The syntax is just ITEMSKIP; – real simple eh! And there are no operators.

Usage

Typically ITEMSKIP will be used with an IF statement so that only data that satisfies a certain criteria will be further processed. This both speeds up the processing and also allows you to discretely set a variable within an IF statement.

For example:

IF ( vChannel @= ‘Grocery’);

vChannelCode = ‘GR’

ELSE;

ITEMSKIP;

ENDIF;

This would test the variable vChannel to see if it contained the word ‘Grocery’ and if so, then set the variable vChannelCode to ‘GR’ and if not, then skip the record (meaning that only Grocery data will end up being processed by this TI.

  • This field is for validation purposes and should be left unchanged.

Post Sections

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

Log In