SlideShare a Scribd company logo
1 of 18
Wendynpro 에서  excel export  ( 하나 하나 찍어만들기 ) Skill cut [email_address] Copyright © 2006 by BNE Solution Consulting INC.  ALL RIGHTS RESERVED. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means - electronic, mechanical, photocopying, recording, or otherwise- without the permission of BNE Solution Consulting.  This document provides an outline of a presentation and is incomplete without the accompanying oral commentary and discussion.
Agenda ,[object Object],[object Object],[object Object],[object Object],Index
Document Control 산출물명 Phase 명 Task 명 Stage Task Module 검토일자 승인자 승인일자 검토자 ,[object Object],정세훈 Ver1.0 1 변경사유 작성자 작성일자 버전 순번
I. UI setting
I. UI setting Procedure   1. Download component 를  insert  한다 . 참고사항 Related Link 목적 ,[object Object],메뉴
I. UI setting ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],목적 ,[object Object],메뉴
II. Context setting
II. Context setting ,[object Object],[object Object],[object Object],[object Object],[object Object],목적 ,[object Object],메뉴
II. Context setting ,[object Object],[object Object],[object Object],[object Object],목적 ,[object Object],메뉴
II. Context setting ,[object Object],[object Object],[object Object],[object Object],목적 ,[object Object],메뉴
III.  구현  code
III.  구현  code Procedure   1. Data definition 참고사항 Related Link 목적 ,[object Object],   data : conv_out type ref to cl_abap_conv_out_ce,              lv_html type string,              comps type i,              typ,              lv_temp type string.     field-symbols: <f_wa> type any,                  <f_comp> type any,                  <f_print> type any.   unassign : <f_wa>, <f_comp>, <f_print>.  메뉴
III.  구현  code Procedure   1. Head label  설정 참고사항 1. Html tag  지식을 알면 도움이 된다 . Related Link 목적 ,[object Object],   concatenate lv_html           '<tr  valign=&quot;middle&quot;>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 플랜트 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 장비번호 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 장비내역 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 장비구분 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 위치 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 장비분류 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 수익장비구분 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 운영부서 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 운영책임자 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 자산번호 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 취득일 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 취득금액 '              '</td>'           '<td  align=&quot;center&quot;  valign=&quot;middle&quot; >'              ' 취득구분 '              '</td>'           into lv_html.   concatenate lv_html             '</tr>'             into lv_html.  메뉴
III.  구현  code Procedure   1. Data export 참고사항 1. Html tag  지식을 알면 도움이 된다 . Related Link 목적 ,[object Object],   loop at lt_print assigning <f_wa>.     concatenate lv_html '<tr>'         into lv_html.     describe field <f_wa> type typ components comps.     do.       assign component sy-index of structure <f_wa> to       <f_print>.       if sy-subrc <> 0.         exit.       endif.       clear lv_temp.       lv_temp = <f_print>.       concatenate lv_html '<td align=&quot;center&quot;>' lv_temp '</td>'                 into lv_html.      enddo.     concatenate lv_html ' </tr>'             into lv_html.   endloop.   concatenate lv_html ' </table> </html>' into lv_html.  메뉴
III.  구현  code Procedure   1. Data  변환 참고사항 Related Link 목적 ,[object Object],   conv_out = cl_abap_conv_out_ce=>create( encoding = 'UTF-8' ).   conv_out->convert(     exporting       data = lv_html     importing       buffer = stru_down-file ).   node->bind_structure(     exporting       new_item = stru_down       set_initial_elements = abap_true   ).  메뉴
IV.  결과 화면
IV.  결과 화면 Procedure   1.  참고사항 Related Link 목적 ,[object Object],메뉴
IV.  결과 화면 Procedure   1.  참고사항 Related Link 목적 ,[object Object],메뉴

More Related Content

Similar to webdynpro에서 excel export by html

webdynpro Popup Open
webdynpro Popup Openwebdynpro Popup Open
webdynpro Popup Open
jung_se_hun
 
Lap around .net 4
Lap around .net 4Lap around .net 4
Lap around .net 4
Abdul Khan
 
webdynpro Dropdown List Value Set Setting
webdynpro Dropdown List Value Set Setting webdynpro Dropdown List Value Set Setting
webdynpro Dropdown List Value Set Setting
jung_se_hun
 

Similar to webdynpro에서 excel export by html (20)

webdynpro Popup Open
webdynpro Popup Openwebdynpro Popup Open
webdynpro Popup Open
 
Lap around .net 4
Lap around .net 4Lap around .net 4
Lap around .net 4
 
webdynpro Dropdown List Value Set Setting
webdynpro Dropdown List Value Set Setting webdynpro Dropdown List Value Set Setting
webdynpro Dropdown List Value Set Setting
 
JavaCro'15 - Web UI best practice integration with Java EE 7 - Peter Lehto
JavaCro'15 - Web UI best practice integration with Java EE 7 - Peter LehtoJavaCro'15 - Web UI best practice integration with Java EE 7 - Peter Lehto
JavaCro'15 - Web UI best practice integration with Java EE 7 - Peter Lehto
 
Windows Presentation Foundation
Windows Presentation FoundationWindows Presentation Foundation
Windows Presentation Foundation
 
Evolutionary db development
Evolutionary db development Evolutionary db development
Evolutionary db development
 
Safetty systems intro_embedded_c
Safetty systems intro_embedded_cSafetty systems intro_embedded_c
Safetty systems intro_embedded_c
 
FlexNet Delivery and FlexNet Operations On-Demand Tips & Tricks
FlexNet Delivery and FlexNet Operations On-Demand Tips & TricksFlexNet Delivery and FlexNet Operations On-Demand Tips & Tricks
FlexNet Delivery and FlexNet Operations On-Demand Tips & Tricks
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
An E-Business Integration And Collaboration Platform For B2B E-Commerce
An E-Business Integration And Collaboration Platform For B2B E-CommerceAn E-Business Integration And Collaboration Platform For B2B E-Commerce
An E-Business Integration And Collaboration Platform For B2B E-Commerce
 
Ab initio training Ab-initio Architecture
Ab initio training Ab-initio ArchitectureAb initio training Ab-initio Architecture
Ab initio training Ab-initio Architecture
 
Resume
ResumeResume
Resume
 
Sydney mule soft meetup 30 april 2020
Sydney mule soft meetup   30 april 2020Sydney mule soft meetup   30 april 2020
Sydney mule soft meetup 30 april 2020
 
Internet Explorer 8 Developer Overview
Internet Explorer 8 Developer OverviewInternet Explorer 8 Developer Overview
Internet Explorer 8 Developer Overview
 
Leveraging Continuous Integration For Fun And Profit!
Leveraging Continuous Integration For Fun And Profit!Leveraging Continuous Integration For Fun And Profit!
Leveraging Continuous Integration For Fun And Profit!
 
Better User Experience with .NET
Better User Experience with .NETBetter User Experience with .NET
Better User Experience with .NET
 
Thoughtful Software Design
Thoughtful Software DesignThoughtful Software Design
Thoughtful Software Design
 
Salesforce Lightning workshop
Salesforce Lightning workshopSalesforce Lightning workshop
Salesforce Lightning workshop
 
Maven 3: New Features - OPITZ CONSULTING - Stefan Scheidt
Maven 3: New Features - OPITZ CONSULTING - Stefan ScheidtMaven 3: New Features - OPITZ CONSULTING - Stefan Scheidt
Maven 3: New Features - OPITZ CONSULTING - Stefan Scheidt
 
Extending the GFv3 Admin Console
Extending the GFv3 Admin ConsoleExtending the GFv3 Admin Console
Extending the GFv3 Admin Console
 

More from jung_se_hun

고정자산 국조보조금 프로세스
고정자산 국조보조금 프로세스고정자산 국조보조금 프로세스
고정자산 국조보조금 프로세스
jung_se_hun
 
Abap 에서 webdynpro Call
Abap 에서 webdynpro Call Abap 에서 webdynpro Call
Abap 에서 webdynpro Call
jung_se_hun
 
Webdynpro Service Activate
Webdynpro Service ActivateWebdynpro Service Activate
Webdynpro Service Activate
jung_se_hun
 
webdynpro Select Option Default Value Setting
webdynpro  Select Option Default Value Setting webdynpro  Select Option Default Value Setting
webdynpro Select Option Default Value Setting
jung_se_hun
 
webdynpro Ovs Usage
webdynpro Ovs Usagewebdynpro Ovs Usage
webdynpro Ovs Usage
jung_se_hun
 
webdynpro Wda Select Option Usage
webdynpro Wda Select Option Usagewebdynpro Wda Select Option Usage
webdynpro Wda Select Option Usage
jung_se_hun
 
Webdynpro Alv Usage
Webdynpro Alv UsageWebdynpro Alv Usage
Webdynpro Alv Usage
jung_se_hun
 
webdynpro Alv Leadselection
webdynpro Alv Leadselectionwebdynpro Alv Leadselection
webdynpro Alv Leadselection
jung_se_hun
 
webdynpro Table Popin
webdynpro Table Popin webdynpro Table Popin
webdynpro Table Popin
jung_se_hun
 
sap Webdynpro File Up Down Load
sap Webdynpro File Up Down Load sap Webdynpro File Up Down Load
sap Webdynpro File Up Down Load
jung_se_hun
 
SAP Abap File Save (Cl Gos Manager)
SAP Abap File Save (Cl Gos Manager)SAP Abap File Save (Cl Gos Manager)
SAP Abap File Save (Cl Gos Manager)
jung_se_hun
 
sap Abap File Save (Cl Gos Manager)
sap Abap File Save (Cl Gos Manager)sap Abap File Save (Cl Gos Manager)
sap Abap File Save (Cl Gos Manager)
jung_se_hun
 
webdynpro File Up Down Load
webdynpro File Up Down Load webdynpro File Up Down Load
webdynpro File Up Down Load
jung_se_hun
 
webdynpro exit plug use
webdynpro exit plug usewebdynpro exit plug use
webdynpro exit plug use
jung_se_hun
 
webdynpro for abap Cell Color Setting
webdynpro for abap Cell Color Setting webdynpro for abap Cell Color Setting
webdynpro for abap Cell Color Setting
jung_se_hun
 
Abap HR Function
Abap HR Function Abap HR Function
Abap HR Function
jung_se_hun
 
webdynpro Column Grouping
webdynpro Column Groupingwebdynpro Column Grouping
webdynpro Column Grouping
jung_se_hun
 
webdynpro Application role setting
webdynpro Application role settingwebdynpro Application role setting
webdynpro Application role setting
jung_se_hun
 
Webdynpro Yes-No Popup
Webdynpro Yes-No Popup Webdynpro Yes-No Popup
Webdynpro Yes-No Popup
jung_se_hun
 
Abap RFC destination for web service import
 Abap RFC destination for web service import Abap RFC destination for web service import
Abap RFC destination for web service import
jung_se_hun
 

More from jung_se_hun (20)

고정자산 국조보조금 프로세스
고정자산 국조보조금 프로세스고정자산 국조보조금 프로세스
고정자산 국조보조금 프로세스
 
Abap 에서 webdynpro Call
Abap 에서 webdynpro Call Abap 에서 webdynpro Call
Abap 에서 webdynpro Call
 
Webdynpro Service Activate
Webdynpro Service ActivateWebdynpro Service Activate
Webdynpro Service Activate
 
webdynpro Select Option Default Value Setting
webdynpro  Select Option Default Value Setting webdynpro  Select Option Default Value Setting
webdynpro Select Option Default Value Setting
 
webdynpro Ovs Usage
webdynpro Ovs Usagewebdynpro Ovs Usage
webdynpro Ovs Usage
 
webdynpro Wda Select Option Usage
webdynpro Wda Select Option Usagewebdynpro Wda Select Option Usage
webdynpro Wda Select Option Usage
 
Webdynpro Alv Usage
Webdynpro Alv UsageWebdynpro Alv Usage
Webdynpro Alv Usage
 
webdynpro Alv Leadselection
webdynpro Alv Leadselectionwebdynpro Alv Leadselection
webdynpro Alv Leadselection
 
webdynpro Table Popin
webdynpro Table Popin webdynpro Table Popin
webdynpro Table Popin
 
sap Webdynpro File Up Down Load
sap Webdynpro File Up Down Load sap Webdynpro File Up Down Load
sap Webdynpro File Up Down Load
 
SAP Abap File Save (Cl Gos Manager)
SAP Abap File Save (Cl Gos Manager)SAP Abap File Save (Cl Gos Manager)
SAP Abap File Save (Cl Gos Manager)
 
sap Abap File Save (Cl Gos Manager)
sap Abap File Save (Cl Gos Manager)sap Abap File Save (Cl Gos Manager)
sap Abap File Save (Cl Gos Manager)
 
webdynpro File Up Down Load
webdynpro File Up Down Load webdynpro File Up Down Load
webdynpro File Up Down Load
 
webdynpro exit plug use
webdynpro exit plug usewebdynpro exit plug use
webdynpro exit plug use
 
webdynpro for abap Cell Color Setting
webdynpro for abap Cell Color Setting webdynpro for abap Cell Color Setting
webdynpro for abap Cell Color Setting
 
Abap HR Function
Abap HR Function Abap HR Function
Abap HR Function
 
webdynpro Column Grouping
webdynpro Column Groupingwebdynpro Column Grouping
webdynpro Column Grouping
 
webdynpro Application role setting
webdynpro Application role settingwebdynpro Application role setting
webdynpro Application role setting
 
Webdynpro Yes-No Popup
Webdynpro Yes-No Popup Webdynpro Yes-No Popup
Webdynpro Yes-No Popup
 
Abap RFC destination for web service import
 Abap RFC destination for web service import Abap RFC destination for web service import
Abap RFC destination for web service import
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Recently uploaded (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

webdynpro에서 excel export by html

  • 1. Wendynpro 에서 excel export ( 하나 하나 찍어만들기 ) Skill cut [email_address] Copyright © 2006 by BNE Solution Consulting INC. ALL RIGHTS RESERVED. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means - electronic, mechanical, photocopying, recording, or otherwise- without the permission of BNE Solution Consulting. This document provides an outline of a presentation and is incomplete without the accompanying oral commentary and discussion.
  • 2.
  • 3.
  • 5.
  • 6.
  • 8.
  • 9.
  • 10.
  • 11. III. 구현 code
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. IV. 결과 화면
  • 17.
  • 18.