conditional split_script component doubt

  • Hi friends, first time am using script component along with conditional split, i have created output batches,

    but i don't know how to set the properties like synchronous output id n how to give the exclusion groups can anybody explain me pls..

    i have checked one example, in that example script is

    public override void preexecute()

    public override void postexecute()

    public override void input0_process inputrow(input0buffer Row)

    {

    if (Row.Employeeid<=10)

    {

    Row.directrowto1stbatch();

    Row.directrowto2ndbatch();

    Row.directrowto3rdbatch();

    Row.directrowto4thbatch();}

    else if

    (Row.Employeeid<=20)

    {

    Row.directrowto2ndbatch();

    Row.directrowto3rdbatch();

    Row.directrowto4thbatch();} please explain this code, how can i map this to output.

    thanks in advance

    NIHA

  • HI YOUSAF,

    thanks for ur help, in that link properties set to be individual (date, sales order, customer name, address).

    but in my problem, there are 4 output batches, then how can we set the properties (ExclusionGroup, SynchronousInputID)to that batches. pls explain me the script also,

    if (Row.Employeeid<=10)

    {

    Row.Directrowto1stbatch();

    Row.Directrowto2ndbatch();

    Row.Directrowto3rdbatch();

    Row.Directrowto4thbatch(); } can anybody explain, what would be the result for this code?

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply