• Solutions
    • FERC XBRL Reporting
    • FDTA Financial Reporting
    • SEC Compliance
    • Windows Clipboard Management
    • Legato Scripting
  • Products
    • GoFiler Suite
    • XBRLworks
    • SEC Exhibit Explorer
    • SEC Extractor
    • Clipboard Scout
    • Legato
  • Education
    • Training
    • SEC and EDGAR Compliance
    • Legato Developers
  • Blog
  • Support
  • Skip to blog entries
  • Skip to archive page
  • Skip to right sidebar

Friday, February 17. 2017

LDC #22: Working with Path Functions

One of the most obvious statements you can make is you cannot open or modify a file if you cannot get it’s location. If the location of a file cannot be defined, then you can’t do anything to it. Legato provides several very useful functions to break down a file path, add paths together, and just generally improve how you deal with paths.

Continue reading "LDC #22: Working with Path Functions" »
Posted by
Steven Horowitz
in Development at 16:23

Friday, February 10. 2017

LDC #21: Understanding and Processing Errors

In this article, we will be discussing error codes and error processing while making the complex simpler and taking the mystery out of error processing.

Continue reading "LDC #21: Understanding and Processing Errors" »
Posted by
Scott Theis
in Development at 12:46

Monday, February 06. 2017

SEC Reconsiders Pay Ratio Disclosure Implementation

Acting Chairman Michael S. Piwowar released a statement on February 6, 2017 regarding the reconsideration of the SEC’s pay ratio disclosure. Adopted in August 2015, compliance for the rule was delayed for companies until their first fiscal year beginning on or after January 1, 2017. As companies have started the process of implementing systems and controls to process the information needed in the disclosure, the SEC has begun to hear reports of unanticipated compliance difficulties.

Continue reading "SEC Reconsiders Pay Ratio Disclosure..." »
Posted by
The Novaworks Team
in SEC at 17:27

Friday, February 03. 2017

Congress Votes to Stop SEC Anti-corruption Disclosure Rule

On February 3rd, Congress voted to kill the controversial anti-corruption disclosure rule related to reporting requirements for publicly traded commercial oil, natural gas or mineral companies. This rule (Rule 13q-1) would have required all gas, oil, and mineral companies that are publicly traded to disclose the use of conflict minerals and any payments to foreign governments for resource rights via an XBRL exhibit on EDGAR Form SD.

Continue reading "Congress Votes to Stop SEC Anti-corruption..." »
Posted by
The Novaworks Team
in SEC at 14:55

LDC #20: Running a Script From a Command-Line

Like many programs, the GoFiler application can be run from a command-line or shell command. By learning some basics, you can run and control the application directly from a command prompt or shell execute. Further, by using some script code you can do much more than just open a file.

Continue reading "LDC #20: Running a Script From a Command-Line" »
Posted by
Scott Theis
in Development at 10:26

Monday, January 30. 2017

SEC Releases EDGAR 17.0.2

On January 30, 2017, EDGAR 17.0.2 was released by the Securities and Exchange Commission. This release primarily contained updates to add two phase authentication when a filer resets a passphrase. Other changes affect Forms X-17A-5 and X-17A-5/A.

Continue reading "SEC Releases EDGAR 17.0.2" »
Posted by
The Novaworks Team
in EDGAR News, SEC at 09:52

Friday, January 27. 2017

Legato Developers Corner #19: Message Boxes

Whenever you are writing a script, getting information to and from users is always a very important (and often complicated) part. There needs to be a way to notify the user that something has happened or to ask a user a simple question. Legato provides a basic interface for performing these tasks using message boxes.

Continue reading "Legato Developers Corner #19: Message Boxes" »
Posted by
Steven Horowitz
in Development at 11:48

Friday, January 20. 2017

Legato Developers Corner #18: Regular Expressions and Legato

In this blog we will discuss regular expressions and how you can employ them in your Legato scripts to add robust field validation as well as patterned string replacements. Regular expressions are a powerful tool that can be used in many languages so the concepts here can apply to things outside the scope of Legato. There are a few different “flavors” of regular expressions, but Legato uses the ECMAScript standard (very similar to Perl). If you already have a good understanding of regular expressions, you may wish to skip to the “Using Regular Expression in Legato” section.

Continue reading "Legato Developers Corner #18: Regular..." »
Posted by
David Theis
in Development at 13:31

Tuesday, January 17. 2017

SEC To Introduce Two Phase Authentication When Resetting an EDGAR Passphrase

With the upcoming update to the EDGAR System, the SEC plans to introduce two phase authentication when requesting a reset for an EDGAR passphrase. Filers are advised to update their contact information on EDGAR before this change goes into effect.

Continue reading "SEC To Introduce Two Phase Authentication When..." »
Posted by
The Novaworks Team
in EDGAR News, SEC at 10:05

Friday, January 13. 2017

Legato Developers Corner #17: Random Numbers

In this blog, we are going to take a look at the random number functions in Legato and create a real world, usable Legato script to aid in that daily, ever present quandary of what to order for lunch.

Continue reading "Legato Developers Corner #17: Random Numbers" »
Posted by
Joshua Kwiatkowski
in Development at 10:16

Thursday, January 12. 2017

Trump Names Jay Clayton To Lead SEC

On January 4th, 2017, President-elect Donald Trump nominated Jay Clayton as the next chairman of the Securities and Exchange Commission. Clayton is currently a partner at the law firm Sullivan & Cromwell, which works with investment and other Wall Street firms on mergers, acquisitions, and regulatory oversight.

Continue reading "Trump Names Jay Clayton To Lead SEC" »
Posted by
The Novaworks Team
in SEC at 14:21

Monday, January 09. 2017

What To Expect in 2017

There are quite a few changes that SEC filers can expect in the upcoming year. Regulations become effective and compliance dates are set that will have varying degrees of impact on financial and EDGAR reporting. Here’s a quick overview of what you can expect this year from the SEC.

Continue reading "What To Expect in 2017" »
Posted by
The Novaworks Team
in EDGAR News, SEC at 09:40

Friday, January 06. 2017

Legato Developers Corner #16: What Time Is It? Date and Time Functions

Legato has several functions to help manage displaying and tracking time. It might be very useful to know, for example, how long has it been since the last action was performed. Say you want to run a task every five minutes. Well, you need some way to check to see if five minutes has elapsed or not. Additionally, if you want to display time to a user, you need to make sure that the time is displayed in an intelligible format, not just a number of milliseconds seconds since 1970 or something equally useless to anyone except a machine. This article will discuss a few of the functions that simplify this.



Continue reading "Legato Developers Corner #16: What Time Is It?..." »
Posted by
Steven Horowitz
in Development at 17:07

Friday, December 30. 2016

Legato Developers Corner #15: String Testing and Translation

This week we will be covering scanning, testing, and some functions for manipulating textual string data.

Continue reading "Legato Developers Corner #15: String Testing..." »
Posted by
Scott Theis
in Development at 21:04

Friday, December 23. 2016

Legato Developers Corner #14: Processing Parameters with Strings and Arrays

This week we will be examining how to use SDK functions to read and write structured “parameter-value” pairs and how they can be used to access information from menu functions. Our main example will show how to open a file in the application desktop, perform EDGAR validation and get the results.

Continue reading "Legato Developers Corner #14: Processing..." »
Posted by
Scott Theis
in Development at 11:53
« previous page   (Page 95 of 102, totaling 1525 entries) next page »

Quicksearch

Categories

  • XML Accounting
  • XML AICPA News
  • XML FASB News
  • XML GASB News
  • XML IASB News
  • XML Development
  • XML Events
  • XML FERC
  • XML eForms News
  • XML FERC Filing Help
  • XML Filing Technology
  • XML Information Technology
  • XML Investor Education
  • XML MSRB
  • XML EMMA News
  • XML FDTA
  • XML MSRB Filing Help
  • XML Novaworks News
  • XML GoFiler Online Updates
  • XML GoFiler Updates
  • XML XBRLworks Updates
  • XML SEC
  • XML Corporation Finance
  • XML DERA
  • XML EDGAR News
  • XML Investment Management
  • XML SEC Filing Help
  • XML XBRL
  • XML Data Quality Committee
  • XML GRIP Taxonomy
  • XML IFRS Taxonomy
  • XML US GAAP Taxonomy

Calendar

Back July '25 Forward
Mo Tu We Th Fr Sa Su
Wednesday, July 23. 2025
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      

Feeds

  • XML
Sign Up Now
Get SEC news articles and blog posts delivered monthly to your inbox!
Based on the s9y Bulletproof template framework

Compliance

  • FERC
  • EDGAR
  • EMMA

Software

  • GoFiler
  • SEC Exhibit Explorer
  • SEC Extractor
  • XBRLworks
  • Legato Scripting

Company

  • About Novaworks
  • News
  • Site Map
  • Support

Follow Us:

  • LinkedIn
  • YouTube
  • RSS
  • Newsletter
  • © 2025 Novaworks, LLC
  • Privacy
  • Terms of Use
  • Trademarks and Patents
  • Contact Us