SlideShare a Scribd company logo
Agados-defined Application : Design & Configure Demo 
New Function Building & Debugging, Function Configure 
Design Demo Revision: 2014.11.23 
Template Revision:20131025 v2.0
Ⓒ2014 agados All rights reserved. 
2 
Design & Configure Demo 
Structure of this presentation 
Debugging Function 
•Tracing through various view of flow 
•Viewing Flow Diagram 
Configuring Function 
•Add Column on List of Customer 
•Modify Objects 
Building New Function 
•New Function Building for ‘Customer Searching’ 
•Create Objects 
Handling of Customer Information. 
Building/Configuring New Function 
•New Function Building for ‘Customer Registering’ 
•Create Objects 
•Add Column on Form of ‘Customer Registering’ 
•Modify Objects
Ⓒ2014 agados All rights reserved. 
3 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Object Type 
Descriptions 
Create Objects 
Form 
Customer Information Screen for Searching. 
Object Name 
CustListForm 
Object 
Perform query and transmission result values. Performed in Server-side. 
CustListObject 
Event Object 
Define logic performed after ‘Button-Click’. Performed in Client-side 
CustListEObject 
MemberSet 
Result Set Managed in Server for Customer Info. Generating MemberSet on basis of CUSTOMER TABLE in DB 
CustMem 
DataTable 
Object managed for Displayed Customer Data. Generating data sets on basis of MemberSet Object ( CustMem ) 
CustTable
Ⓒ2014 agados All rights reserved. 
4 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Member Name 
Relevant Column of TABLE 
Create MemberSet ( CustMem ) 
Cust_Nm 
Cust_Addr 
Cust_Tel 
Cust_Type 
Cust_Owner 
Custom_Ta.Cust_Nm 
Custom_Ta.Cust_Addr 
Custom_Ta.Cust_Tel 
Custom_Ta.Cust_Type 
Custom_Ta.Cust_Owner 
Member Type 
String 
String 
String 
String 
String
Ⓒ2014 agados All rights reserved. 
5 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Column Name 
Relevant Member of MemberSet 
Create DataTable (CustTable) 
Cust_Nm 
Cust_Addr 
Cust_Tel 
Cust_Type 
Cust_Owner 
CustMem.Cust_Nm 
CustMem.Cust_Addr 
CustMem.Cust_Tel 
CustMem.Cust_Type 
CustMem.Cust_Owner 
Column Type 
String 
String 
String 
String 
String
Ⓒ2014 agados All rights reserved. 
6 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Control Name 
Descriptions 
Create Form (CustForm) 
CustNmText 
SearchBtn 
CustGrid 
DataTable 
DataTable 
Customer Name for Searching condition 
Button to Execute Searching 
To display for customer List 
Link to MemberSet (CustMem). It have Condition Value for link. 
Link to MemberSet (CustMem). It have Customer List for link. 
Control Type 
TextEdit 
Button 
Grid 
CondTa 
ListTa
Ⓒ2014 agados All rights reserved. 
7 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Node Type 
Descriptions 
Create Object (CustListObject) 
Start 
Create Adapter 
Query 
Close Adapter 
End 
Start flow. 
Create Connection for DB 
Execute SQL to select Custom_Ta ( Customer TABLE) 
Close Connection for DB. 
Stop Flow. Define out-parameter. 
Node Name 
Start 
Create Adapter1 
Query1 
CloseAdapter1 
End
Ⓒ2014 agados All rights reserved. 
8 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Node Type 
Descriptions 
Create Event Object (CustListEObject) 
Start 
Jump Object 
End 
Start flow. 
Call Object (CustListObj) defined in Server. 
Stop Flow. Define out-parameter. 
Node Name 
Start 
Jump Object1 
End
Ⓒ2014 agados All rights reserved. 
9 
Design & Configure Demo 
Searching Customer Info. –New Function Building 
Result Screen
Ⓒ2014 agados All rights reserved. 
10 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –Defaulted 
You can check out Nodes, Flows and values & queries per Nodes through Log View that one of Visibilities Function.
Ⓒ2014 agados All rights reserved. 
11 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –Node Data
Ⓒ2014 agados All rights reserved. 
12 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –Node Statement
Ⓒ2014 agados All rights reserved. 
13 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –By object
Ⓒ2014 agados All rights reserved. 
14 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –By Thread
Ⓒ2014 agados All rights reserved. 
15 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –By Diagram
Ⓒ2014 agados All rights reserved. 
16 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –Trace Value
Ⓒ2014 agados All rights reserved. 
17 
Design & Configure Demo 
Searching Customer Info. –New Function Debugging 
Flow View –Running Pattern
Ⓒ2014 agados All rights reserved. 
18 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Object Type 
Modify Action 
Modify Objects 
Form 
Add Column on Grid-Control. 
Object Name 
CustListForm 
Object 
Modify SQL Statement 
( Add Column’s name ‘Custom_Ta.Emp_Count ‘) 
CustListObject 
Event Object 
Do not Modify 
CustListEObject 
MemberSet 
Add Member(Emp_Count) into MemberSet. 
CustMem 
DataTable 
Add Column(Emp_Count)into DataTable. 
CustTable
Ⓒ2014 agados All rights reserved. 
19 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Adding Member Name 
Relevant Column of TABLE 
Modify MemberSet ( CustMem ) 
Emp_Count 
Cust_Ta.Emp_Count 
Adding Member Type 
String
Ⓒ2014 agados All rights reserved. 
20 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Adding Column Name 
Relevant Member of MemberSet 
Modify DataTable (CustTable) 
Emp_Count 
CustMem.Emp_Count 
Adding Column Type 
String
Ⓒ2014 agados All rights reserved. 
21 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Adding Control Type 
Description 
Modify Form (CustForm) 
Grid Column 
Add Column for Number of Employees 
Adding Control Name 
Emp_Count
Ⓒ2014 agados All rights reserved. 
22 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Modified Node Type 
Description 
Modify Object (CustListObject) 
Query 
Modify SQL Statement. 
Modified Node Name 
Query1 
SELECT Cust_Nm 
, Cust_Addr 
, Cust_Tel 
, Cust_Type 
, Cust_Owner 
FROM CUSTOM_TA 
{CUST_NM} 
SELECT Cust_Nm 
, Cust_Addr 
, Cust_Tel 
, Cust_Type 
, Cust_Owner 
, Emp_Count 
FROM CUSTOM_TA 
{CUST_NM} 
Emp_Count 추가
Ⓒ2014 agados All rights reserved. 
23 
Design & Configure Demo 
Searching Customer Info. –Configure Function ( Add Column ) 
Modified Result Screen
Ⓒ2014 agados All rights reserved. 
24 
Design & Configure Demo 
Registering Customer Info. –New Function Building 
Create Objects 
Object Type 
Descriptions 
Form 
Customer Information Screen for Registering. 
Object Name 
CustEditForm 
Object 
Perform query and transmission result values. Performed in Server-side. 
CustEditObject 
Event Object 
Define logic performed after ‘Button-Click’. Performed in Client-side 
CustEditEObject 
MemberSet 
Result Set Managed in Server for Customer Info. Generating MemberSet on basis of CUSTOMER TABLE in DB. MemberSet used on Searching Customer Information. 
CustMem 
DataTable 
Object managed for Displayed Customer Data. Generating data sets on basis of MemberSet Object ( CustMem ). DataTable used on Searching Customer Information. 
CustTable
Ⓒ2014 agados All rights reserved. 
25 
Design & Configure Demo 
Registering Customer Info. –New Function Building 
Control Name 
Descriptions 
Create Form (CustForm) 
CustNmText 
CustTypeCombo 
CustAddr 
CustTel 
CustOwner 
WriteBtn 
Customer Name 
Select Customer Type 
Customer Address 
Customer Telephone No. 
Customer Owner 
Save Button 
Control Type 
TextEdit 
ComboBox 
TextEdit 
TextEdit 
TextEdit 
Button
Ⓒ2014 agados All rights reserved. 
26 
Design & Configure Demo 
Registering Customer Info. –New Function Building 
Node Type 
Descriptions 
Create Object (CustEditObject) 
Start 
Create Adapter 
Query 
Close Adapter 
End 
Start flow. 
Create Connection for DB 
Execute SQL to insert for Cust_Ta ( Customer TABLE) 
Close Connection for DB. 
Stop Flow. Define out-parameter. 
Node Name 
Start 
Create Adapter1 
Query1 
CloseAdapter1 
End
Ⓒ2014 agados All rights reserved. 
27 
Design & Configure Demo 
Registering Customer Info. –New Function Building 
Node Type 
Descriptions 
Create Event Object (CustEditEObject) 
Start 
Jump Object 
End 
Start flow. 
Call Object (CustEditObj) defined in Server. 
Stop Flow. Define out-parameter. 
Node Name 
Start 
Jump Object1 
End
Ⓒ2014 agados All rights reserved. 
28 
Design & Configure Demo 
Registering Customer Info. –New Function Building 
Register Customer Information Screen
Ⓒ2014 agados All rights reserved. 
29 
Design & Configure Demo 
Registering Customer Info. –Configure Function (Add Input Field) 
Object Type 
Modify Action 
Modify Objects 
Form 
Add TextEdit Control (for a number of employees). 
Object Name 
CustEditForm 
Object 
Modify SQL Statement ( Add Column’s name ‘Custom_Ta.Emp_Count ‘) 
CustEditObject 
Event Object 
Do not Modify 
CustEditEObject 
MemberSet 
Add Member(Emp_Count) into MemberSet. MemberSet used on Searching Customer Information. 
CustMem 
DataTable 
Add Column(Emp_Count)into DataTable. DataTable used on Searching Customer Information. 
CustTable
Ⓒ2014 agados All rights reserved. 
30 
Design & Configure Demo 
Registering Customer Info. –Configure Function (Add Input Field) 
Adding Control Type 
Description 
Modify Form (CustEditForm) 
Text Edit 
Add TextEdit Control for a number of employees 
Adding Control Name 
EmpCountText
Ⓒ2014 agados All rights reserved. 
31 
Design & Configure Demo 
Registering Customer Info. –Configure Function (Add Input Field) 
Modified Node Type 
Description 
Modify Object (CustEditObject) 
Query 
Modify SQL Statement. 
Modified Node Name 
Query1 
INSERT INTO CUSTOM_TA 
( Cust_Nm 
, Cust_Addr 
, Cust_Tel 
, Cust_Type 
, Cust_Owner) 
VALUES 
( {Cust_Nm} 
, {Cust_Addr} 
, {Cust_Tel} 
, {Cust_Type} 
, {Cust_Owner} 
) 
INSERT INTO CUSTOM_TA 
( Cust_Nm 
, Cust_Addr 
, Cust_Tel 
, Cust_Type 
, Cust_Owner 
, Emp_Count) 
VALUES 
( {Cust_Nm} 
, {Cust_Addr} 
, {Cust_Tel} 
, {Cust_Type} 
, {Cust_Owner} 
, {Emp_Count} 
) 
Emp_Count 추가
Ⓒ2014 agados All rights reserved. 
32 
Design & Configure Demo 
Registering Customer Info. –Configure Function (Add Input Field) 
Modified Result Screen

More Related Content

Viewers also liked (7)

Accoutntable Care Organization Study
Accoutntable Care Organization StudyAccoutntable Care Organization Study
Accoutntable Care Organization Study
TomBeck77
 
AGADOS function & feature Chapter-01 UI define elements
AGADOS function & feature Chapter-01 UI define elements AGADOS function & feature Chapter-01 UI define elements
AGADOS function & feature Chapter-01 UI define elements
Yongkyoo Park
 
(Marketing case study)people and technology-global indoor lbs solution leader...
(Marketing case study)people and technology-global indoor lbs solution leader...(Marketing case study)people and technology-global indoor lbs solution leader...
(Marketing case study)people and technology-global indoor lbs solution leader...
PEOPLE AND TECHNOLOGY (Antonio Hong)
 
AGADOS function & feature Chapter-03 Visibility of AGADOS based app
AGADOS function & feature  Chapter-03 Visibility of AGADOS  based appAGADOS function & feature  Chapter-03 Visibility of AGADOS  based app
AGADOS function & feature Chapter-03 Visibility of AGADOS based app
Yongkyoo Park
 
AGADOS function & feature Chapter-02 biz logic define
AGADOS function & feature Chapter-02 biz logic defineAGADOS function & feature Chapter-02 biz logic define
AGADOS function & feature Chapter-02 biz logic define
Yongkyoo Park
 
마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5
Taejoon Yoo
 
Lossless Stream Processing
Lossless Stream ProcessingLossless Stream Processing
Lossless Stream Processing
Taewook Eom
 
Accoutntable Care Organization Study
Accoutntable Care Organization StudyAccoutntable Care Organization Study
Accoutntable Care Organization Study
TomBeck77
 
AGADOS function & feature Chapter-01 UI define elements
AGADOS function & feature Chapter-01 UI define elements AGADOS function & feature Chapter-01 UI define elements
AGADOS function & feature Chapter-01 UI define elements
Yongkyoo Park
 
(Marketing case study)people and technology-global indoor lbs solution leader...
(Marketing case study)people and technology-global indoor lbs solution leader...(Marketing case study)people and technology-global indoor lbs solution leader...
(Marketing case study)people and technology-global indoor lbs solution leader...
PEOPLE AND TECHNOLOGY (Antonio Hong)
 
AGADOS function & feature Chapter-03 Visibility of AGADOS based app
AGADOS function & feature  Chapter-03 Visibility of AGADOS  based appAGADOS function & feature  Chapter-03 Visibility of AGADOS  based app
AGADOS function & feature Chapter-03 Visibility of AGADOS based app
Yongkyoo Park
 
AGADOS function & feature Chapter-02 biz logic define
AGADOS function & feature Chapter-02 biz logic defineAGADOS function & feature Chapter-02 biz logic define
AGADOS function & feature Chapter-02 biz logic define
Yongkyoo Park
 
마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5
Taejoon Yoo
 
Lossless Stream Processing
Lossless Stream ProcessingLossless Stream Processing
Lossless Stream Processing
Taewook Eom
 

Similar to Agados-based Application Design Demo (20)

Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Sparkhound Inc.
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10
Vivek Singh Chandel
 
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
AlexACMSC
 
How to develop a gateway service using code based implementation
How to develop a gateway service using code based implementationHow to develop a gateway service using code based implementation
How to develop a gateway service using code based implementation
nitin2517
 
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
Sencha
 
Wcf data services
Wcf data servicesWcf data services
Wcf data services
Eyal Vardi
 
Kevin Bengtson Portfolio
Kevin Bengtson PortfolioKevin Bengtson Portfolio
Kevin Bengtson Portfolio
Kbengt521
 
Intro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite AppsIntro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite Apps
dreamforce2006
 
Chapter09
Chapter09Chapter09
Chapter09
Sreenivasan G
 
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
dioduong345
 
Rodney Matejek Portfolio
Rodney Matejek PortfolioRodney Matejek Portfolio
Rodney Matejek Portfolio
rmatejek
 
MaxTECH Technical Training - Maximo Custom Audit Solution
MaxTECH Technical Training - Maximo Custom Audit SolutionMaxTECH Technical Training - Maximo Custom Audit Solution
MaxTECH Technical Training - Maximo Custom Audit Solution
Helen Fisher
 
Lerman Vvs14 Ef Tips And Tricks
Lerman Vvs14  Ef Tips And TricksLerman Vvs14  Ef Tips And Tricks
Lerman Vvs14 Ef Tips And Tricks
Julie Lerman
 
Simplify Feature Engineering in Your Data Warehouse
Simplify Feature Engineering in Your Data WarehouseSimplify Feature Engineering in Your Data Warehouse
Simplify Feature Engineering in Your Data Warehouse
FeatureByte
 
Share Point
Share PointShare Point
Share Point
jimbelo
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 
Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right way
Thibaud Desodt
 
Making Your Apex and Visualforce Reusable
Making Your Apex and Visualforce ReusableMaking Your Apex and Visualforce Reusable
Making Your Apex and Visualforce Reusable
Salesforce Developers
 
O365 Saturday - Deepdive SharePoint Client Side Rendering
O365 Saturday - Deepdive SharePoint Client Side RenderingO365 Saturday - Deepdive SharePoint Client Side Rendering
O365 Saturday - Deepdive SharePoint Client Side Rendering
Riwut Libinuko
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10
Mani Chaubey
 
Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Optimizing Code Reusability for SharePoint using Linq to SharePoint & the MVP...
Sparkhound Inc.
 
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
Alexandria ACM Student Chapter | Specification & Verification of Data-Centric...
AlexACMSC
 
How to develop a gateway service using code based implementation
How to develop a gateway service using code based implementationHow to develop a gateway service using code based implementation
How to develop a gateway service using code based implementation
nitin2517
 
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
Sencha
 
Wcf data services
Wcf data servicesWcf data services
Wcf data services
Eyal Vardi
 
Kevin Bengtson Portfolio
Kevin Bengtson PortfolioKevin Bengtson Portfolio
Kevin Bengtson Portfolio
Kbengt521
 
Intro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite AppsIntro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite Apps
dreamforce2006
 
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
dioduong345
 
Rodney Matejek Portfolio
Rodney Matejek PortfolioRodney Matejek Portfolio
Rodney Matejek Portfolio
rmatejek
 
MaxTECH Technical Training - Maximo Custom Audit Solution
MaxTECH Technical Training - Maximo Custom Audit SolutionMaxTECH Technical Training - Maximo Custom Audit Solution
MaxTECH Technical Training - Maximo Custom Audit Solution
Helen Fisher
 
Lerman Vvs14 Ef Tips And Tricks
Lerman Vvs14  Ef Tips And TricksLerman Vvs14  Ef Tips And Tricks
Lerman Vvs14 Ef Tips And Tricks
Julie Lerman
 
Simplify Feature Engineering in Your Data Warehouse
Simplify Feature Engineering in Your Data WarehouseSimplify Feature Engineering in Your Data Warehouse
Simplify Feature Engineering in Your Data Warehouse
FeatureByte
 
Share Point
Share PointShare Point
Share Point
jimbelo
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 
Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right way
Thibaud Desodt
 
Making Your Apex and Visualforce Reusable
Making Your Apex and Visualforce ReusableMaking Your Apex and Visualforce Reusable
Making Your Apex and Visualforce Reusable
Salesforce Developers
 
O365 Saturday - Deepdive SharePoint Client Side Rendering
O365 Saturday - Deepdive SharePoint Client Side RenderingO365 Saturday - Deepdive SharePoint Client Side Rendering
O365 Saturday - Deepdive SharePoint Client Side Rendering
Riwut Libinuko
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10
Mani Chaubey
 

More from Yongkyoo Park (20)

Agados ABP(Application Building Process) Overview
Agados ABP(Application Building Process) Overview Agados ABP(Application Building Process) Overview
Agados ABP(Application Building Process) Overview
Yongkyoo Park
 
Agados Function and Feature Overview
Agados Function and Feature OverviewAgados Function and Feature Overview
Agados Function and Feature Overview
Yongkyoo Park
 
agados app engine platform Intro
agados app engine platform Introagados app engine platform Intro
agados app engine platform Intro
Yongkyoo Park
 
Agados CRM(SFA) introduction (doc version 1.0 20140416)
Agados CRM(SFA) introduction (doc version 1.0 20140416)Agados CRM(SFA) introduction (doc version 1.0 20140416)
Agados CRM(SFA) introduction (doc version 1.0 20140416)
Yongkyoo Park
 
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
Yongkyoo Park
 
탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...
Yongkyoo Park
 
Agados cloud application builder guide-v1.1.kr(2014.12.15)
Agados cloud application builder guide-v1.1.kr(2014.12.15)Agados cloud application builder guide-v1.1.kr(2014.12.15)
Agados cloud application builder guide-v1.1.kr(2014.12.15)
Yongkyoo Park
 
Agados POC Report to Build/Rebuild for ERP PKG
Agados POC Report to Build/Rebuild for ERP PKG Agados POC Report to Build/Rebuild for ERP PKG
Agados POC Report to Build/Rebuild for ERP PKG
Yongkyoo Park
 
비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①
Yongkyoo Park
 
선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘
Yongkyoo Park
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
Yongkyoo Park
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
Yongkyoo Park
 
SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야 SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야
Yongkyoo Park
 
Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다 Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다
Yongkyoo Park
 
'글로벌 SW Package 지배력을 배워야'
 '글로벌 SW Package 지배력을 배워야'  '글로벌 SW Package 지배력을 배워야'
'글로벌 SW Package 지배력을 배워야'
Yongkyoo Park
 
Agados biz. introductio
Agados biz. introductioAgados biz. introductio
Agados biz. introductio
Yongkyoo Park
 
SW 솔루션 사업요소간 인과관계 ③
SW 솔루션 사업요소간 인과관계  ③SW 솔루션 사업요소간 인과관계  ③
SW 솔루션 사업요소간 인과관계 ③
Yongkyoo Park
 
SW 솔루션 사업요소간 인과관계 ②
SW 솔루션 사업요소간 인과관계  ②SW 솔루션 사업요소간 인과관계  ②
SW 솔루션 사업요소간 인과관계 ②
Yongkyoo Park
 
Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개
Yongkyoo Park
 
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
비즈니스 SW Package 사업에 대한 Agados 의 생각   01비즈니스 SW Package 사업에 대한 Agados 의 생각   01
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
Yongkyoo Park
 
Agados ABP(Application Building Process) Overview
Agados ABP(Application Building Process) Overview Agados ABP(Application Building Process) Overview
Agados ABP(Application Building Process) Overview
Yongkyoo Park
 
Agados Function and Feature Overview
Agados Function and Feature OverviewAgados Function and Feature Overview
Agados Function and Feature Overview
Yongkyoo Park
 
agados app engine platform Intro
agados app engine platform Introagados app engine platform Intro
agados app engine platform Intro
Yongkyoo Park
 
Agados CRM(SFA) introduction (doc version 1.0 20140416)
Agados CRM(SFA) introduction (doc version 1.0 20140416)Agados CRM(SFA) introduction (doc version 1.0 20140416)
Agados CRM(SFA) introduction (doc version 1.0 20140416)
Yongkyoo Park
 
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
Yongkyoo Park
 
탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...
Yongkyoo Park
 
Agados cloud application builder guide-v1.1.kr(2014.12.15)
Agados cloud application builder guide-v1.1.kr(2014.12.15)Agados cloud application builder guide-v1.1.kr(2014.12.15)
Agados cloud application builder guide-v1.1.kr(2014.12.15)
Yongkyoo Park
 
Agados POC Report to Build/Rebuild for ERP PKG
Agados POC Report to Build/Rebuild for ERP PKG Agados POC Report to Build/Rebuild for ERP PKG
Agados POC Report to Build/Rebuild for ERP PKG
Yongkyoo Park
 
비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①
Yongkyoo Park
 
선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘
Yongkyoo Park
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
Yongkyoo Park
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
Yongkyoo Park
 
SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야 SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야
Yongkyoo Park
 
Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다 Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다
Yongkyoo Park
 
'글로벌 SW Package 지배력을 배워야'
 '글로벌 SW Package 지배력을 배워야'  '글로벌 SW Package 지배력을 배워야'
'글로벌 SW Package 지배력을 배워야'
Yongkyoo Park
 
Agados biz. introductio
Agados biz. introductioAgados biz. introductio
Agados biz. introductio
Yongkyoo Park
 
SW 솔루션 사업요소간 인과관계 ③
SW 솔루션 사업요소간 인과관계  ③SW 솔루션 사업요소간 인과관계  ③
SW 솔루션 사업요소간 인과관계 ③
Yongkyoo Park
 
SW 솔루션 사업요소간 인과관계 ②
SW 솔루션 사업요소간 인과관계  ②SW 솔루션 사업요소간 인과관계  ②
SW 솔루션 사업요소간 인과관계 ②
Yongkyoo Park
 
Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개
Yongkyoo Park
 
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
비즈니스 SW Package 사업에 대한 Agados 의 생각   01비즈니스 SW Package 사업에 대한 Agados 의 생각   01
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
Yongkyoo Park
 

Recently uploaded (20)

How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Drupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy ConsumptionDrupalcamp Finland – Measuring Front-end Energy Consumption
Drupalcamp Finland – Measuring Front-end Energy Consumption
Exove
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 

Agados-based Application Design Demo

  • 1. Agados-defined Application : Design & Configure Demo New Function Building & Debugging, Function Configure Design Demo Revision: 2014.11.23 Template Revision:20131025 v2.0
  • 2. Ⓒ2014 agados All rights reserved. 2 Design & Configure Demo Structure of this presentation Debugging Function •Tracing through various view of flow •Viewing Flow Diagram Configuring Function •Add Column on List of Customer •Modify Objects Building New Function •New Function Building for ‘Customer Searching’ •Create Objects Handling of Customer Information. Building/Configuring New Function •New Function Building for ‘Customer Registering’ •Create Objects •Add Column on Form of ‘Customer Registering’ •Modify Objects
  • 3. Ⓒ2014 agados All rights reserved. 3 Design & Configure Demo Searching Customer Info. –New Function Building Object Type Descriptions Create Objects Form Customer Information Screen for Searching. Object Name CustListForm Object Perform query and transmission result values. Performed in Server-side. CustListObject Event Object Define logic performed after ‘Button-Click’. Performed in Client-side CustListEObject MemberSet Result Set Managed in Server for Customer Info. Generating MemberSet on basis of CUSTOMER TABLE in DB CustMem DataTable Object managed for Displayed Customer Data. Generating data sets on basis of MemberSet Object ( CustMem ) CustTable
  • 4. Ⓒ2014 agados All rights reserved. 4 Design & Configure Demo Searching Customer Info. –New Function Building Member Name Relevant Column of TABLE Create MemberSet ( CustMem ) Cust_Nm Cust_Addr Cust_Tel Cust_Type Cust_Owner Custom_Ta.Cust_Nm Custom_Ta.Cust_Addr Custom_Ta.Cust_Tel Custom_Ta.Cust_Type Custom_Ta.Cust_Owner Member Type String String String String String
  • 5. Ⓒ2014 agados All rights reserved. 5 Design & Configure Demo Searching Customer Info. –New Function Building Column Name Relevant Member of MemberSet Create DataTable (CustTable) Cust_Nm Cust_Addr Cust_Tel Cust_Type Cust_Owner CustMem.Cust_Nm CustMem.Cust_Addr CustMem.Cust_Tel CustMem.Cust_Type CustMem.Cust_Owner Column Type String String String String String
  • 6. Ⓒ2014 agados All rights reserved. 6 Design & Configure Demo Searching Customer Info. –New Function Building Control Name Descriptions Create Form (CustForm) CustNmText SearchBtn CustGrid DataTable DataTable Customer Name for Searching condition Button to Execute Searching To display for customer List Link to MemberSet (CustMem). It have Condition Value for link. Link to MemberSet (CustMem). It have Customer List for link. Control Type TextEdit Button Grid CondTa ListTa
  • 7. Ⓒ2014 agados All rights reserved. 7 Design & Configure Demo Searching Customer Info. –New Function Building Node Type Descriptions Create Object (CustListObject) Start Create Adapter Query Close Adapter End Start flow. Create Connection for DB Execute SQL to select Custom_Ta ( Customer TABLE) Close Connection for DB. Stop Flow. Define out-parameter. Node Name Start Create Adapter1 Query1 CloseAdapter1 End
  • 8. Ⓒ2014 agados All rights reserved. 8 Design & Configure Demo Searching Customer Info. –New Function Building Node Type Descriptions Create Event Object (CustListEObject) Start Jump Object End Start flow. Call Object (CustListObj) defined in Server. Stop Flow. Define out-parameter. Node Name Start Jump Object1 End
  • 9. Ⓒ2014 agados All rights reserved. 9 Design & Configure Demo Searching Customer Info. –New Function Building Result Screen
  • 10. Ⓒ2014 agados All rights reserved. 10 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –Defaulted You can check out Nodes, Flows and values & queries per Nodes through Log View that one of Visibilities Function.
  • 11. Ⓒ2014 agados All rights reserved. 11 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –Node Data
  • 12. Ⓒ2014 agados All rights reserved. 12 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –Node Statement
  • 13. Ⓒ2014 agados All rights reserved. 13 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –By object
  • 14. Ⓒ2014 agados All rights reserved. 14 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –By Thread
  • 15. Ⓒ2014 agados All rights reserved. 15 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –By Diagram
  • 16. Ⓒ2014 agados All rights reserved. 16 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –Trace Value
  • 17. Ⓒ2014 agados All rights reserved. 17 Design & Configure Demo Searching Customer Info. –New Function Debugging Flow View –Running Pattern
  • 18. Ⓒ2014 agados All rights reserved. 18 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Object Type Modify Action Modify Objects Form Add Column on Grid-Control. Object Name CustListForm Object Modify SQL Statement ( Add Column’s name ‘Custom_Ta.Emp_Count ‘) CustListObject Event Object Do not Modify CustListEObject MemberSet Add Member(Emp_Count) into MemberSet. CustMem DataTable Add Column(Emp_Count)into DataTable. CustTable
  • 19. Ⓒ2014 agados All rights reserved. 19 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Adding Member Name Relevant Column of TABLE Modify MemberSet ( CustMem ) Emp_Count Cust_Ta.Emp_Count Adding Member Type String
  • 20. Ⓒ2014 agados All rights reserved. 20 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Adding Column Name Relevant Member of MemberSet Modify DataTable (CustTable) Emp_Count CustMem.Emp_Count Adding Column Type String
  • 21. Ⓒ2014 agados All rights reserved. 21 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Adding Control Type Description Modify Form (CustForm) Grid Column Add Column for Number of Employees Adding Control Name Emp_Count
  • 22. Ⓒ2014 agados All rights reserved. 22 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Modified Node Type Description Modify Object (CustListObject) Query Modify SQL Statement. Modified Node Name Query1 SELECT Cust_Nm , Cust_Addr , Cust_Tel , Cust_Type , Cust_Owner FROM CUSTOM_TA {CUST_NM} SELECT Cust_Nm , Cust_Addr , Cust_Tel , Cust_Type , Cust_Owner , Emp_Count FROM CUSTOM_TA {CUST_NM} Emp_Count 추가
  • 23. Ⓒ2014 agados All rights reserved. 23 Design & Configure Demo Searching Customer Info. –Configure Function ( Add Column ) Modified Result Screen
  • 24. Ⓒ2014 agados All rights reserved. 24 Design & Configure Demo Registering Customer Info. –New Function Building Create Objects Object Type Descriptions Form Customer Information Screen for Registering. Object Name CustEditForm Object Perform query and transmission result values. Performed in Server-side. CustEditObject Event Object Define logic performed after ‘Button-Click’. Performed in Client-side CustEditEObject MemberSet Result Set Managed in Server for Customer Info. Generating MemberSet on basis of CUSTOMER TABLE in DB. MemberSet used on Searching Customer Information. CustMem DataTable Object managed for Displayed Customer Data. Generating data sets on basis of MemberSet Object ( CustMem ). DataTable used on Searching Customer Information. CustTable
  • 25. Ⓒ2014 agados All rights reserved. 25 Design & Configure Demo Registering Customer Info. –New Function Building Control Name Descriptions Create Form (CustForm) CustNmText CustTypeCombo CustAddr CustTel CustOwner WriteBtn Customer Name Select Customer Type Customer Address Customer Telephone No. Customer Owner Save Button Control Type TextEdit ComboBox TextEdit TextEdit TextEdit Button
  • 26. Ⓒ2014 agados All rights reserved. 26 Design & Configure Demo Registering Customer Info. –New Function Building Node Type Descriptions Create Object (CustEditObject) Start Create Adapter Query Close Adapter End Start flow. Create Connection for DB Execute SQL to insert for Cust_Ta ( Customer TABLE) Close Connection for DB. Stop Flow. Define out-parameter. Node Name Start Create Adapter1 Query1 CloseAdapter1 End
  • 27. Ⓒ2014 agados All rights reserved. 27 Design & Configure Demo Registering Customer Info. –New Function Building Node Type Descriptions Create Event Object (CustEditEObject) Start Jump Object End Start flow. Call Object (CustEditObj) defined in Server. Stop Flow. Define out-parameter. Node Name Start Jump Object1 End
  • 28. Ⓒ2014 agados All rights reserved. 28 Design & Configure Demo Registering Customer Info. –New Function Building Register Customer Information Screen
  • 29. Ⓒ2014 agados All rights reserved. 29 Design & Configure Demo Registering Customer Info. –Configure Function (Add Input Field) Object Type Modify Action Modify Objects Form Add TextEdit Control (for a number of employees). Object Name CustEditForm Object Modify SQL Statement ( Add Column’s name ‘Custom_Ta.Emp_Count ‘) CustEditObject Event Object Do not Modify CustEditEObject MemberSet Add Member(Emp_Count) into MemberSet. MemberSet used on Searching Customer Information. CustMem DataTable Add Column(Emp_Count)into DataTable. DataTable used on Searching Customer Information. CustTable
  • 30. Ⓒ2014 agados All rights reserved. 30 Design & Configure Demo Registering Customer Info. –Configure Function (Add Input Field) Adding Control Type Description Modify Form (CustEditForm) Text Edit Add TextEdit Control for a number of employees Adding Control Name EmpCountText
  • 31. Ⓒ2014 agados All rights reserved. 31 Design & Configure Demo Registering Customer Info. –Configure Function (Add Input Field) Modified Node Type Description Modify Object (CustEditObject) Query Modify SQL Statement. Modified Node Name Query1 INSERT INTO CUSTOM_TA ( Cust_Nm , Cust_Addr , Cust_Tel , Cust_Type , Cust_Owner) VALUES ( {Cust_Nm} , {Cust_Addr} , {Cust_Tel} , {Cust_Type} , {Cust_Owner} ) INSERT INTO CUSTOM_TA ( Cust_Nm , Cust_Addr , Cust_Tel , Cust_Type , Cust_Owner , Emp_Count) VALUES ( {Cust_Nm} , {Cust_Addr} , {Cust_Tel} , {Cust_Type} , {Cust_Owner} , {Emp_Count} ) Emp_Count 추가
  • 32. Ⓒ2014 agados All rights reserved. 32 Design & Configure Demo Registering Customer Info. –Configure Function (Add Input Field) Modified Result Screen