Making parameters independent of its execution... very urgent requirement

  • I have another requirement that the parameters should be independent of its execution.I have six parameters which should be independent of its execution.

    I have done it using if else statements..

    Six parameters are ticket no,order type,from date,to date,shpdateto,shpdate from.

    I have stored the select statements inside variables to make sure which has to be executed in which case.

    Used the same inside If --- else statements.

    I have done like this...

    if @fromdate is null and @todate is null and @ordertype <>''

    begin

    set @a = @x

    end

    else if @ticketno = '' and AND (@FromDate <> NULL AND @ToDate <> NULL) AND (@shpdatefrom = null and @shpdateto = null) and @OrderType <> ''

    begin

    set @a = @y

    end

    else if @ticketno = '' AND (@shpdatefrom IS NOT NULL and @shpdateto IS NOT NULL) AND @OrderType <> ''

    begin

    set @a = @z

    end

    My problem is if I give shpdatefrom and o values alone and leave the other columns blank im getting error saying one or more parameters need to be filled.

    The same happens for from date and to date also.

    Pls help me out...

    Its very urgent requirement

  • You can set a parameter to allow nulls.

    In the Report Data tab, right click on the Parameter name and choose Parameter Properties. The General screen has the option: Allow null value.

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

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