Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 1.16 KB | None | 0 0
  1. declare @p1 xml
  2. set @p1=convert(xml,N'<DRGRanges><DRGRange RangeStart="1" RangeEnd="999"/></DRGRanges>')
  3. declare @p2 xml
  4. set @p2=convert(xml,N'<Customs/>')
  5. declare @p4 xml
  6. set @p4=convert(xml,N'<Facilities><Facility FacilityID="SR"/></Facilities>')
  7. declare @p5 xml
  8. set @p5=convert(xml,N'<DCDestinations><DCDestination DCDestination="SNF"/><DCDestination DCDestination="Hospital"/><DCDestination DCDestination="Home"/><DCDestination DCDestination="ALF"/><DCDestination DCDestination="ILF"/><DCDestination DCDestination="LTACH"/><DCDestination DCDestination="Hospice"/><DCDestination DCDestination="Deceased"/><DCDestination DCDestination="Payer Change"/></DCDestinations>')
  9. declare @p6 xml
  10. set @p6=convert(xml,N'<Physicians/>')
  11. declare @p11 xml
  12. set @p11=convert(xml,N'<TypeAPayers><TypeAPayer Name="A"/></TypeAPayers>')
  13. exec Report.spTelerikFPITrendingEpisode @DRGXML=@p1,@CustomGroups=@p2,@SingleICDFilter=NULL,@FacXML=@p4,@DCDestinationXML=@p5,@PhysicianXML=@p6,@HospitalProviderID='0',@mdcGeneration=3,@useDRG=NULL,@caseType=1,@TypeAPayersXML=@p11,@getPT=1,@getOT=1,@getST=1,@startLOS=7,@endLOS=100,@startDC='2016-11-01',@endDC='2016-11-30',@patientID=NULL,@UseHospitalDx=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement