SlideShare une entreprise Scribd logo
1  sur  32
Télécharger pour lire hors ligne
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

Contenu connexe

En vedette

Accoutntable Care Organization Study
Accoutntable Care Organization StudyAccoutntable Care Organization Study
Accoutntable Care Organization StudyTomBeck77
 
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 appYongkyoo 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 defineYongkyoo Park
 
마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5Taejoon Yoo
 
Lossless Stream Processing
Lossless Stream ProcessingLossless Stream Processing
Lossless Stream ProcessingTaewook Eom
 

En vedette (7)

Accoutntable Care Organization Study
Accoutntable Care Organization StudyAccoutntable Care Organization Study
Accoutntable Care Organization Study
 
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
 
(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...
 
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
 
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
 
마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5마인즈랩 회사소개서 V1.5
마인즈랩 회사소개서 V1.5
 
Lossless Stream Processing
Lossless Stream ProcessingLossless Stream Processing
Lossless Stream Processing
 

Similaire à Agados-based Application Design Demo

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 session10Vivek chan
 
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 implementationnitin2517
 
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 servicesEyal Vardi
 
Kevin Bengtson Portfolio
Kevin Bengtson PortfolioKevin Bengtson Portfolio
Kevin Bengtson PortfolioKbengt521
 
Intro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite AppsIntro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite Appsdreamforce2006
 
Rodney Matejek Portfolio
Rodney Matejek PortfolioRodney Matejek Portfolio
Rodney Matejek Portfoliormatejek
 
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 SolutionHelen Fisher
 
Lerman Vvs14 Ef Tips And Tricks
Lerman Vvs14  Ef Tips And TricksLerman Vvs14  Ef Tips And Tricks
Lerman Vvs14 Ef Tips And TricksJulie 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 WarehouseFeatureByte
 
Share Point
Share PointShare Point
Share Pointjimbelo
 
Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right wayThibaud Desodt
 
Making Your Apex and Visualforce Reusable
Making Your Apex and Visualforce ReusableMaking Your Apex and Visualforce Reusable
Making Your Apex and Visualforce ReusableSalesforce 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 RenderingRiwut Libinuko
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10Mani Chaubey
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVCIntroduction to ASP.NET MVC
Introduction to ASP.NET MVCSunpawet Somsin
 
SetFocus SQL Portfolio
SetFocus SQL PortfolioSetFocus SQL Portfolio
SetFocus SQL Portfoliogeometro17
 

Similaire à 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...
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10
 
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...
 
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
 
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
 
Wcf data services
Wcf data servicesWcf data services
Wcf data services
 
Kevin Bengtson Portfolio
Kevin Bengtson PortfolioKevin Bengtson Portfolio
Kevin Bengtson Portfolio
 
Intro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite AppsIntro to AppExchange - Building Composite Apps
Intro to AppExchange - Building Composite Apps
 
Chapter09
Chapter09Chapter09
Chapter09
 
Rodney Matejek Portfolio
Rodney Matejek PortfolioRodney Matejek Portfolio
Rodney Matejek Portfolio
 
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
 
Lerman Vvs14 Ef Tips And Tricks
Lerman Vvs14  Ef Tips And TricksLerman Vvs14  Ef Tips And Tricks
Lerman Vvs14 Ef Tips And Tricks
 
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
 
Share Point
Share PointShare Point
Share Point
 
Dependency injection - the right way
Dependency injection - the right wayDependency injection - the right way
Dependency injection - the right way
 
Making Your Apex and Visualforce Reusable
Making Your Apex and Visualforce ReusableMaking Your Apex and Visualforce Reusable
Making Your Apex and Visualforce Reusable
 
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
 
07 asp.net session10
07 asp.net session1007 asp.net session10
07 asp.net session10
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVCIntroduction to ASP.NET MVC
Introduction to ASP.NET MVC
 
SetFocus SQL Portfolio
SetFocus SQL PortfolioSetFocus SQL Portfolio
SetFocus SQL Portfolio
 

Plus de 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 OverviewYongkyoo Park
 
agados app engine platform Intro
agados app engine platform Introagados app engine platform Intro
agados app engine platform IntroYongkyoo 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. introductioYongkyoo 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 의 생각 01Yongkyoo Park
 

Plus de 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
 
Agados Function and Feature Overview
Agados Function and Feature OverviewAgados Function and Feature Overview
Agados Function and Feature Overview
 
agados app engine platform Intro
agados app engine platform Introagados app engine platform Intro
agados app engine platform Intro
 
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)
 
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
SW서비스, 플랫폼비즈니스화에 대한 생각(가치생성수단편)
 
탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...탈SI하고, 완성품(제품)사업 모델로...
탈SI하고, 완성품(제품)사업 모델로...
 
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)
 
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
 
비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①비즈니스 Application 산업에서 플랫폼의 의미 ①
비즈니스 Application 산업에서 플랫폼의 의미 ①
 
선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘선진 글로벌 SW 경쟁력의 힘
선진 글로벌 SW 경쟁력의 힘
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②비즈니스 Application 솔루션 구조 기술 진화 모델 ②
비즈니스 Application 솔루션 구조 기술 진화 모델 ②
 
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①비즈니스 Application 솔루션 구조 기술 진화 모델 ①
비즈니스 Application 솔루션 구조 기술 진화 모델 ①
 
SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야 SW 산업 - 노동력 기반에서 탈피해야
SW 산업 - 노동력 기반에서 탈피해야
 
Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다 Application SW 산업 - 적용프레임 달라야 한다
Application SW 산업 - 적용프레임 달라야 한다
 
'글로벌 SW Package 지배력을 배워야'
 '글로벌 SW Package 지배력을 배워야'  '글로벌 SW Package 지배력을 배워야'
'글로벌 SW Package 지배력을 배워야'
 
Agados biz. introductio
Agados biz. introductioAgados biz. introductio
Agados biz. introductio
 
SW 솔루션 사업요소간 인과관계 ③
SW 솔루션 사업요소간 인과관계  ③SW 솔루션 사업요소간 인과관계  ③
SW 솔루션 사업요소간 인과관계 ③
 
SW 솔루션 사업요소간 인과관계 ②
SW 솔루션 사업요소간 인과관계  ②SW 솔루션 사업요소간 인과관계  ②
SW 솔루션 사업요소간 인과관계 ②
 
Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개Agaods 플랫폼 사업 소개
Agaods 플랫폼 사업 소개
 
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
비즈니스 SW Package 사업에 대한 Agados 의 생각   01비즈니스 SW Package 사업에 대한 Agados 의 생각   01
비즈니스 SW Package 사업에 대한 Agados 의 생각 01
 

Dernier

What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 

Dernier (20)

What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 

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