Question : added a function to webservice.  Why can't i see it by intellesense on the client

hi,

I added a function to and exsisting webservice.  Why can't i see it by intellesense on the client.?

Answer : added a function to webservice.  Why can't i see it by intellesense on the client

Sorry.

First run, and re-run, the SELECT and adjust it to match what you need -- remove columns, change some values, etc.

Then you can use that SELECT to insert the reverse transactions into the #summary table.

INSERT INTO #summary
SELECT
      [TicketNumber],
      [Visit],
      [EntityCode],
        [Fiscal Year],
        [Fiscal Period],
        [Subsystem],
        [Source Code],
        [DeptSubAccount], -- needs changed?!
        [Amount],
    CASE WHEN [Debit/Credit] = 'C' THEN 'D' ELSE 'C' END,
        [Description],
        [Proj Id]
FROM #Summary
Random Solutions  
 
programming4us programming4us