Syzcmd/Z Version 8 Installation and Users Guide.Pdf

Total Page:16

File Type:pdf, Size:1020Kb

Syzcmd/Z Version 8 Installation and Users Guide.Pdf Syzygy Incorporated SyzCMD/z Version 8 [Version 8.8.0] December 23, 2019 [Installation and User’s Guide] Complete on-demand script based system automation facility SyzCMD/z - Installation and User’s Guide Page i SyzCMD/z Version 8 Revision History Version Date Revision Description 8.8 12/23/2019 Major change to IF DOW to allow multiple days and also changed the operand that allows the week that the day falls into to be specified, (i.e. -first SUNday, -second Tuesday , etc.) Added most of the known world-wide SMS text addresses for most (but probably not all) Cell providers. Added support for checking that SyzEMAIL/z is active before any email that might require special processing (i.e. that uses email groups, etc.) to be created. 8.7 2/19/2018 Added ability to check if tape drives are online or offline as well as the ability to check what VOLSER is mounted on the tape drive(s) Added the ability to pause the execution of a script via an operator command “F TASKNAME,HOLD” or “F TASKNAME,PAUSE”, where TASKNAME is the name of the JOB or the TASKID of the STC that is running the script. Once HELD, the task will issue a WTOR asking to reply “GO” when ready to continue. The task will remain paused until either “GO”, “STOP” or “KILL” is received. Go continues the task where it left off, STOP will end the task when the current command completes (but will cause a CC=12). “KILL” will end the task before the next command script command is accepted, and will cause the task to end with CC=99. Added the ability to stop the script task at any time via “F TASKNAME,STOP”. This will allow the current command to complete and will stop the task before the next command is read from the script. The task will receive a CC=12 step code. Added the ability to KILL the script at any time via “F TASKNAME,KILL”. This will immediately KILL the script before the next script command is executed. The task will receive a CC=99. If a task is in “HOLD” status, (i.e. the operator issued a “F TASKNAME,HOLD”, you can “stack” other commands into the buffer. Currently only “HOLD”, “KILL” and “STOP” may be stacked. Added LOOPCHK and LOOPCHEKC command. This command turns of the default GOTO loop checking within a script. This frees the site from the necessity to use “GOTO ++RESET” when creating a loop within the script on purpose. Added new parameter to the PAUSE command of “LONG or FOREVER”. Either sub-parameter will issue a WTOR to the console SyzCMD/z - Installation and User’s Guide Page ii SyzCMD/z Version 8 and PAUSE the script until the WTOR is replied to. Replies can be “GO” to continue, or “STOP” or “QUIT” to end the script. To skip to the “next day” in a script, you can now PAUSE UNTIL 24:00, which will (just) AFTER midnight local time. You can do this any number of times to skip a day each time. Fixed a problem where if the site didn’t include a //INTRDR DD card that a SUBMIT command would fail and get a S0c1 because the INTRDR was not open. The new code will dynamically add the DD if not provided in the task’s JCL 8.6.1 08/15/2017 Add ability to dynamically change the STC TASKID (STCID) to make it easier to deal with multiple SyzCMD/z tasks running at the same time. It can also be displayed via &STCID Added &SCRDSN which shows the dataset that the script was being executed from (or inline of DD *) Added &SCRALL which shows the dataset and member name of the script, (or INLINE if DD *) Fixed &SCRIPT to show the member name (or INLINE if DD *) Added INTerruptible option to PAUSE command to allow all pauses (both UNTIL and for an amount of time) to be SKIPped or to allow the script to be STOPped during the pause. All variables can be used in IF statements. i.e. instead of IFTASKNAME = CICS001 you could use IF &TASKANME = CICS001 Any variable (valid variables start with ampersand, “&”), can be used in this way. The email related TO: and FROM: commands have been changed so that they can be used both within and outside of the EMAIL portion of a script. You can compare and set them before (or during) the email creation. Previously, they could not be used unless you actually had started to generate the email in the script. BEFORE and AFTER no longer require leading zero for times before 10am, i.e. BEFORE 09:00 can be used as BEFORE 9:00. TASKTYPE is now an alias of MYTYPE or TYPE to make using the command easier (to understand). When a log file (files that can be used to write data to during script execution) is opened and closed, the dataset name is displayed as well as the number of lines/records added to the dataset. It was noticed that SyzCMD/z sometimes executes so fast that the times of the consequences of the commands can be before SyzCMD/z - Installation and User’s Guide Page iii SyzCMD/z Version 8 the command appears to have been issued. Timings will no longer be rounded for some items, and the actual time will be kept (internally) to 4 decimals HH:MM:SS.nnnn If a script ends without reaching an ENDIF command, the return code is set to “4” to denote a low impact script programming error. 8.6 12/17/2016 Version 8.6 adds support for console message monitoring. This feature is not meant to replace the much more comprehensive console message monitoring features of SyzMPF/z, but it does allow the SyzCMD/z scripts the ability to interactively process all of the console messages generated while the script is running. New Internal Commands in 8.6: • MSGSTR – allows scanning of all console/syslog messages to find a specific (case sensitive) “string” within that message. There are controls to scan the ENTIRE message or simply beginning in a specific column of the console/syslog message. At the completion of this command the first 50 words of the message found are available as variables within the script and can be used at any time. • MSGWORDS – allows scanning of all console/syslog messages to find a specific set of words (up to 6 case sensitive words) within the console/syslog message. The words may appear in any order, but all words identified MUST appear somewhere in the message. At the completion of this command the first 50 words of the message found are available as variables within the script and can be used at any time. • MSGWORD – same as MSGWORDS except that it looks for a specific Message text (case sensitive) word in a specific place within the message, i.e. a message that the third word is ‘FRED’. At the completion of this command the first 50 words of the message found are available as variables within the script and can be used at any time. The same word position can be checked for multiple alternate words (up to 6). • IFSTR – (If String) Works the same as MSGSTR (above), but allows the use of the IF/THEN/ELSE logic of the SyzCMD/z scripts. At the completion of this command the first 50 words of the message found are available as variables within the script and can be used at any time. • IFWORDS – (If WORDS) works the same as MSGWORDS (above), but allows the use of IF/THEN/ELSE logic of the SyzCMD/z scripts. At the completion of this command the first 50 words of the message found are available as variables within the script and can be used at any time. • IFWORD – If individual WORD) works the same as MSGWORD (above), but allows the use of IF/THEN/ELSE logic of the SyzCMD/z scripts. At the completion of this SyzCMD/z - Installation and User’s Guide Page iv SyzCMD/z Version 8 command the first 50 words of the message found are available as variables within the script and can be used at any time. The same word position can be checked for multiple alternate words (up to 6). • ACTCONS – Activates an internal console of the specified name (as a parm of this command), so that SyzCMD/z can monitor the generated messages for use by the above new commands. • DEACTIVATE CONSOLE – deactivates the console that was activated via the (above) ACTCONS command. • &W0-49 – variables that are filled with the first 50 words of the console message located via one of the new console message processing commands. Words are numbered relative to zero (being the first word). &W0 is normally the message number for “normal” messages, operator commands that are scanned will not normally have message numbers so &W0 will be the first word they typed at the console. • &WORD variable is set to the word in the Message that matched the requested position within the message and is set by the “IF WORD” and “MSG WORD” command requests. • &STR and &STRING variables are set to the string that matched the requested position within the message processed and is set by the “IF STR” IF STRING” “MSG STR” and “MSG STRING” command requests. • The PAUSE command has been enhanced to allow the generated information message on the task waiting to be “other” then the default HIGHLIGHTED. It can be Low or not displayed at all with the new feature.
Recommended publications
  • SMS) Transit Via SMS Gateways
    Carriers providing Short Message Service (SMS) transit via SMS gateways. This list explains which email address to use if one wants to send an email and have it arrive as a text message on someone's phone. The number must contain no punctuation. For instance, to send to a number typically expressed in the United States as 987-555-0100, one would email 9875550100@SMS- gateway. Some carriers have multiple gateways. The SMS gateway refers to Short Message Services which are capable of transmitting plain text messages only. MMS refers to "Multimedia Messaging Services" which are generally capable of carrying messages which include text, pictures and audio [email protected] (SMS), [email protected] (MMS) (Note: AT&T Mobility United States This gateway fails to handle complete phone numbers; the country code must be omitted, leaving only the ten-digit NANP number.) [email protected] AT&T Mobility (formerly [email protected] United States Cingular) [email protected] [email protected] AT&T Enterprise Paging United States [email protected] AT&T Global Smart Messaging United States [email protected] Suite - Powered By Soprano BellSouth United States [email protected] [email protected] (SMS) Bluegrass Cellular United States [email protected] (MMS) Global Telematic Solutions, LLC • PO Box 269 • Meridian, ID 83680 • Tel 855-487-9679 • Fax 855-487-9680 www.gtsfleet.com [email protected] (SMS) Boost Mobile United States [email protected] (MMS) Cellcom United States
    [Show full text]
  • Funding for the Telecommunications Relay
    COMMONWEALTH OF KENTUCKY BEFORE THE PUBLIC SERVICE COMMISSION In the Matter of: FUNDING FOR THE TELECOMMUNICATIONS ) CASE NO. RELAY SERVICE ) 2017 -00358 ORDER On September 14, 2017, the Commission issued an Order in this proceeding requiring that the Telecommunications Relay Service ("TRS") fund surcharge be reduced by one cent ($0.01) to one cent ($0.01) per month effective January 1, 2018. In addition, the Commission established a deadline to receive comments regarding a frequency schedule for the Commission to review the TRS fund and related surcharge in the future. The Commission received no comments. The Commission finds that it will conduct a formal review of the TRS fund and the surcharge on an annual basis. Annual reviews of the TRS fund should reduce the potential for large balance shortfalls and overages. Annual reviews will commence approximately 120 days from the end of the calendar year, with the goal of implementing any changes on the first day of the following calendar year. The goal would also be to issue an order within 60 days of the initiation of the annual review so that providers will have ample time to implement any changes, if ordered. These annual formal reviews would be in addition to ongoing monitoring and would not prevent the Commission from making any changes in the interim period. IT IS THEREFORE ORDERED that: 1. The Commission annually will conduct a fo rmal review of the TRS fund to determine if a change in the surcharge is warranted. 2. This case is closed and removed from the Commission's docket.
    [Show full text]
  • YSI Aquaviewer II App Installation Instructions
    for Aquaculture and Aquatic Life Support Systems August, 2017 Directions for Installation Below are the instructions on how to purchase and install the YSI AquaViewer II app. Data subscriptions are required and can be purchased on YSI.com for customers based in the USA. Customers in other countries will need to submit a Purchase Order for a 1-year subscription to YSI and YSI will bill the customer on a monthly basis. 1) Go to YSI.com and click "Login"at the top right corner, or "Register", if you need to create a new account. Note: You will need to log in to purchase an AquaViewer II subscription. The username and password created on YSI.com will be used as the ID and password for the main AquaViewer II account. 2) After logging in, go to YSI.com/AquaViewerII to purchase a subscription. The subscription will be based on the number of instruments you will want to access with the AquaViewer II app. 3) After your selection is made, click on "Add to Cart". This will bring you to your Shopping Cart. Make sure everything is correct and click on "Checkout", circled below. ©2017 YSI, a Xylem brand +1 937 767 7241 @YSIinc [email protected] ysi.com 0817 T630 4) Enter your payment information and billing address. Click "Continue" and review order. Click "Place Order" if it is correct. Note: Your order is auto saved as a monthly recurring order and your credit card will be charged monthly. 5) Go to https://YSIAquaViewer.com and log into the AquaViewer II website.
    [Show full text]
  • ZONE COUNTRIES OPERATOR TADIG CODE Calls
    Calls made abroad SMS sent abroad Calls To Belgium SMS TADIG To zones SMS to SMS to SMS to ZONE COUNTRIES OPERATOR received Local and Europe received CODE 2,3 and 4 Belgium EUR ROW abroad (= zone1) abroad 3 AFGHANISTAN AFGHAN WIRELESS COMMUNICATION COMPANY 'AWCC' AFGAW 0,91 0,99 2,27 2,89 0,00 0,41 0,62 0,62 3 AFGHANISTAN AREEBA MTN AFGAR 0,91 0,99 2,27 2,89 0,00 0,41 0,62 0,62 3 AFGHANISTAN TDCA AFGTD 0,91 0,99 2,27 2,89 0,00 0,41 0,62 0,62 3 AFGHANISTAN ETISALAT AFGHANISTAN AFGEA 0,91 0,99 2,27 2,89 0,00 0,41 0,62 0,62 1 ALANDS ISLANDS (FINLAND) ALANDS MOBILTELEFON AB FINAM 0,08 0,29 0,29 2,07 0,00 0,09 0,09 0,54 2 ALBANIA AMC (ALBANIAN MOBILE COMMUNICATIONS) ALBAM 0,74 0,91 1,65 2,27 0,00 0,41 0,62 0,62 2 ALBANIA VODAFONE ALBVF 0,74 0,91 1,65 2,27 0,00 0,41 0,62 0,62 2 ALBANIA EAGLE MOBILE SH.A ALBEM 0,74 0,91 1,65 2,27 0,00 0,41 0,62 0,62 2 ALGERIA DJEZZY (ORASCOM) DZAOT 0,74 0,91 1,65 2,27 0,00 0,41 0,62 0,62 2 ALGERIA ATM (MOBILIS) (EX-PTT Algeria) DZAA1 0,74 0,91 1,65 2,27 0,00 0,41 0,62 0,62 2 ALGERIA WATANIYA TELECOM ALGERIE S.P.A.
    [Show full text]
  • The Town of Willington's Permitting System Requires Applicants to Have
    Town of Willington Land Use and Building Department Willington Town Office Building 40 Old Farms Road Willington, CT 06279 The Town of Willington’s permitting system requires applicants to have a valid email address to apply for permits, receive approvals and other permit documents. This is also the primary contact point for communicating to an applicant regarding building inspections or additional information needed during the permit review process. This email address not only allows the applicant to communicate directly with department staff, but it also allows Town staff to transmit permit documents, approvals and certificates directly to the applicant. The Town of Willington does not mail paper copies of permit approvals and/or certificates. If you do not have an email address, but do have a mobile phone that is capable of receiving text messages, that can be used in lieu of a traditional email address.. Every wireless carrier in America allows emails to be sent as text messages to a mobile phone (standard text messaging rates will apply). The only information you need is the phone number and the wireless carrier. The mobile email address for each carrier is listed below: T-Mobile [10-digit phone number]@tmomail.net Example: [email protected] AT&T Wireless (formerly Cingular) [10-digit phone number]@txt.att.net Example: [email protected] Verizon [10-digit-number]@vtext.com Example: [email protected] Boost Mobile [10-digit phone number] @sms.myboostmobile.com Example: [email protected] Cricket Wireless [10-digit phone number]@sms.mycricket.com Example: [email protected] Town of Willington Land Use and Building Department Willington Town Office Building 40 Old Farms Road Willington, CT 06279 Sprint [10-digit phone number]@messaging.sprintpcs.com Example: [email protected] Tracfone or Straight Talk The address varies.
    [Show full text]
  • Annual Statistical Report
    ANNUAL STATISTICAL REPORT Statistical Data on Public Utilities in West Virginia Source: Annual Reports Submitted To The Public Service Commission Of West Virginia ______________________________ Condition at the Close of Year Ended December 31, 2018 or as Otherwise Noted Compiled by: Kathryn Stalnaker, Executive Secretary Division Annual Reports Section – 11/15/2019 WEST VIRGINIA PUBLIC SERVICE COMMISSION 2018 ANNUAL REPORT STATISTICS FISCAL YEAR 07/01/17 - 06/30/18 CALENDAR YEAR 01/01/18 - 12/31/18 TABLE OF CONTENTS Page Number List of Utilities ............................................................................................ 5 – 25 Utilities Summary ............................................................................................ 26 - - - - - - - - - - - - - - - - - - -- - - - Type of Utilities - - - - - - - - - - - - - - - - - - - - - - - - Telephone Companies ....................................................................... 27 - 29 Electric Companies ............................................................................ 30 - 36 Gas Companies .................................................................................. 37- 39 Water Utilities: Privately Owned ................................................................................... 40 Publicly Owned - Municipals ......................................................... 41 - 45 Publicly Owned - Districts ............................................................ 46 - 49 Associations and Authorities.............................................................
    [Show full text]
  • PUERTO RICO II!!JJI/I/8III' VERDE~ Table 1 Certified Carriers1
    ESTADO LIBREASOCIADO DE PUERTO RICO JUNTA REGLAMENTADORA DE TELECOMUNICACIONES DE PUERTO RICO Oficina de Ia Presidenta September 28, 2012 Marlene H. Dortch Office of the Secretary Federal Communications Commission 445 1ih Street, SW Washington, DC 20554 Karen Majcher Vice President, High Cost and Low Income Division Universal Service Administrative Company 2000 L Street, NW, Suite 200 Washington, DC 20036 Re: WC Docket No. 10-90 Annual State Certification of Support Pursuant to 47 C.F.R. §54.314 To Whom It May Concern: The Telecommunications Regulatory Board of Puerto Rico hereby certifies to the Federal Communications Commission and the Universal Service Administrative Company that the telecommunications carriers listed below in Table 1 are eligible to receive federal high­ cost support for the program years cited. Specifically, the Telecommunications Regulatory Board of Puerto Rico certifies for the carriers listed, that all federal high-cost support provided to such carriers within Puerto Rico was used in the preceding calendar year (2011) and will be used in the coming calendar year (2013) only for the provision, maintenance, and upgrading of facilities and services for which the support is intended. 500 AVE. ROBERTO H. TODD (PDA.l8 SANTURCE) SAN JUAN, P.R. 00907-3941 PUERTO RICO II!!JJI/I/8III' VERDE~ Table 1 Certified Carriers1 Study Area Name Study Area Code PRTC- Central (PRTC) 633200 Puerto Rico Tel Co (PRTC) 633201 Centennial Puerto Rico Operations Corp. (AT&T) 639001 Suncom Wireless Puerto Rico Operating Co. LLC 639003 (T-Mobile) Cingular Wireless (AT&T) 639005 Puerto Rico Telecom Company D/B/A Verizon 639006 Wireless Puerto (Claro) PR Wireless Inc.
    [Show full text]
  • As Filed with the Securities and Exchange Commission on February 27, 2009
    As filed with the Securities and Exchange Commission on February 27, 2009 UNITED STATES SECURITIES AND EXCHANGE COMMISSION Form 20-F ý ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 For the fiscal year ended December 31, 2008 Commission file number 001-14540 Deutsche Telekom AG (Exact Name of Registrant as Specified in its Charter) Federal Republic of Germany (Jurisdiction of Incorporation or Organization) Friedrich-Ebert-Allee 140, 53113 Bonn, Germany (Address of Registrant’s Principal Executive Offices) Guido Kerkhoff Deutsche Telekom AG Friedrich-Ebert-Allee 140, 53113 Bonn, Germany +49-228-181-0 [email protected] (Name, Telephone, E-mail and/or Facsimile number and Address of Company Contact Person) Securities registered or to be registered pursuant to Section 12(b) of the Act: Title of each class Name of each exchange on which registered American Depositary Shares, each representing New York Stock Exchange one Ordinary Share Ordinary Shares, no par value New York Stock Exchange* Securities registered or to be registered pursuant to Section 12(g) of the Act: NONE (Title of Class) Securities for which there is a reporting obligation pursuant to Section 15(d) of the Act: NONE (Title of Class) Indicate the number of outstanding shares of each of the issuer’s classes of capital or common stock as of the close of the period covered by the annual report: Ordinary Shares, no par value: 4,361,319,993 (as of December 31, 2008) Indicate by check mark if the registrant is a well-known seasoned issuer, as defined in Rule 405 of the Securities Act.
    [Show full text]
  • Best Unlimited No Contract Cell Phone Service
    Best Unlimited No Contract Cell Phone Service Unthankful James lecture dogmatically. Marmaduke is shiniest and decreased fanatically while subcalibre Dawson overawed and induing. Bjorn regenerates primitively while best-ball Mel affixes eminently or unclogging qualmishly. T-Mobile Essentials Best cheap major carrier unlimited data from Mint Mobile Unlimited Plan Best cheap prepaid unlimited data plan Metro by T-Mobile 60 Unlimited Best cheap unlimited family are Visible 40 Unlimited Plan Best cheap unlimited plan so great coverage. Look trump AT&T Sprint T-Mobile and Verizon for mobile. Unlimited Data No Throttling Sim Card. Unlimited data plans are a mess of's how to pick the best. Best Overall Metro by T-Mobile The increase overall rates for prepaid subscribers across the actually Best Unlimited Boost Mobile Unlimited talk with and data. Tello offers coast-to-coast wireless coverage inside a top nationwide GSM network. The Best Cheap Phone Plans for 2021 PCMag. AT T Verizon T-Mobile and Cricket all Have Unlimited Data Plans This. Flexible cell phone plans with unlimited talk via text along at just 15 and here pay anyone the 4G LTE data. Total Wireless Service Plan TracFone Wireless. Find the latest phones and no-contract plans from Straight space with unlimited talk button and data prior the nation's largest most dependable 4G LTE networks. Choosing between business mobile plans and carriers for your escape business. Choosing Between a Prepaid and score Cell data Plan. Compare your current need to Spectrum Mobile and see how wet you an save. Aarp cell phone service and change at consumer cellular device or debit card from the sim included unlimited no cell phone contract service.
    [Show full text]
  • Annual Statistical Report
    ANNUAL STATISTICAL REPORT Statistical Data on Public Utilities in West Virginia Source: Annual Reports Submitted To The Public Service Commission Of West Virginia ______________________________ Condition at the Close of Year Ended December 31, 2019 or as Otherwise Noted Compiled by: Kathryn Stalnaker, Executive Secretary Division Annual Reports Section – 11/16/2020 WEST VIRGINIA PUBLIC SERVICE COMMISSION 2019 ANNUAL REPORT STATISTICS FISCAL YEAR 07/01/18 - 06/30/19 CALENDAR YEAR 01/01/19 - 12/31/19 TABLE OF CONTENTS Page Number List of Utilities ............................................................................................ 5 – 26 Utilities Summary ............................................................................................ 27 - - - - - - - - - - - - - - - - - - -- - - - Type of Utilities - - - - - - - - - - - - - - - - - - - - - - - - Telephone Companies ....................................................................... 28 - 30 Electric Companies ............................................................................ 31 - 37 Gas Companies .................................................................................. 38- 40 Water Utilities: Privately Owned ................................................................................... 41 Publicly Owned - Municipals .............................................................. 42 - 46 Publicly Owned - Districts ............................................................ 47 - 50 Associations and Authorities ............................................................
    [Show full text]
  • Wireless Service Providers
    Wireless Service Provider Listing as of 3/20/2019 ALLIANT TECHNOLOGIES, LLC BETH BRANDENSTEIN ATTORNEY IN FACT 360 MOUNT KEMBIE AVE., MORRISTOWN, NJ 07960 ALLTEL CORPORATION dba VERIZON WIRELESS DAVID MAHIDA VP-TAX ONE VERISONWAY, MAIL STOP: VC53S309D, BASKING RIDGE, NJ 07920 ANDERSON CELLULAR TELEPHONE CO dba VERIZON WIRELESS ROBERT MUTZENBACK ASST. SECRETARY ONE VERIZON WAY, MAIL CODE: VC53 S 460, BASKING RIDGE, NJ 07920 BLUE CASA MOBILE, LLC NANCY FORD REGULATORY OFFICER 114 E HALEY STR, STE A, SANTA BARBARA, CA 93101 BOMMERANG WIRELESS LLC dba ENTOUCH WIRELESS JIM BALVANZ 955 KACENA RD. STE A, HIAWATHA, IA 52233 CAMPUS SIMS, INC MARY ANNE SQUILLACE CAUSE BASED COMMERCE, INC dba THE SIENNA GROUP DAVID CONDIT PRESIDENT 8111 CHEVIOT RD, STE 201, CINCINNATI, OH 45247 CELLCO PARTNERSHIP dba VERIZION WIRELESS ROBERT MUTZENBACK ASST. SECRETARY ONE VERIZON WAY, MAIL CODE: VC53 S 460, BASKING RIDGE, NJ 07920 CHARLESTON-NORTH CHARLESTON MSA LIMITED PARTNERSHIP dba VERIZON WIRELESS ROBERT MUTZENBACK ASST. SECRETARY ONE VERIZON WAY, MAIL CODE: VC53 S 460, BASKING RIDGE, NJ 07920 CHESTER TELEPHONE CO. dba TRUVISTA ERIC RAMEY SR. DIRECTOR ADMINISTRATION P O BOX 160, CHESTER SC 29706 COMCAST OTR1, LLC DAVID KONUCH VP GOVERNMENT & REGULATORY AFFAIRS 1701 JFK BLVD., ONE COMCAST CENTER, PHILADELPHIA, PA 19103 CONSUMMER CELLULAR, INC. JILL LEONETTI TREASURER 12447 SW 69TH AVE., PORTLAND, OR 97223 CRICKET WIRELESS JANE SOSEBEE DIRECTOR 1010 N ST. MARYS, #9P07, SAN ANTONIO, TX 78215 EXCELLUS COMMUNICATIONS, LLC MICHAEL J STRANDELL CEO 160 S LAKE DR., WATERTOWN, SD 57201 FAIRFIELD COMMUNICATIONS dba TRUVISTA ERIC RAMEY SR. DIRECTOR ADMINISTRATION P O BOX 160, CHESTER SC 29706 FURRION, LLC MATT PETRILL CEO 52567 INDEPENDENCE CT, ELKHART, IN 46514 GARMIN USA INC JOSH MAXFIELD ASSOC.
    [Show full text]
  • Before the FEDERAL COMMUNICATIONS COMMISSION Washington, DC 20554 in the Matter of ) ) América Móvil, S.A.B De C. V., Transfe
    Before the FEDERAL COMMUNICATIONS COMMISSION Washington, DC 20554 In the Matter of ) ) América Móvil, S.A.B de C. V., Transferor, ) ) and ) ) IB File No. ITC-T/C-20200930-00173 Verizon Communications, Inc., Transferee, ) ) Application for Consent to Transfer Control of ) TracFone Wireless, Inc. Pursuant to Section 2014 ) of the Communications Act of 1934, as Amended ) ) Opposition to Petition for Streamlining and Motion to Dismiss Application as Incomplete of Communications Workers of America Brian Thorn Maurice E. Stucke Senior Researcher Konkurrenz [email protected] 5335 Wisconsin Ave., NW Suite 440 Nell Geiser Washington, DC 20015 Director of Research [email protected] [email protected] (202) 644-9760 Communications Workers of America Counsel for Communications 501 Third Street, NW Workers of America Washington, DC 20001 (202) 434-1131 November 16, 2020 Introduction The Communications Workers of America (CWA) submits these comments in opposition to the request of Verizon Wireless, Inc. (“Verizon”) and TracFone Wireless, Inc. (“TracFone”) (collectively, “Applicants”) for streamlined treatment of their application for a proposed transaction that would fundamentally impact both the wireless industry and the market for Lifeline services.1 Applicants propose a $7 billion transaction under which the largest facilities- based provider of mobile wireless services in the United States would acquire the fourth largest provider of wireless services by subscribership. CWA represents private and public sector employees who
    [Show full text]