webdynpro alv usage

8
webdynpro alv usage webdynpro alv usage Skill cut [email protected] 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.

Upload: jungsehun

Post on 25-Jan-2015

1.381 views

Category:

Technology


4 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Webdynpro Alv Usage

webdynpro alv usagewebdynpro alv usage

Skill cut

[email protected]

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.

Page 2: Webdynpro Alv Usage

2 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Module Task

Stage Task명

Phase명 산출물명

순번 버전 작성일자 작성자 변경사유 검토일자 검토자 승인일자 승인자

1 Ver1.0 정세훈 최초작성

Document ControlDocument Control

Page 3: Webdynpro Alv Usage

3 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. Componetcontroller 에 property 에 salv_wd_table 을 선언한다 .

참고사항

Related Link

목적 • alv usage 를 사용할 수 있다 .

메뉴

Page 4: Webdynpro Alv Usage

4 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. View 에 property 에 alv usage 를 선언한다 .

참고사항

Related Link

목적 • alv usage 를 사용할 수 있다 .

메뉴

Page 5: Webdynpro Alv Usage

5 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. View 에 viewcontainer UI 를 그린다 .

참고사항

Related Link

목적 • alv usage 를 사용할 수 있다 .

메뉴

Page 6: Webdynpro Alv Usage

6 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. 해당 view 를 포함한 window 에 alv table 을 embedding한다

참고사항

Related Link

목적 • alv usage 를 사용할 수 있다 .

메뉴

Page 7: Webdynpro Alv Usage

7 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. Component usage 를 생성하고 더블클릭하면 아래의 갈라진 window 가 나온다 .2. 왼쪽의 data 에 alv 로 만들 context 를 mapping 하면된다 .

참고사항Mapping 한 context 는 component controller 에 선언 되어야 한다 .

Related Link

목적 • alv usage 를 사용할 수 있다 .

메뉴

Page 8: Webdynpro Alv Usage

8 Copyright © 2007 by BNE Solution Consulting INC. ALL RIGHTS RESERVED.

Procedure 1. Wddoinit 부분에 다음의 소스를 삽입한다 .

참고사항cl_salv_wd_config_table iwci_salv_wd_table 두 클래스에 많은 기능이 있으니 참고하시길 .

Related Link

목적 • alv usage 를 사용할 수 있다 .

  DATA : value TYPE abap_bool.

** for ALV  DATA: l_ref_cmp_usage TYPE REF TO if_wd_component_usage,        my_column TYPE REF TO cl_salv_wd_column,        my_header TYPE REF TO cl_salv_wd_column_header.

  l_ref_cmp_usage =   wd_this->wd_cpuse_alv( ).  IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.    l_ref_cmp_usage->create_component( ).  ENDIF.

  DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .  l_ref_interfacecontroller =   wd_this->wd_cpifc_alv( ).

  DATA:      l_value TYPE REF TO cl_salv_wd_config_table.

  l_value = l_ref_interfacecontroller->get_model(  ).

메뉴