Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Info |  Desc |  Pointed To By FileMan Files |  Fields |  ICR |  All
Print Page as PDF
Global: ^DI(.85

Package: VA Fileman

Global: ^DI(.85


Information

FileMan FileNo FileMan Filename Package
.85 LANGUAGE VA Fileman

Description

Pointed To By FileMan Files, Total: 3

Package Total FileMan Files
Kernel 2 NEW PERSON(#200)[200.07]    KERNEL SYSTEM PARAMETERS(#8989.3)[207]    
VA Fileman 1 DIALOG(#.84)[#.847(.01)]    

Fields, Total: 10

Field # Name Loc Type Details
.01 ID NUMBER 0;1 NUMBER
************************REQUIRED FIELD************************

  • INPUT TRANSFORM:  K:+X'=X!(X>9999999999)!(X<1)!(X?.E1"."1N.N) X S:$G(X) DINUM=X
  • LAST EDITED:  MAY 24, 1994
  • HELP-PROMPT:  Type a Number between 1 and 9999999999, 0 Decimal Digits
  • DESCRIPTION:  
    A number that is used to uniquely identify a language.  This number corresponds to the FileMan system variable DUZ("LANG"), which is set during Kernel signon to signify which language FileMan should use.
  • NOTES:  XXXX--CAN'T BE ALTERED EXCEPT BY PROGRAMMER
  • CROSS-REFERENCE:  .85^B
    1)= S ^DI(.85,"B",$E(X,1,30),DA)=""
    2)= K ^DI(.85,"B",$E(X,1,30),DA)
1 NAME 0;2 FREE TEXT
************************REQUIRED FIELD************************

  • INPUT TRANSFORM:  K:$L(X)>30!($L(X)<1) X
  • LAST EDITED:  MAY 24, 1994
  • HELP-PROMPT:  Answer must be 1-30 characters in length. (e.g., ENGLISH, GERMAN, FRENCH)
  • DESCRIPTION:  
    The descriptive name of the language corresponding to this entry (i.e., German, Spanish).
  • TECHNICAL DESCR:  
    Descriptive name of this language (e.g., ENGLISH, GERMAN).
  • CROSS-REFERENCE:  .85^C
    1)= S ^DI(.85,"C",$E(X,1,30),DA)=""
    2)= K ^DI(.85,"C",$E(X,1,30),DA)
10.1 ORDINAL NUMBER FORMAT ORD;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 07, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to transfer a number in Y to its ordinal equivalent in this language. The code should set Y to the ordinal equivalent without altering any other variables in the environment. Ex. in English:
    Y=1     becomes         Y=1ST
    Y=2     becomes         Y=2ND
    Y=3     becomes         Y=3RD  etc.
    WRITE AUTHORITY:  @
10.2 DATE/TIME FORMAT DD;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 07, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to transfer a date or date/time in Y from FileMan internal format, to printable format equivalent to English MMM DD,YYYY@HH.MM.SS. The code should set Y to the output, without altering any other variables
    in the environment.  Ex. in English:
    Y=2940612.031245        becomes         Y=JUN 12,1994@03:12:45
    WRITE AUTHORITY:  @
10.21 DATE/TIME FORMAT (FMTE) FMTE;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  JUN 24, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to transfer a date or date/time in Y from FileMan internal format, to printable format based on the various outputs from routine FMTE^DILIBF. This is an extrinsic function. Coming in to this MUMPS code,
    in addition to the internal date in Y, a third parameter will be defined to contain flags equivalent to the flag passed as the second input parameter to FMTE^DILIBF. The code should set Y to the output, without altering
    any other variables in the environment.  The output should be formatted based on these flags:
    1    MMM DD, YYYY@HH:MM:SS
    2    MM/DD/YY@HH:MM:SS     no leading zeroes on month,day
    3    DD/MM/YY@HH:MM:SS     no leading zeroes on month,day
    4    YY/MM/DD@HH:MM:SS
    5    MMM DD,YYYY@HH:MM:SS  no space before year,no leading zero on day
    6    MM-DD-YYYY @ HH:MM:SS spaces separate time
    7    MM-DD-YYYY@HH:MM:SS   no leading zeroes on month,day
    letters in the flag
    S    return always seconds
    U    return uppercase month names
    P    return time as am,pm
    D    return only date part
    WRITE AUTHORITY:  @
10.22 TIME TIME;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 18, 1996
  • HELP-PROMPT:  This is Standard MUMPS code for the output of time only.
  • DESCRIPTION:  
    The code stored here will be used to get formatted output of the time part belonging to a FileMan Date/Time value.
    WRITE AUTHORITY:  @
10.3 CARDINAL NUMBER FORMAT CRD;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 08, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to transfer a number in Y to its cardinal equivalent in this language. The code should set Y to the cardinal equivalent without altering any other variables in the environment. Ex. in English:
    Y=2000     becomes         Y=2,000
    Y=1234567  becomes         Y=1,234,567
    WRITE AUTHORITY:  @
10.4 UPPERCASE CONVERSION UC;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 08, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to convert text in Y to its upper-case equivalent in this language. The code should set Y to the external format without altering any other variables in the environment. In English, changes
    abCdeF      to: ABCDEF
    WRITE AUTHORITY:  @
10.5 LOWERCASE CONVERSION LC;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  MAR 08, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
  • DESCRIPTION:  MUMPS code used to convert text in Y to its lower-case equivalent in this language. The code should set Y to the external format without altering any other variables in the environment. In English, changes:
    ABcdEFgHij         to:  abcdefghij
    WRITE AUTHORITY:  @
20.2 DATE INPUT 20.2;E1,245 MUMPS

  • INPUT TRANSFORM:  K:$L(X)>245 X D:$D(X) ^DIM
  • LAST EDITED:  JUL 14, 1994
  • HELP-PROMPT:  This is Standard MUMPS code.
    WRITE AUTHORITY:  @

ICR, Total: 1

ICR LINK Subscribing Package(s) Fields Referenced Description
ICR #6062
  • REGISTRATION
  • PCE PATIENT CARE ENCOUNTER
  • NAME (.01).
    Access: Read w/Fileman

    Info |  Desc |  Pointed To By FileMan Files |  Fields |  ICR |  All