Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: ORSNAST

ORSNAST.m

Go to the documentation of this file.
  1. ORSNAST ;SLC/RAF - Policy order search ;06/25/2007
  1. ;;3.0;ORDER ENTRY/RESULTS REPORTING;**50,263**;Dec 17, 1997;Build 9
  1. ;;Per VHA Directive 2004-038, this routine should not be modified.
  1. ;
  1. ;this utility will allow the user to enter a date range to search
  1. ;the orders file, 100, looking for orders with a specific nature
  1. ;of order or status
  1. ;
  1. ;
  1. EN ;
  1. S U="^" K ^TMP("ORNS",$J),^TMP("ORSERV",$J)
  1. W @IOF,!!?18,"Nature of Order or Order Status Search.",!?15,"This report is formatted for 132 column output."
  1. N DASH,DATE,DFN,DIR,DTOUT,DUOUT,EDATE,FORMAT,HDR,HDR1,IEN
  1. N LOC,LONER,ORIGVIEW,PAGE,PNM,PROV,QUIT,REF,RPDT,SDATE,SER,SERVICE,STOP,TEXT,TEXTSUB
  1. N SINGLE,SIGNED,SNAME,SSN,STATUS,SORT,SEARCH,SUB
  1. N VA,VADM,WHEN,WHO,Y
  1. SORT S DIR(0)="SX^1:Nature of order;2:Order Status"
  1. S DIR("A")="Enter the search criteria"
  1. S DIR("?")="Enter a 1 to search orders by the Nature of order or a 2 to search orders by the Order Status. Enter an ^ to exit the option."
  1. D ^DIR S:+Y>0 SORT=+Y K DIR I $D(DTOUT)!($D(DUOUT)) G EXIT
  1. S DIR(0)=$S(SORT=1:"PA^100.02:AEMQ",SORT=2:"PA^100.01:AEMQ")
  1. S DIR("A")="Select "_$S(SORT=1:"Nature of order: ",1:"Order Status: ")
  1. D ^DIR S:+Y>0 SEARCH=+Y,SNAME=$P(Y,U,2) K DIR I $D(DTOUT)!($D(DUOUT)) G EXIT
  1. D SDATE I $D(DTOUT)!$D(DUOUT) G EXIT
  1. D EDATE I $D(DTOUT)!$D(DUOUT) G EXIT
  1. D CKDATE I $D(DTOUT)!$D(DUOUT) G EXIT
  1. FORMAT ;allows choice of formats for evaluation purpose
  1. S DIR(0)="SX^1:Detailed format;2:Columnar format"
  1. S DIR("A")="Select output format"
  1. S DIR("?")="Enter a 1 for a Detailed format and a 2 for a Columnar format. Enter an ^ to exit the option."
  1. D ^DIR S:+Y>0 FORMAT=+Y K DIR I $D(DTOUT)!$D(DUOUT) G EXIT
  1. SERV ;sets the variable SERVICE equal to 1 if the user wants to sort by
  1. ;service, or sets it to 0 if not
  1. I FORMAT=2 D I $D(DTOUT)!($D(DUOUT)) G EXIT
  1. .S DIR(0)="Y"
  1. .S DIR("A")="Would you like to sort the output by service"
  1. .S DIR("?")="If you answer yes, the output will be sorted by service. Enter an ^ to exit the option."
  1. .S DIR("B")="NO"
  1. .D ^DIR S SERVICE=+Y K DIR
  1. SINGLE ;sets variable SINGLE to set up a search of a single service
  1. I FORMAT=2&($G(SERVICE)) D I $D(DTOUT)!($D(DUOUT)) G EXIT
  1. .S DIR(0)="Y",DIR("B")="NO"
  1. .S DIR("A")="Would you like to search for specific SERVICE/SECTIONS"
  1. .S DIR("?")="Enter a YES to search by a single SERVICE/SECTION. You may either press enter without selecting a SERVICE/SECTION or enter an ^ to exit the option,"
  1. .D ^DIR S:+Y>0 SINGLE=+Y K DIR
  1. LONER ;sets DIR call to allow the user to select a single service/section
  1. I FORMAT=2&($G(SERVICE))&($G(SINGLE)) D I $D(QUIT)!('$D(LONER)) G EXIT
  1. .F D I $D(QUIT)!(Y=-1) Q
  1. ..S DIR(0)="PAO^49:AEQM"
  1. ..S DIR("A")="Select Service/Section: "
  1. ..D ^DIR S:+Y>0 LONER($P(Y,U,2))=+Y K DIR I $D(DTOUT)!($D(DUOUT)) S QUIT=1
  1. TASK ;
  1. S %ZIS="Q" D ^%ZIS I POP Q
  1. I $D(IO("Q")) D K IO("Q") Q
  1. .S ZTIO=ION,ZTDESC="File 100 order status search"
  1. .S ZTRTN="EN^ORSNAST1",ZTSAVE("SORT")="",ZTSAVE("FORMAT")=""
  1. .S ZTSAVE("SDATE")="",ZTSAVE("EDATE")="",ZTSAVE("SEARCH")=""
  1. .S ZTSAVE("SNAME")="",ZTSAVE("SERVICE")="",ZTSAVE("SD1")=""
  1. .S ZTSAVE("ED1")="",ZTSAVE("LONER*")="",ZTSAVE("SINGLE")=""
  1. .D ^%ZTLOAD I $D(ZTSK) W !,?32,"REQUEST QUEUED"
  1. U IO D EN^ORSNAST1
  1. G EXIT
  1. ;
  1. SDATE ;sets DIR call to ask the user for a starting date
  1. S DIR(0)="DA^::ETX"
  1. S DIR("A")="Enter a starting date: "
  1. S DIR("?")="Enter the date that you wish to start searching with. This date needs to be older than the ending date. For example: If you enter a start date of T-3, the Stop date should be T-2 or less. Enter an ^ to exit the option."
  1. D ^DIR S:+Y>0 SDATE=+Y K DIR I $D(DTOUT)!($D(DUOUT)) Q
  1. I SDATE'["." S SDATE=SDATE_.0001
  1. Q
  1. EDATE ;sets DIR call to ask the user for an ending date (optional)
  1. S DIR(0)="DA^::ETX"
  1. S DIR("A")="Enter a ending date: "
  1. S DIR("?")="Enter the date that you would like the search to end with. This date needs to be more recent than the start date. For example: If you entered a T-3 for the start date, enter a T-2 or less here. Enter an ^ to exit the option."
  1. D ^DIR S:+Y>0 EDATE=+Y K DIR I $D(DTOUT)!($D(DUOUT)) Q
  1. I EDATE'["." S EDATE=EDATE_.2359
  1. Q
  1. CKDATE ; Make sure the end date is not older than the start date.
  1. I EDATE>SDATE Q
  1. W !!,?10,"The starting date must be older than the ending date.",!,?10,"Please re-enter start and end dates.",!!
  1. D SDATE I $D(DTOUT)!$D(DUOUT) Q
  1. D EDATE I $D(DTOUT)!$D(DUOUT) Q
  1. G CKDATE
  1. EXIT ;
  1. K ^TMP("ORNS",$J),^TMP("ORSERV",$J)
  1. D ^%ZISC
  1. Q