



| TABLE 1 | ||
| Tool Function | Description | Examples |
| Editing | Supports the creation, | An activity object is inserted |
| modification, and deletion of | between two other activity objects | |
| objects, properties, and | in a process object model, and its | |
| relationships in the repository. | duration property is set to 2 hours. | |
| Viewing | Supports the flexible graphical or | The displayed height of a resource |
| textual display of objects and their | might be proportional to its cost | |
| relationships based on properties | property, its displayed width | |
| of these objects and relationships. | proportional to its quantity | |
| Display characteristics include: | available, and its horizontal offset | |
| height, width, color, icon/bitmap, | based on its productivity. | |
| textural labels, screen position, | ||
| etc. | ||
| Validation | Ensures that repository | Ensure that all activities in a |
| information is valid, and/or that | process diagram can be reached | |
| exceptions are as the user | from the start of the process. | |
| intended. | ||
| Analysis | Generates information based on | Sums up the cost of all the activity |
| the static properties of objects. | objects in a process model. | |
| Simulation | Supports the generation of | Model the cashier operations at a |
| information based on statistical | bank, examining tradeoffs | |
| and/or time-varying properties of | between the number of tellers, | |
| a process model, using techniques | how quickly they execute | |
| such as Monte Carlo simulation | transactions, and assumptions of | |
| and Discrete Event simulation. | the arrival statistics of customers. | |
| Navigation | Under user control, execute a | Launch an application by double- |
| computer-based or real-world | clicking on an object at the user's | |
| activity. | display terminal. | |
| Workflow | Under workflow engine (i.e., | Process and route an account |
| automated) control, execute a set | application through application, | |
| of computer-based or real-world | credit verification, and approval | |
| activities structured as a set of | activities. | |
| sequential, parallel, iterative, | ||
| and/or conditional tasks. | ||
| Software Code | Convert an abstract repository | See FIG. 4. |
| Generation | model of a process and its data | |
| model into procedural and/or | ||
| object-oriented software code. | ||
| Software | Convert procedural and/or object- | See FIG. 4. |
| Reverse | oriented software code into a set | |
| Engineering | of process and/or data objects. | |
| TABLE 2 | |||
| Model | Object ID | ||
| 53 | 531 | ||
| 53 | 532 | ||
| 53 | 533 | ||
| 53 | 534 | ||
| 53 | 535 | ||
| 53 | 536 | ||
| 53 | 537 | ||
| 53 | 538 | ||
| 53 | 539 | ||
| 53 | 540 | ||
| 53 | 541 | ||
| 53 | 542 | ||
| TABLE 3 |
| Relationship Table |
| Relationship | From Object | To Object | Relationship | ||
| Model ID | ID | ID | Type | ||
| 53 | 543 | 541 | 531 | ||
| 53 | 544 | 531 | 532 | ||
| 53 | 545 | 532 | 534 | ||
| 53 | 546 | 534 | 536 | ||
| 53 | 547 | 536 | 539 | ||
| 53 | 548 | 539 | 540 | ||
| 53 | 549 | 540 | 542 | ||
| 53 | 550 | 532 | 533 | ||
| 53 | 551 | 533 | 535 | ||
| 53 | 552 | 535 | 537 | ||
| 53 | 553 | 537 | 538 | ||
| 53 | 554 | 538 | 539 | Control Up | |
| TABLE 4 | ||||
| Object or | Property | Property | ||
| Relationship ID | Name | Property Value | ||
| 541 | 0 | |||
| 541 | 0 | 0 | ||
| 541 | 0 | 0 | ||
| 541 | 0 | |||
| 534 | 0 | |||
| 534 | 0 | 1 | ||
| 534 | 0 | 2 | ||
| 534 | 0 | |||
| 534 | 0 | Acquire (1.0, Drills) | ||
| 534 | Enter | 1 | Acquire (1.0, Drill Stations) | |
| 534 | Enter | 2 | Acquire (2.0, Workers) | |
| 534 | 0 | Release (1.0, Drills) | ||
| 534 | Leave | 1 | Release (1.0, Drill Stations) | |
| 534 | Leave | 2 | Release (2.0, Workers) | |
| 534 | 0 | 4.7 | ||
| 534 | Cost | Car | $12.00 | |
| 534 | Cost | Truck | $16.00 | |
| Process, Data Type, and Data | Used to generate sequential or parallel |
| Objects | Procedural Languages, e.g., C, BASIC, |
| PASCAL, or even DOS, JCL, etc. | |
| Process objects are recursively traversed to | |
| generate procedures, data type objects are | |
| recursively translated to generate C | |
| structures, BASIC types, etc. Data objects | |
| are recursively translated to generate data | |
| declaration statements. | |
| Data Type Objects, Data | Used to generate relational Database |
| Objects | Management System Data Definition |
| Language, e.g., SQL (Structured Query | |
| Language) DDL. | |
| Data Type Objects are translated into | |
| relations (i.e., tables). Data Objects are | |
| translated into field names (i.e., column | |
| headers). Properties of data objects are | |
| used to customize the specific data | |
| declaration. For example, the DataType | |
| property can specify an integer, float, | |
| character, constant, or boolean data | |
| element. The Value property can specify | |
| the initial value. The Comment property | |
| can specify a human-readable (and | |
| machine-ignored) comment about the data | |
| element. | |
| Class, Process, Data Type, | Used to generate Object-Oriented |
| and Data Objects | Languages, e.g., C++. |
| Class Objects are containers for Process, | |
| Data Type and Data Objects and are used | |
| to define classes. Process Objects are | |
| recursively translated to generate methods. | |
| Data Objects are translated to generate | |
| public, private, or friend data definitions. | |
| Project Models | Used to generate a variety of computer- |
| “readable” formats, e.g., HTML | |
| (HyperText Markup Language). | |
| Graphical objects and their properties are | |
| used for page layout. A translator then | |
| generates a (text-based) specification | |
| based on object properties. | |
| Graphical Object Name | Generated Code |
| Activity, e.g., assignment, | Statement. The Operand property array is |
| go to | used to populate the statement |
| appropriately. For example, in an | |
| assignment statement, Operand(0) is the | |
| Left Hand Side, Operand(1) is the Right | |
| Hand Side. For languages supporting | |
| multiple assignment, the Operand array is | |
| processed in order. | |
| If, While, Condition, Do | Corresponding procedural language |
| While, Do Until, Case, | statement, e.g., If - Then - Else, Select |
| Switch, Select Case, etc. | Case - Case - End Case. Again, the |
| Control Structure | Operand property array is used to generate |
| the text statement. E.g., in an If statement, | |
| Operand(0) is used as the condition. For a | |
| Select Case structure, multiple operands | |
| can be used for the criteria for each Case | |
| block. | |
| Do All, Do Some Parallel | For a serial procedural target language, |
| Control Structure, with | each row of the structure is visited in turn, |
| Merge, Sync, or Combine at | with serial (not parallel) code generated. |
| end of structure | For a parallel procedural target language, |
| parallel code is generated. | |
| Data Type | Data Types are recursively visited to |
| generate type or structure or relation | |
| declarations. | |
| Data | A data definition is generated for a built-in |
| or user-defined type. Properties such as | |
| Comment, Initial, DataType, Parameters | |
| (e.g., “Static”, “Register”) are used to | |
| round out the definition. | |
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US09/002,360US6339838B1 (en) | 1998-01-02 | 1998-01-02 | Control of commercial processes |
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US09/002,360US6339838B1 (en) | 1998-01-02 | 1998-01-02 | Control of commercial processes |
| Publication Number | Publication Date |
|---|---|
| US6339838B1true US6339838B1 (en) | 2002-01-15 |
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US09/002,360Expired - LifetimeUS6339838B1 (en) | 1998-01-02 | 1998-01-02 | Control of commercial processes |
| Country | Link |
|---|---|
| US (1) | US6339838B1 (en) |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20010032108A1 (en)* | 2000-02-24 | 2001-10-18 | Sieron Russell J. | Process automation system |
| US20020022895A1 (en)* | 2000-03-10 | 2002-02-21 | Genise Ronald G. | System configuration editor with an iconic function sequencer |
| US20030055697A1 (en)* | 2001-09-18 | 2003-03-20 | Macken Thomas E. | Systems and methods to facilitate migration of a process via a process migration template |
| US20030084016A1 (en)* | 2001-10-26 | 2003-05-01 | Resultmaker A/S | Method for generating a workflow on a computer, and a computer system adapted for performing the method |
| US20030106040A1 (en)* | 2001-08-16 | 2003-06-05 | Rubin Michael H. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US20030187826A1 (en)* | 2002-03-28 | 2003-10-02 | Ontario Corporation | Collection system database architecture |
| US20030236677A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casati | Investigating business processes |
| US20030236689A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casati | Analyzing decision points in business processes |
| US20030236691A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casatl | Business processes |
| US20040015378A1 (en)* | 2002-06-21 | 2004-01-22 | Fabio Casati | Semantically investigating business processes |
| US6785880B1 (en)* | 1999-07-29 | 2004-08-31 | International Business Machines Corporation | Tooling framework system and method for code generation |
| US6789251B1 (en)* | 1999-07-28 | 2004-09-07 | Unisys Corporation | System and method for managing a suite of data management tools |
| US20040176980A1 (en)* | 2003-03-07 | 2004-09-09 | Clemens Bulitta | Comprehensive standardized process change management model framework and method for creating customized process model for a healthcare organization using the framework |
| US6839701B1 (en) | 2000-01-21 | 2005-01-04 | International Business Machines | Hitmask for querying hierarchically related content entities |
| US20050055475A1 (en)* | 2003-07-02 | 2005-03-10 | Canon Kabushiki Kaisha | Multi-function peripheral for initiating a workflow process and providing status feedback of the same |
| US20050066287A1 (en)* | 2003-09-11 | 2005-03-24 | Tattrie Scott I. | User-friendly data binding, such as drag-and-drop data binding in a workflow application |
| US20050193377A1 (en)* | 2004-01-29 | 2005-09-01 | Kenji Seto | Method and apparatus for translation of process models to facilitate usage by plural simulation applications |
| US6978228B1 (en)* | 1998-12-18 | 2005-12-20 | Graham Paul Gordon | Method of performing a system reverse engineering process |
| US6986102B1 (en) | 2000-01-21 | 2006-01-10 | International Business Machines Corporation | Method and configurable model for storing hierarchical data in a non-hierarchical data repository |
| US7007034B1 (en) | 2000-01-21 | 2006-02-28 | International Business Machines Corporation | File structure for storing content objects in a data repository |
| US20060070020A1 (en)* | 2004-09-30 | 2006-03-30 | Microsoft Corporation | Method and system for providing cross project commitments |
| US20060095906A1 (en)* | 2004-10-28 | 2006-05-04 | Microsoft Corporation | Methods and apparatus for project management |
| US7043488B1 (en) | 2000-01-21 | 2006-05-09 | International Business Machines Corporation | Method and system for storing hierarchical content objects in a data repository |
| US20060112371A1 (en)* | 2004-11-12 | 2006-05-25 | Microsoft Corporation | Methods and apparatus for estimation of project schedules |
| US7076494B1 (en) | 2000-01-21 | 2006-07-11 | International Business Machines Corporation | Providing a functional layer for facilitating creation and manipulation of compilations of content |
| US7089239B1 (en) | 2000-01-21 | 2006-08-08 | International Business Machines Corporation | Method and system for preventing mutually exclusive content entities stored in a data repository to be included in the same compilation of content |
| US20060242175A1 (en)* | 2005-04-22 | 2006-10-26 | Igor Tsyganskiy | Systems and methods for identifying problems of a business application in a customer support system |
| US20060242194A1 (en)* | 2005-04-22 | 2006-10-26 | Igor Tsyganskiy | Systems and methods for modeling and manipulating a table-driven business application in an object-oriented environment |
| US20060294158A1 (en)* | 2005-04-22 | 2006-12-28 | Igor Tsyganskiy | Methods and systems for data-focused debugging and tracing capabilities |
| US20070088598A1 (en)* | 2005-10-13 | 2007-04-19 | Jogeswar Challapalli | Mechanism for using processlets to model service processes |
| US20070156485A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Modeling user input and interaction in workflow based applications |
| US20070156487A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Object model on workflow |
| US20070156486A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Multiple concurrent workflow persistence schemes |
| US20070156888A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Dynamically repositioning workflow by end users |
| US20070192152A1 (en)* | 2006-02-13 | 2007-08-16 | Itt Manufacturing Enterprises, Inc. | Software phase sequencer editor and method of editing |
| US20070219979A1 (en)* | 2006-03-15 | 2007-09-20 | Searete Llc, A Limited Liability Corporation Of The State Of Delaware | Live search with use restriction |
| US20070245297A1 (en)* | 2006-04-13 | 2007-10-18 | International Business Machines Corporation | Method and a system for modeling business transformation |
| US20070250335A1 (en)* | 2006-01-31 | 2007-10-25 | Brian Hodges | Workflow applications |
| US20070266368A1 (en)* | 2006-05-12 | 2007-11-15 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US20070282692A1 (en)* | 2006-06-05 | 2007-12-06 | Ellis Edward Bishop | Method and apparatus for model driven service delivery management |
| US20070282576A1 (en)* | 2006-06-06 | 2007-12-06 | Butine Thomas J | Enterprise multi-program process development and integration process |
| US20070282659A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | System and Methods for Managing Complex Service Delivery Through Coordination and Integration of Structured and Unstructured Activities |
| US20070282470A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for capturing and reusing intellectual capital in IT management |
| US20070282644A1 (en)* | 2006-06-05 | 2007-12-06 | Yixin Diao | System and method for calibrating and extrapolating complexity metrics of information technology management |
| US20070282622A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for developing an accurate skills inventory using data from delivery operations |
| US20070282942A1 (en)* | 2006-06-02 | 2007-12-06 | International Business Machines Corporation | System and Method for Delivering an Integrated Server Administration Platform |
| US20070283318A1 (en)* | 2006-05-31 | 2007-12-06 | Tack Tong | Method, system, and program product for modeling processes |
| US20070282653A1 (en)* | 2006-06-05 | 2007-12-06 | Ellis Edward Bishop | Catalog based services delivery management |
| US20070282776A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for service oriented collaboration |
| US20070288274A1 (en)* | 2006-06-05 | 2007-12-13 | Tian Jy Chao | Environment aware resource capacity planning for service delivery |
| US7340481B1 (en) | 2000-01-21 | 2008-03-04 | International Business Machines Corp. | Method and system for adding user-provided content to a content object stored in a data repository |
| US7356766B1 (en) | 2000-01-21 | 2008-04-08 | International Business Machines Corp. | Method and system for adding content to a content object stored in a data repository |
| US7386797B1 (en)* | 2002-05-22 | 2008-06-10 | Oracle Corporation | Framework to model and execute business processes within a collaborative environment |
| US7401097B1 (en) | 2000-01-21 | 2008-07-15 | International Business Machines Corporation | System and method for creating compilations of content |
| US20080178092A1 (en)* | 2007-01-18 | 2008-07-24 | Sap Ag | Condition editor for business process management and business activity monitoring |
| US20080215404A1 (en)* | 2006-06-05 | 2008-09-04 | International Business Machines Corporation | Method for Service Offering Comparative IT Management Activity Complexity Benchmarking |
| US20090172633A1 (en)* | 2005-04-22 | 2009-07-02 | Sap Ag | Methods of transforming application layer structure as objects |
| US7613993B1 (en) | 2000-01-21 | 2009-11-03 | International Business Machines Corporation | Prerequisite checking in a system for creating compilations of content |
| US20090319924A1 (en)* | 2006-05-12 | 2009-12-24 | Captaris, Inc. | Workflow data binding |
| US20090328010A1 (en)* | 2008-06-30 | 2009-12-31 | International Business Machines Corporation | System and method for platform-independent, script-based application generation for spreadsheet software |
| US20100070945A1 (en)* | 2003-09-11 | 2010-03-18 | Tattrie Scott I | Custom and customizable components, such as for workflow applications |
| US20100082386A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for finding business transformation opportunities by analyzing series of heat maps by dimension |
| US20100082696A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for inferring and visualizing correlations of different business aspects for business transformation |
| US20100082385A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for determining temperature of business components for finding business transformation opportunities |
| US20100082407A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for financial transformation |
| US20100082387A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for finding business transformation opportunities by using a multi-dimensional shortfall analysis of an enterprise |
| US20100145746A1 (en)* | 2008-12-04 | 2010-06-10 | International Business Machines Corporation | Vertical Process Merging By Reconstruction Of Equivalent Models And Hierarchical Process Merging |
| US7739273B2 (en) | 2006-06-02 | 2010-06-15 | International Business Machines Corporation | Method for creating, executing and searching through a form of active web-based content |
| US20100153915A1 (en)* | 2008-12-12 | 2010-06-17 | Sap Ag | Unique context-based code enhancement |
| US20100211420A1 (en)* | 2009-02-18 | 2010-08-19 | Microsoft Corporation | Converting command units into workflow activities |
| US20100324948A1 (en)* | 2009-06-18 | 2010-12-23 | Microsoft Corporation | Managing event timelines |
| US7895243B1 (en) | 2000-01-21 | 2011-02-22 | International Business Machines Corporation | Method and system for moving content in a content object stored in a data repository |
| US8046708B1 (en)* | 2003-08-07 | 2011-10-25 | The Mathworks, Inc. | Reversed links from graphical diagram representation |
| US8429527B1 (en) | 2005-07-12 | 2013-04-23 | Open Text S.A. | Complex data merging, such as in a workflow application |
| US8468042B2 (en) | 2006-06-05 | 2013-06-18 | International Business Machines Corporation | Method and apparatus for discovering and utilizing atomic services for service delivery |
| US8589777B1 (en) | 2000-01-21 | 2013-11-19 | International Business Machines Corporation | Method and system for calculating cost of a compilation of content |
| US20140330612A1 (en)* | 2013-05-02 | 2014-11-06 | Sap Ag | Validation of Functional Correctness of SAM Schemas including Action Chains |
| US20140330614A1 (en)* | 2013-05-06 | 2014-11-06 | Sap Ag | Validating SAM Schemas Based on Business Functionalities |
| US20150302324A1 (en)* | 2014-04-22 | 2015-10-22 | International Business Machines Corporation | Object lifecycle analysis tool |
| US9354847B2 (en) | 2008-12-29 | 2016-05-31 | Microsoft Technology Licensing, Llc | Interface infrastructure for a continuation based runtime |
| US9536264B2 (en) | 2011-11-14 | 2017-01-03 | Microsoft Technology Licensing, Llc | Host agnostic messaging in a continuation based runtime |
| RU2685980C1 (en)* | 2018-08-24 | 2019-04-23 | Негосударственная автономная некоммерческая организация высшего образования "Институт мировых цивилизаций" | Apparatus for simulating the schedule of employees of an institution |
| US11327877B2 (en) | 2020-05-08 | 2022-05-10 | Microsoft Technology Licensing, Llc | Pipeline performance improvement using stochastic dags |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US5351195A (en)* | 1989-07-24 | 1994-09-27 | The George Group | Method for improving manufacturing processes |
| US5689711A (en)* | 1995-04-21 | 1997-11-18 | Bardasz; Theodore | Method and apparatus for representing data dependencies in software modeling systems |
| US5799193A (en)* | 1996-04-29 | 1998-08-25 | Siemens Corporate Research, Inc. | Scenario based iterative method for development of an object oriented system model |
| US5819270A (en)* | 1993-02-25 | 1998-10-06 | Massachusetts Institute Of Technology | Computer system for displaying representations of processes |
| US5826086A (en)* | 1995-03-17 | 1998-10-20 | Fujitsu Limited | Device and method for aiding designing process of software development |
| US5875333A (en)* | 1996-06-07 | 1999-02-23 | Electronic Data Systems Corporation | Automatically generating source code for relating a dialog interface with a business object in a computing application |
| US5917730A (en)* | 1995-08-17 | 1999-06-29 | Gse Process Solutions, Inc. | Computer implemented object oriented visualization system and method |
| US5930512A (en)* | 1996-10-18 | 1999-07-27 | International Business Machines Corporation | Method and apparatus for building and running workflow process models using a hypertext markup language |
| US5937197A (en)* | 1996-11-06 | 1999-08-10 | Ncr Corporation | Updating of electronic performance support systems by remote parties |
| US5978578A (en)* | 1997-01-30 | 1999-11-02 | Azarya; Arnon | Openbus system for control automation networks |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US5351195A (en)* | 1989-07-24 | 1994-09-27 | The George Group | Method for improving manufacturing processes |
| US5819270A (en)* | 1993-02-25 | 1998-10-06 | Massachusetts Institute Of Technology | Computer system for displaying representations of processes |
| US5826086A (en)* | 1995-03-17 | 1998-10-20 | Fujitsu Limited | Device and method for aiding designing process of software development |
| US5689711A (en)* | 1995-04-21 | 1997-11-18 | Bardasz; Theodore | Method and apparatus for representing data dependencies in software modeling systems |
| US5917730A (en)* | 1995-08-17 | 1999-06-29 | Gse Process Solutions, Inc. | Computer implemented object oriented visualization system and method |
| US5799193A (en)* | 1996-04-29 | 1998-08-25 | Siemens Corporate Research, Inc. | Scenario based iterative method for development of an object oriented system model |
| US5875333A (en)* | 1996-06-07 | 1999-02-23 | Electronic Data Systems Corporation | Automatically generating source code for relating a dialog interface with a business object in a computing application |
| US5930512A (en)* | 1996-10-18 | 1999-07-27 | International Business Machines Corporation | Method and apparatus for building and running workflow process models using a hypertext markup language |
| US5937197A (en)* | 1996-11-06 | 1999-08-10 | Ncr Corporation | Updating of electronic performance support systems by remote parties |
| US5978578A (en)* | 1997-01-30 | 1999-11-02 | Azarya; Arnon | Openbus system for control automation networks |
| Title |
|---|
| Ambriola et al., "Assessing Process-Centered Software Engineering Environments", ACM Transactions on Software Engineering and Methodology, ACM, 1997, pp. 283-328.* |
| Miller et al., "Simulation Modeling within Workflow Technology", Proc. of the 1995 Winter Simulation Conf., ACM, 1995, pp. 612-619.* |
| Rumsey et al., "Unifying tool, data and process flow management", IEEE, 1992, pp. 500-505.* |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6978228B1 (en)* | 1998-12-18 | 2005-12-20 | Graham Paul Gordon | Method of performing a system reverse engineering process |
| US6789251B1 (en)* | 1999-07-28 | 2004-09-07 | Unisys Corporation | System and method for managing a suite of data management tools |
| US6785880B1 (en)* | 1999-07-29 | 2004-08-31 | International Business Machines Corporation | Tooling framework system and method for code generation |
| US7076494B1 (en) | 2000-01-21 | 2006-07-11 | International Business Machines Corporation | Providing a functional layer for facilitating creation and manipulation of compilations of content |
| US7089239B1 (en) | 2000-01-21 | 2006-08-08 | International Business Machines Corporation | Method and system for preventing mutually exclusive content entities stored in a data repository to be included in the same compilation of content |
| US8589777B1 (en) | 2000-01-21 | 2013-11-19 | International Business Machines Corporation | Method and system for calculating cost of a compilation of content |
| US7043488B1 (en) | 2000-01-21 | 2006-05-09 | International Business Machines Corporation | Method and system for storing hierarchical content objects in a data repository |
| US7613993B1 (en) | 2000-01-21 | 2009-11-03 | International Business Machines Corporation | Prerequisite checking in a system for creating compilations of content |
| US7340481B1 (en) | 2000-01-21 | 2008-03-04 | International Business Machines Corp. | Method and system for adding user-provided content to a content object stored in a data repository |
| US7401097B1 (en) | 2000-01-21 | 2008-07-15 | International Business Machines Corporation | System and method for creating compilations of content |
| US7895243B1 (en) | 2000-01-21 | 2011-02-22 | International Business Machines Corporation | Method and system for moving content in a content object stored in a data repository |
| US7007034B1 (en) | 2000-01-21 | 2006-02-28 | International Business Machines Corporation | File structure for storing content objects in a data repository |
| US6986102B1 (en) | 2000-01-21 | 2006-01-10 | International Business Machines Corporation | Method and configurable model for storing hierarchical data in a non-hierarchical data repository |
| US9003282B2 (en) | 2000-01-21 | 2015-04-07 | International Business Machines Corporation | Method and system for managing volumes within a compilation of content |
| US6839701B1 (en) | 2000-01-21 | 2005-01-04 | International Business Machines | Hitmask for querying hierarchically related content entities |
| US7356766B1 (en) | 2000-01-21 | 2008-04-08 | International Business Machines Corp. | Method and system for adding content to a content object stored in a data repository |
| US20010032108A1 (en)* | 2000-02-24 | 2001-10-18 | Sieron Russell J. | Process automation system |
| US7788631B2 (en)* | 2000-02-24 | 2010-08-31 | General Dynamics Advanced Information Systems, Inc. | Process automation system |
| US20020054149A1 (en)* | 2000-03-10 | 2002-05-09 | Genise Ronald G. | System configuration editor with an iconic function sequencer |
| US20020022895A1 (en)* | 2000-03-10 | 2002-02-21 | Genise Ronald G. | System configuration editor with an iconic function sequencer |
| US7010779B2 (en)* | 2001-08-16 | 2006-03-07 | Knowledge Dynamics, Inc. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US20110055681A1 (en)* | 2001-08-16 | 2011-03-03 | Knowledge Dynamics, Inc. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US8209661B2 (en) | 2001-08-16 | 2012-06-26 | Knowledge Dynamics, Inc. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US20030106040A1 (en)* | 2001-08-16 | 2003-06-05 | Rubin Michael H. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US8656348B2 (en) | 2001-08-16 | 2014-02-18 | Knowledge Dynamics, Inc. | Parser, code generator, and data calculation and transformation engine for spreadsheet calculations |
| US20030055697A1 (en)* | 2001-09-18 | 2003-03-20 | Macken Thomas E. | Systems and methods to facilitate migration of a process via a process migration template |
| US6895573B2 (en)* | 2001-10-26 | 2005-05-17 | Resultmaker A/S | Method for generating a workflow on a computer, and a computer system adapted for performing the method |
| US20030084016A1 (en)* | 2001-10-26 | 2003-05-01 | Resultmaker A/S | Method for generating a workflow on a computer, and a computer system adapted for performing the method |
| US20030187826A1 (en)* | 2002-03-28 | 2003-10-02 | Ontario Corporation | Collection system database architecture |
| US7386797B1 (en)* | 2002-05-22 | 2008-06-10 | Oracle Corporation | Framework to model and execute business processes within a collaborative environment |
| US20030236677A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casati | Investigating business processes |
| US7565304B2 (en) | 2002-06-21 | 2009-07-21 | Hewlett-Packard Development Company, L.P. | Business processes based on a predictive model |
| US20030236689A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casati | Analyzing decision points in business processes |
| US20030236691A1 (en)* | 2002-06-21 | 2003-12-25 | Fabio Casatl | Business processes |
| US20040015378A1 (en)* | 2002-06-21 | 2004-01-22 | Fabio Casati | Semantically investigating business processes |
| US7644006B2 (en) | 2002-06-21 | 2010-01-05 | Hewlett-Packard Development Company, L.P. | Semantically investigating business processes |
| US7610211B2 (en) | 2002-06-21 | 2009-10-27 | Hewlett-Packard Development Company, L.P. | Investigating business processes |
| US20040176980A1 (en)* | 2003-03-07 | 2004-09-09 | Clemens Bulitta | Comprehensive standardized process change management model framework and method for creating customized process model for a healthcare organization using the framework |
| US20050055475A1 (en)* | 2003-07-02 | 2005-03-10 | Canon Kabushiki Kaisha | Multi-function peripheral for initiating a workflow process and providing status feedback of the same |
| US7529863B2 (en) | 2003-07-02 | 2009-05-05 | Canon Kabushiki Kaisha | Multi-function peripheral for initiating a workflow process and providing status feedback of the same |
| US9110570B1 (en) | 2003-08-07 | 2015-08-18 | The Mathworks, Inc. | Reversed links from graphical diagram representation |
| US8046708B1 (en)* | 2003-08-07 | 2011-10-25 | The Mathworks, Inc. | Reversed links from graphical diagram representation |
| US20050066287A1 (en)* | 2003-09-11 | 2005-03-24 | Tattrie Scott I. | User-friendly data binding, such as drag-and-drop data binding in a workflow application |
| US9329838B2 (en) | 2003-09-11 | 2016-05-03 | Open Text S.A. | User-friendly data binding, such as drag-and-drop data binding in a workflow application |
| US9342272B2 (en) | 2003-09-11 | 2016-05-17 | Open Text S.A. | Custom and customizable components, such as for workflow applications |
| US20100070945A1 (en)* | 2003-09-11 | 2010-03-18 | Tattrie Scott I | Custom and customizable components, such as for workflow applications |
| US20050193377A1 (en)* | 2004-01-29 | 2005-09-01 | Kenji Seto | Method and apparatus for translation of process models to facilitate usage by plural simulation applications |
| US20060070020A1 (en)* | 2004-09-30 | 2006-03-30 | Microsoft Corporation | Method and system for providing cross project commitments |
| US7496886B2 (en)* | 2004-09-30 | 2009-02-24 | Microsoft Corporation | Method and system for providing cross project commitments |
| US20060095906A1 (en)* | 2004-10-28 | 2006-05-04 | Microsoft Corporation | Methods and apparatus for project management |
| US20060112371A1 (en)* | 2004-11-12 | 2006-05-25 | Microsoft Corporation | Methods and apparatus for estimation of project schedules |
| US20090106075A1 (en)* | 2004-11-12 | 2009-04-23 | Microsoft Corporation | Methods and apparatus for estimation of project schedules |
| US20060242194A1 (en)* | 2005-04-22 | 2006-10-26 | Igor Tsyganskiy | Systems and methods for modeling and manipulating a table-driven business application in an object-oriented environment |
| US7941463B2 (en)* | 2005-04-22 | 2011-05-10 | Sap Ag | Methods of transforming application layer structure as objects |
| US7958486B2 (en) | 2005-04-22 | 2011-06-07 | Sap Ag | Methods and systems for data-focused debugging and tracing capabilities |
| US8539003B2 (en) | 2005-04-22 | 2013-09-17 | Sap Ag | Systems and methods for identifying problems of a business application in a customer support system |
| US20060294158A1 (en)* | 2005-04-22 | 2006-12-28 | Igor Tsyganskiy | Methods and systems for data-focused debugging and tracing capabilities |
| US20090172633A1 (en)* | 2005-04-22 | 2009-07-02 | Sap Ag | Methods of transforming application layer structure as objects |
| US20060242175A1 (en)* | 2005-04-22 | 2006-10-26 | Igor Tsyganskiy | Systems and methods for identifying problems of a business application in a customer support system |
| US8429527B1 (en) | 2005-07-12 | 2013-04-23 | Open Text S.A. | Complex data merging, such as in a workflow application |
| US8645175B1 (en) | 2005-07-12 | 2014-02-04 | Open Text S.A. | Workflow system and method for single call batch processing of collections of database records |
| US7784025B2 (en)* | 2005-10-13 | 2010-08-24 | International Business Machines Corporation | Mechanism for using processlets to model service processes |
| US20070088598A1 (en)* | 2005-10-13 | 2007-04-19 | Jogeswar Challapalli | Mechanism for using processlets to model service processes |
| US7680683B2 (en) | 2005-12-29 | 2010-03-16 | Microsoft Corporation | Dynamically repositioning workflow by end users |
| US20070156888A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Dynamically repositioning workflow by end users |
| US9710773B2 (en) | 2005-12-29 | 2017-07-18 | Microsoft Technology Licensing, Llc | Modeling user input and interaction in workflow based applications |
| US20070156485A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Modeling user input and interaction in workflow based applications |
| US8849691B2 (en) | 2005-12-29 | 2014-09-30 | Microsoft Corporation | Modeling user input and interaction in workflow based applications |
| US20070156487A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Object model on workflow |
| US20070156486A1 (en)* | 2005-12-29 | 2007-07-05 | Microsoft Corporation | Multiple concurrent workflow persistence schemes |
| US20110137702A1 (en)* | 2006-01-31 | 2011-06-09 | Brian Hodges | Workflow applications |
| US8090611B2 (en)* | 2006-01-31 | 2012-01-03 | Open Text S.A. | System, method, and computer program product for enabling workflow applications |
| US20070250335A1 (en)* | 2006-01-31 | 2007-10-25 | Brian Hodges | Workflow applications |
| US20070192152A1 (en)* | 2006-02-13 | 2007-08-16 | Itt Manufacturing Enterprises, Inc. | Software phase sequencer editor and method of editing |
| US8131747B2 (en)* | 2006-03-15 | 2012-03-06 | The Invention Science Fund I, Llc | Live search with use restriction |
| US20070219979A1 (en)* | 2006-03-15 | 2007-09-20 | Searete Llc, A Limited Liability Corporation Of The State Of Delaware | Live search with use restriction |
| US7703071B2 (en)* | 2006-04-13 | 2010-04-20 | International Business Machines Corporation | Method for modeling business transformation |
| US20070245297A1 (en)* | 2006-04-13 | 2007-10-18 | International Business Machines Corporation | Method and a system for modeling business transformation |
| US8261233B2 (en) | 2006-05-12 | 2012-09-04 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US8656352B2 (en) | 2006-05-12 | 2014-02-18 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US20070266368A1 (en)* | 2006-05-12 | 2007-11-15 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US8719773B2 (en) | 2006-05-12 | 2014-05-06 | Open Text S.A. | Workflow data binding |
| US20090007063A1 (en)* | 2006-05-12 | 2009-01-01 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US8181150B2 (en)* | 2006-05-12 | 2012-05-15 | The Mathworks, Inc. | System and method for synchronized workflow management |
| US20090319924A1 (en)* | 2006-05-12 | 2009-12-24 | Captaris, Inc. | Workflow data binding |
| US20070283318A1 (en)* | 2006-05-31 | 2007-12-06 | Tack Tong | Method, system, and program product for modeling processes |
| US7861215B2 (en)* | 2006-05-31 | 2010-12-28 | International Business Machines Corporation | Method, system, and program product for modeling processes |
| US7739273B2 (en) | 2006-06-02 | 2010-06-15 | International Business Machines Corporation | Method for creating, executing and searching through a form of active web-based content |
| US20070282942A1 (en)* | 2006-06-02 | 2007-12-06 | International Business Machines Corporation | System and Method for Delivering an Integrated Server Administration Platform |
| US9110934B2 (en) | 2006-06-02 | 2015-08-18 | International Business Machines Corporation | System and method for delivering an integrated server administration platform |
| US20070282692A1 (en)* | 2006-06-05 | 2007-12-06 | Ellis Edward Bishop | Method and apparatus for model driven service delivery management |
| US20070282776A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for service oriented collaboration |
| US20070282659A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | System and Methods for Managing Complex Service Delivery Through Coordination and Integration of Structured and Unstructured Activities |
| US20070282653A1 (en)* | 2006-06-05 | 2007-12-06 | Ellis Edward Bishop | Catalog based services delivery management |
| US8554596B2 (en)* | 2006-06-05 | 2013-10-08 | International Business Machines Corporation | System and methods for managing complex service delivery through coordination and integration of structured and unstructured activities |
| US8001068B2 (en) | 2006-06-05 | 2011-08-16 | International Business Machines Corporation | System and method for calibrating and extrapolating management-inherent complexity metrics and human-perceived complexity metrics of information technology management |
| US20080215404A1 (en)* | 2006-06-05 | 2008-09-04 | International Business Machines Corporation | Method for Service Offering Comparative IT Management Activity Complexity Benchmarking |
| US20070282644A1 (en)* | 2006-06-05 | 2007-12-06 | Yixin Diao | System and method for calibrating and extrapolating complexity metrics of information technology management |
| US20070282622A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for developing an accurate skills inventory using data from delivery operations |
| US8468042B2 (en) | 2006-06-05 | 2013-06-18 | International Business Machines Corporation | Method and apparatus for discovering and utilizing atomic services for service delivery |
| US20100042620A1 (en)* | 2006-06-05 | 2010-02-18 | International Business Machines Corporation | System and Methods for Managing Complex Service Delivery Through Coordination and Integration of Structured and Unstructured Activities |
| US7877284B2 (en) | 2006-06-05 | 2011-01-25 | International Business Machines Corporation | Method and system for developing an accurate skills inventory using data from delivery operations |
| US20070288274A1 (en)* | 2006-06-05 | 2007-12-13 | Tian Jy Chao | Environment aware resource capacity planning for service delivery |
| US20070282470A1 (en)* | 2006-06-05 | 2007-12-06 | International Business Machines Corporation | Method and system for capturing and reusing intellectual capital in IT management |
| US8204723B2 (en) | 2006-06-06 | 2012-06-19 | The Boeing Company | Enterprise multi-program process development and integration process |
| US20070282576A1 (en)* | 2006-06-06 | 2007-12-06 | Butine Thomas J | Enterprise multi-program process development and integration process |
| US20110153685A1 (en)* | 2006-06-06 | 2011-06-23 | Butine Thomas J | Enterprise multi-program process development and integration process |
| US7917344B2 (en) | 2006-06-06 | 2011-03-29 | The Boeing Company | Enterprise multi-program process development and integration process |
| US8732595B2 (en)* | 2007-01-18 | 2014-05-20 | Sap Ag | Condition editor for business process management and business activity monitoring |
| US20080178092A1 (en)* | 2007-01-18 | 2008-07-24 | Sap Ag | Condition editor for business process management and business activity monitoring |
| US20090328010A1 (en)* | 2008-06-30 | 2009-12-31 | International Business Machines Corporation | System and method for platform-independent, script-based application generation for spreadsheet software |
| US8539444B2 (en) | 2008-06-30 | 2013-09-17 | International Business Machines Corporation | System and method for platform-independent, script-based application generation for spreadsheet software |
| US8175911B2 (en)* | 2008-10-01 | 2012-05-08 | International Business Machines Corporation | System and method for inferring and visualizing correlations of different business aspects for business transformation |
| US9092824B2 (en)* | 2008-10-01 | 2015-07-28 | International Business Machines Corporation | System and method for financial transformation |
| US20100082385A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for determining temperature of business components for finding business transformation opportunities |
| US20100082696A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for inferring and visualizing correlations of different business aspects for business transformation |
| US8145518B2 (en)* | 2008-10-01 | 2012-03-27 | International Business Machines Corporation | System and method for finding business transformation opportunities by analyzing series of heat maps by dimension |
| US20100082386A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for finding business transformation opportunities by analyzing series of heat maps by dimension |
| US20100082407A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for financial transformation |
| US20100082387A1 (en)* | 2008-10-01 | 2010-04-01 | International Business Machines Corporation | System and method for finding business transformation opportunities by using a multi-dimensional shortfall analysis of an enterprise |
| US8359216B2 (en) | 2008-10-01 | 2013-01-22 | International Business Machines Corporation | System and method for finding business transformation opportunities by using a multi-dimensional shortfall analysis of an enterprise |
| US8676627B2 (en)* | 2008-12-04 | 2014-03-18 | International Business Machines Corporation | Vertical process merging by reconstruction of equivalent models and hierarchical process merging |
| US20100145746A1 (en)* | 2008-12-04 | 2010-06-10 | International Business Machines Corporation | Vertical Process Merging By Reconstruction Of Equivalent Models And Hierarchical Process Merging |
| US8707286B2 (en)* | 2008-12-12 | 2014-04-22 | Sap Ag | Unique context-based code enhancement |
| US20100153915A1 (en)* | 2008-12-12 | 2010-06-17 | Sap Ag | Unique context-based code enhancement |
| US9916136B2 (en) | 2008-12-29 | 2018-03-13 | Microsoft Technology Licensing, Llc | Interface infrastructure for a continuation based runtime |
| US9354847B2 (en) | 2008-12-29 | 2016-05-31 | Microsoft Technology Licensing, Llc | Interface infrastructure for a continuation based runtime |
| US20100211420A1 (en)* | 2009-02-18 | 2010-08-19 | Microsoft Corporation | Converting command units into workflow activities |
| US8656346B2 (en) | 2009-02-18 | 2014-02-18 | Microsoft Corporation | Converting command units into workflow activities |
| US20100324948A1 (en)* | 2009-06-18 | 2010-12-23 | Microsoft Corporation | Managing event timelines |
| US9536264B2 (en) | 2011-11-14 | 2017-01-03 | Microsoft Technology Licensing, Llc | Host agnostic messaging in a continuation based runtime |
| US20140330612A1 (en)* | 2013-05-02 | 2014-11-06 | Sap Ag | Validation of Functional Correctness of SAM Schemas including Action Chains |
| US10417594B2 (en)* | 2013-05-02 | 2019-09-17 | Sap Se | Validation of functional correctness of SAM schemas including action chains |
| US20140330614A1 (en)* | 2013-05-06 | 2014-11-06 | Sap Ag | Validating SAM Schemas Based on Business Functionalities |
| US20150302327A1 (en)* | 2014-04-22 | 2015-10-22 | International Business Machines Corporation | Object lifecycle analysis tool |
| US20150302324A1 (en)* | 2014-04-22 | 2015-10-22 | International Business Machines Corporation | Object lifecycle analysis tool |
| US10133996B2 (en)* | 2014-04-22 | 2018-11-20 | International Business Machines Corporation | Object lifecycle analysis tool |
| US10133997B2 (en)* | 2014-04-22 | 2018-11-20 | International Business Machines Corporation | Object lifecycle analysis tool |
| RU2685980C1 (en)* | 2018-08-24 | 2019-04-23 | Негосударственная автономная некоммерческая организация высшего образования "Институт мировых цивилизаций" | Apparatus for simulating the schedule of employees of an institution |
| US11327877B2 (en) | 2020-05-08 | 2022-05-10 | Microsoft Technology Licensing, Llc | Pipeline performance improvement using stochastic dags |
| Publication | Publication Date | Title |
|---|---|---|
| US6339838B1 (en) | Control of commercial processes | |
| Nelson et al. | Foundations and methods of stochastic simulation | |
| US7448024B2 (en) | System and method for software application development in a portal environment | |
| US7184967B1 (en) | System and method utilizing a graphical user interface of a business process workflow scheduling program | |
| US7240297B1 (en) | User assistance system | |
| US20040122699A1 (en) | Method and system for integrating workflow management with business intelligence | |
| JPH11316675A (en) | Computer system | |
| US8527452B2 (en) | Construction of rules for use in a complex event processing system | |
| CN112558967A (en) | Page automatic generation method and device, electronic equipment and storage medium | |
| CN111369227A (en) | User story management method and device in agile development | |
| EP2608019A1 (en) | Customizing a GUI of a MES screen | |
| WO2001093041A2 (en) | System for monitoring and analyzing resource utilization in a computer network | |
| US20060020931A1 (en) | Method and apparatus for managing complex processes | |
| Strelich | The Software Life Cycle Support Environment (SLCSE): a computer based framework for developing software systems | |
| US6938260B1 (en) | Complex data navigation, manipulation and presentation support for visualage Java | |
| US10817811B2 (en) | Methods and apparatus for exposing workflow process definitions as business objects | |
| US20070179642A1 (en) | System and method for interactive process management | |
| KR20010099512A (en) | Automatic method of financial business workflow integration and integration channel workflow on web | |
| KR20010099511A (en) | Develop system of financial business workflow integration and integration channel workflow on web | |
| Bingley et al. | A design platform for the NELSIS CAD framework | |
| Hillston | A tool to enhance model exploitation | |
| CN100541429C (en) | System and method for automatic application development using user guidance | |
| Cooper et al. | Software change information for maintenance management | |
| Behrens | Requirements Analysis Using Statecharts and Generated Scenarios | |
| Acharya | Hostel Management System Project Report |
| Date | Code | Title | Description |
|---|---|---|---|
| AS | Assignment | Owner name:AT&T CORP., NEW YORK Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:WEINMAN, JOSEPH BERNARD, JR.;REEL/FRAME:008928/0304 Effective date:19971230 | |
| STCF | Information on status: patent grant | Free format text:PATENTED CASE | |
| FPAY | Fee payment | Year of fee payment:4 | |
| FPAY | Fee payment | Year of fee payment:8 | |
| REMI | Maintenance fee reminder mailed | ||
| FPAY | Fee payment | Year of fee payment:12 | |
| SULP | Surcharge for late payment | Year of fee payment:11 | |
| FEPP | Fee payment procedure | Free format text:PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY | |
| AS | Assignment | Owner name:AT&T PROPERTIES, LLC, NEVADA Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:AT&T CORP.;REEL/FRAME:031555/0467 Effective date:20131011 | |
| AS | Assignment | Owner name:AT&T INTELLECTUAL PROPERTY II, L.P., GEORGIA Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:AT&T PROPERTIES, LLC;REEL/FRAME:031558/0408 Effective date:20131011 | |
| AS | Assignment | Owner name:BAMPTON TECHNOLOGIES LLC, DELAWARE Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:AT&T INTELLECTUAL PROPERTY II, L.P.;REEL/FRAME:032522/0060 Effective date:20131224 | |
| AS | Assignment | Owner name:AT&T INTELLECTUAL PROPERTY II, L.P., GEORGIA Free format text:CORRECTION TO INCLUDE THE EFFECTIVE DATE OF 6/30/2008 OF THE ASSIGNMENT RECORDED AT 31558/0408 ON 11/7/2013;ASSIGNOR:AT&T PROPERTIES, LLC;REEL/FRAME:032894/0480 Effective date:20131011 Owner name:AT&T PROPERTIES, LLC, NEVADA Free format text:CORRECTION TO INCLUDE THE EFFECTIVE DATE OF 6/30/2008 OF THE ASSIGNMENT RECORDED AT 012345/0123 ON 031555/0467 ON 11/6/2013;ASSIGNOR:AT&T CORP.;REEL/FRAME:032894/0469 Effective date:20131011 |