REPORT z18_033 MESSAGE-ID ztest.
TABLES : sflight.
DATA : con1_ref TYPE REF TO cl_gui_custom_container.
DATA: BEGIN OF gt_sflight OCCURS 0.
INCLUDE STRUCTURE sflight.
DATA: chk TYPE c.
DATA: light TYPE c. "to display exceptions
data: drop_down_handle type int4.
DATA: cellcolor TYPE lvc_t_scol. "Table for colors
DATA: cellbtn TYPE lvc_t_styl. "Table buttons
DATA: END OF gt_sflight.
DATA : gs_sflight LIKE gt_sflight.
DATA : grid1 TYPE REF TO cl_gui_alv_grid,
gs_variant LIKE disvariant,
gs_cs_variant LIKE disvariant,
gs_layout TYPE lvc_s_layo,
gs_toolbar TYPE ui_functions,
gt_sort TYPE lvc_t_sort,
gt_fieldcat TYPE lvc_t_fcat.
* gt_sflight TYPE TABLE OF sflight.
TYPE-POOLS: icon.
*---------------------------------------------------------------------*
* CLASS lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver DEFINITION.
PUBLIC SECTION.
METHODS:
handle_double_click
FOR EVENT double_click OF cl_gui_alv_grid
IMPORTING e_row e_column.
METHODS : handle_toolbar
FOR EVENT toolbar OF cl_gui_alv_grid
IMPORTING e_object e_interactive.
METHODS : handle_command
FOR EVENT user_command OF cl_gui_alv_grid
IMPORTING e_ucomm.
METHODS : handle_button_click
FOR EVENT button_click OF cl_gui_alv_grid
IMPORTING es_col_id es_row_no.
PRIVATE SECTION.
ENDCLASS. "lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
* CLASS lcl_event_receiver IMPLEMENTATION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver IMPLEMENTATION.
METHOD handle_double_click.
LEAVE TO SCREEN 0.
ENDMETHOD. "handle_double_click
*-- Add ToolBar
METHOD handle_toolbar.
DATA: ls_toolbar TYPE stb_button.
CLEAR ls_toolbar.
ls_toolbar-butn_type = 3.
APPEND ls_toolbar TO e_object->mt_toolbar.
CLEAR ls_toolbar.
ls_toolbar-function = 'RESH'.
ls_toolbar-icon = icon_refresh.
ls_toolbar-quickinfo = 'Refresh'.
ls_toolbar-text = ' '.
ls_toolbar-disabled = ' '.
APPEND ls_toolbar TO e_object->mt_toolbar.
ENDMETHOD. "handle_toolbar
METHOD handle_command.
DATA : l_scroll TYPE lvc_s_stbl.
CASE e_ucomm.
*- REFRESH
WHEN 'RESH'.
SELECT * FROM sflight
INTO CORRESPONDING FIELDS OF TABLE gt_sflight.
l_scroll-row = 'X'.
l_scroll-col = 'X'.
CALL METHOD grid1->refresh_table_display
EXPORTING
i_soft_refresh = ''
is_stable = l_scroll.
ENDCASE.
ENDMETHOD. "handle_user_command
METHOD handle_button_click.
CLEAR gt_sflight.
READ TABLE gt_sflight INDEX es_row_no-row_id INTO gs_sflight.
IF sy-subrc EQ 0.
MESSAGE i002 WITH gs_sflight-carrid 'is selected'.
ENDIF.
ENDMETHOD. "handle_on_entered
ENDCLASS. "lcl_event_receiver IMPLEMENTATION
*
DATA : event_receiver TYPE REF TO lcl_event_receiver.
START-OF-SELECTION.
SELECT * FROM sflight INTO CORRESPONDING FIELDS OF TABLE gt_sflight.
LOOP AT gt_sflight.
IF gt_sflight-seatsocc <= 0.
gt_sflight-light = '1'.
ELSEIF gt_sflight-seatsocc <= 50.
gt_sflight-light = '2'.
ELSE.
gt_sflight-light = '3'.
ENDIF.
MODIFY gt_sflight.
ENDLOOP.
CALL SCREEN 100.
*---------------------------------------------------------------------*
* MODULE init_con OUTPUT
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
MODULE init_con OUTPUT.
IF con1_ref IS INITIAL.
CREATE OBJECT con1_ref
EXPORTING container_name = 'CON1'.
CREATE OBJECT grid1
EXPORTING
i_parent = con1_ref.
PERFORM setting_layout.
PERFORM getting_catalog.
PERFORM setting_catalog.
PERFORM setting_dropdown.
perform build_data changing gt_sflight[].
* PERFORM setting_cell.
* PERFORM setting_toolbar.
* PERFORM setting_sort.
* PERFORM setting_event.
CALL METHOD grid1->register_edit_event
EXPORTING
i_event_id = cl_gui_alv_grid=>mc_evt_modified.
CALL METHOD grid1->set_table_for_first_display
EXPORTING
* i_structure_name = 'SFLIGHT'
i_save = 'A'
is_variant = gs_variant " variant display
i_default = ' '
is_layout = gs_layout
it_toolbar_excluding = gs_toolbar
CHANGING
it_outtab = gt_sflight[]
it_fieldcatalog = gt_fieldcat[]
it_sort = gt_sort.
ENDIF.
ENDMODULE. " init_con OUTPUT
*&---------------------------------------------------------------------*
*& Module STATUS_0100 OUTPUT
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
SET PF-STATUS 'G100'.
* SET TITLEBAR 'xxx'.
ENDMODULE. " STATUS_0100 OUTPUT
*&---------------------------------------------------------------------*
*& Module USER_COMMAND_0100 INPUT
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.
CASE sy-ucomm.
WHEN 'BACK' OR 'EXIT' OR 'CANC'.
LEAVE TO SCREEN 0.
ENDCASE.
ENDMODULE. " USER_COMMAND_0100 INPUT
*&---------------------------------------------------------------------*
*& Form setting_layout
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* -->P_GS_LAYOCAT text
*----------------------------------------------------------------------*
FORM setting_layout .
*- General display options
gs_layout-cwidth_opt = 'X'.
* TITLE BAR
gs_layout-grid_title = 'Drop Down List Box'.
* Selection modes for SEL_MODE
gs_layout-sel_mode = 'D'.
gs_layout-edit = 'X'.
* exception
gs_layout-excp_fname = 'LIGHT'.
* coloring row
gs_layout-ctab_fname = 'CELLCOLOR'.
* STYLEFNAME of the layout structure.
gs_layout-stylefname = 'CELLBTN'.
* Grid pattern
* gs_layout-zebra = 'X'.
ENDFORM. " setting_layout
*&---------------------------------------------------------------------*
*& Form setting_toolbar
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* -->P_GS_TOOLBAR text
*----------------------------------------------------------------------*
FORM setting_toolbar.
DATA: l_exclude TYPE ui_func.
l_exclude = cl_gui_alv_grid=>mc_fc_save_variant.
APPEND l_exclude TO gs_toolbar.
l_exclude = cl_gui_alv_grid=>mc_fc_maintain_variant.
APPEND l_exclude TO gs_toolbar.
ENDFORM. " setting_toolbar
*&---------------------------------------------------------------------*
*& Form setting_sort
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM setting_sort .
DATA : ls_sort TYPE lvc_s_sort.
ls_sort-spos = '1'.
ls_sort-fieldname = 'CARRID'.
ls_sort-up = 'X'.
ls_sort-subtot = 'X'.
APPEND ls_sort TO gt_sort.
ENDFORM. " setting_sort
*&---------------------------------------------------------------------*
*& Form setting_event
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM setting_event .
CREATE OBJECT event_receiver.
SET HANDLER event_receiver->handle_double_click FOR grid1.
SET HANDLER event_receiver->handle_toolbar FOR grid1.
SET HANDLER event_receiver->handle_command FOR grid1.
SET HANDLER event_receiver->handle_button_click FOR grid1.
ENDFORM. " setting_event
*&---------------------------------------------------------------------*
*& Form setting_catalog
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM setting_catalog .
DATA ls_fieldcat TYPE lvc_s_fcat.
ls_fieldcat-fieldname = 'CARRID'.
* ls_fieldcat-drdn_hndl = '1'.
ls_fieldcat-drdn_field = 'DROP_DOWN_HANDLE'.
APPEND ls_fieldcat TO gt_fieldcat.
ENDFORM. " setting_catalog
*&---------------------------------------------------------------------*
*& Form getting_catalog
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM getting_catalog .
DATA : lt_fieldcat TYPE kkblo_t_fieldcat.
CALL FUNCTION 'K_KKB_FIELDCAT_MERGE'
EXPORTING
i_callback_program = sy-repid
i_tabname = 'GT_SFLIGHT'
* i_strucname = i_structure
i_inclname = sy-repid
CHANGING
ct_fieldcat = lt_fieldcat[]
EXCEPTIONS
inconsistent_interface = 1
OTHERS = 2.
IF sy-subrc EQ 0.
CALL FUNCTION 'LVC_TRANSFER_FROM_KKBLO'
EXPORTING
it_fieldcat_kkblo = lt_fieldcat[]
IMPORTING
et_fieldcat_lvc = gt_fieldcat[].
ENDIF.
ENDFORM. " getting_catalog
*&---------------------------------------------------------------------*
*& Form SETTING_CELL
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM setting_cell .
* SETTING CELL
DATA : lt_color TYPE lvc_t_scol,
ls_color TYPE lvc_s_scol,
lt_cellbtn TYPE lvc_t_styl,
ls_cellbtn TYPE lvc_s_styl,
ls_fieldcat TYPE lvc_s_fcat,
l_mode TYPE raw4,
l_type(4) TYPE c,
index TYPE i.
CLEAR index.
LOOP AT gt_sflight.
index = index + 1.
CLEAR: lt_color[], lt_cellbtn[].
LOOP AT gt_fieldcat INTO ls_fieldcat.
CLEAR ls_color.
ls_color-fname = ls_fieldcat-fieldname.
IF ls_color-fname EQ 'PLANETYPE'.
CASE gt_sflight-planetype.
WHEN '747-400'.
ls_color-color-col = 5.
ls_color-color-int = 0.
WHEN 'A319'.
ls_color-color-col = 3.
ls_color-color-int = 0.
WHEN 'A310-300'.
ls_color-color-col = 6.
ls_color-color-int = 0.
WHEN OTHERS.
* ls_color-color-col = 1.
* ls_color-color-int = 0.
ENDCASE.
INSERT ls_color INTO TABLE lt_color.
ENDIF.
* Display cell as PUSHBUTTON
CLEAR ls_cellbtn.
ls_cellbtn-fieldname = ls_fieldcat-fieldname.
IF ls_cellbtn-fieldname EQ 'CHK'.
ls_cellbtn-fieldname = 'CHK'.
ls_cellbtn-style = cl_gui_alv_grid=>mc_style_button.
* ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled. "
ELSEIF ls_cellbtn-fieldname EQ'QSTATUS' .
ls_cellbtn-style = cl_gui_alv_grid=>mc_style_enabled."
ENDIF.
INSERT ls_cellbtn INTO TABLE lt_cellbtn.
ENDLOOP.
CLEAR: gt_sflight-cellcolor[].
INSERT LINES OF lt_color INTO TABLE gt_sflight-cellcolor.
INSERT LINES OF lt_cellbtn INTO TABLE gt_sflight-cellbtn.
MODIFY gt_sflight INDEX index.
CLEAR gt_sflight.
ENDLOOP.
ENDFORM. " SETTING_CELL
*&---------------------------------------------------------------------*
*& Form SETTING_DROPDOWN
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --> p1 text
* <-- p2 text
*----------------------------------------------------------------------*
FORM setting_dropdown .
DATA: lt_dropdown TYPE lvc_t_dral,
ls_dropdown TYPE lvc_s_dral.
ls_dropdown-handle = '1'.
ls_dropdown-value = 'AA : American Airlines'.
APPEND ls_dropdown TO lt_dropdown.
clear ls_dropdown.
ls_dropdown-handle = '2'.
ls_dropdown-value = 'AZ : Alitalia'.
APPEND ls_dropdown TO lt_dropdown.
CALL METHOD GRID1->set_drop_down_table
EXPORTING
it_drop_down_alias = lt_dropdown.
ENDFORM. " setting_dropdown
*&---------------------------------------------------------------------*
*& Form BUILD_DATA
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* <--P_GT_SFLIGHT text
*----------------------------------------------------------------------*
form build_data changing pt_outtab type standard table.
data : ls_outtab like gt_sflight.
data : l_index type i.
loop at pt_outtab into ls_outtab.
l_index = sy-tabix.
*
if ls_outtab-carrid eq 'AA'.
ls_outtab-drop_down_handle = '1'.
else.
ls_outtab-drop_down_handle = '2'.
endif.
modify pt_outtab from ls_outtab.
endloop.
endform. " build_data
댓글 47
-
드라곤
2009.04.21 19:48
-
맹꽁이
2010.01.28 02:07
음.. 잘보았습니다.
처음 리스트 조회시 코드값만 보이는 문제를 해결하는 방법은 여기에도 업네여 ㅠㅠ
-
Kzputmrx
2010.11.27 12:09
Members of some generally non-theistic religions such as Buddhism, tend to believe in an afterlife, but without reference to a God., kostyum kniga skachat, lucky girl li shkola skachat, luchshaya klubnaya muzyka proslushat skachat, -
Sxbzbivh
2010.11.27 12:14
The members of the second group freely desire not to take the drug, but their will is overcome by the addiction., skachat serii icarly, skachat obychnuyu cs, skachat blank kurortnoi karty, -
Mghetlxu
2010.11.27 13:40
Despite this food borne disease is still a big problem in developed countries., niva rukovodstvo po ekspluatacii skachat, skachat asyu qip 2005, skachat imenye zvonki, -
Ijxskaml
2010.11.27 13:46
A man did not possess a nefesh but rather was a nefesh, as Gen., photoshop kniga skachat besplatno, microsoft office 2007 mso dll, skachat model autocad 3d, -
Jqoajzvi
2010.11.27 13:52
This claim has been made due to (to date) failed attempts to efficiently synthesize activated RNA nucleotides which have the capability to undergo self-polymerization., poisk skachat opera, diablo 3 skachat torrent, skachat prostoi sintezator, -
Lskywgja
2010.11.27 13:58
Psychiatric Nursing: Contemporary practice., autocad 2010 dlya chainikov, kompas 8.0, skachat besplatno oficialnuyu windows 7, -
Gjbxgpuq
2010.11.27 14:04
Heine, MD, PhD "Moderate Alcohol Consumption Lowers the Risk of Type 2 Diabetes" American Diabetes Association, Diabetes Care March 2005 vol., skachat referat po tovarovedeniyu, skachat rington na lyubimogo, skachat operu 10 na telefon, -
Uvcgtikt
2010.11.27 14:10
New bodies are donned by the dweller, like garments"., skachat igru sims 3 pitomcy, skachat minus sektor gaza, dnevnik shatunov skachat, -
Coppzypz
2010.11.27 14:33
This is regardless of whether they derive a salary or wage from the organisation, or receive any type of funding or assistance from the organisation for the purposes of working overseas., microsoft office aktivizaciya, microsoft office 2007 enterprise edition, c avtokad, -
Isadnjkc
2010.11.27 14:39
Within 30 days of opening, the new nursing home was filled to capacity., mihail krug svoboda skachat, windows xp skachat torrent fail, adobe photoshop skachat torent, -
Xlawojuh
2010.11.29 03:39
Both had dramatic and positive effects on black health status and outcome, but were discontinued., syncmaster 795 df draiver, radeon 9200 se family draiver, space koncert skachat, -
Uwzgmvpn
2010.11.29 03:56
In June 2006, Great Eastern and Chongqing Land Properties Group launched their 50:50 joint venture life insurance company, Great Eastern Life Assurance (China) Co Ltd., adobe photoshop ss3, znakomstva novotroick, znakomstva v habarovske s telefonom, -
Quwronhe
2010.11.29 04:02
The revelation of Carol's past as a prostitute had ended her marriage to Tom, and she had subsequently chosen to fake her death., skachat kartu dota 6.68, retro foto v fotoshope, autocad tutorial, -
Swwvntoh
2010.11.29 04:14
Hartman was almost bought and turned into a highway., elitnye prostitutki sankt peterburga, photoshop elements 8 rusifikator, prostitutku snyat v saratove, -
Nhohsnbs
2010.11.29 04:19
After Life's publication in 1952 of Ernest Hemingway's The Old Man and the Sea, the magazine contracted with the author for a 4,000-word piece on bullfighting., perm zakamsk prostitutki, gde naiti prostitutku, microsoft office professional plus serial, -
Fxohmyqr
2010.11.29 06:10
Prospective study of exogenous hormones and risk of pulmonary embolism in women., mafiya prohozhdenie putana, snyat prostitutku v donecke, pesnya putana putana putana nochnaya babochka, -
Qrmqutin
2010.11.29 09:36
This unit features mostly private rooms, decentralized nursing stations to keep caregivers closer to the patients and a large area for group physical therapy., h2o 3 sezon skachat torrent, skachat draiver vinyl ac 97, acer 5920g draivera, -
Ypedvdvy
2010.11.29 10:38
He said also that he encouraged the network to continue production, but Nickelodeon eventually decided to cancel the series., skachat rivatuner dlya windows 7, prostitutki semeinye, kisti dlya fotoshopa zavitushki, -
Exbviigt
2010.11.29 10:51
When it was full, men drew it ashore and sat down and sorted the good into vessels but threw away the bad., draivera dlya nokia 6267, skachat draivera dlya pleera texet, skachat office lite, -
Dimrpohc
2010.11.29 11:49
Vegetation and geobotanical areas of Moscow Region and adjacent regions., besplatnye seks znakomstva v krasnodare, znakomstva bryanskaya obl, skachat draiver lexmark x422, -
Lvipwjjt
2010.11.29 11:56
Benedictines have traditionally used the form of address "Dom" for men and "Dame" for solemnly professed nuns., canon pixma 3000 draiver, benq 6661 93e draiver, lisa i zayac skachat, -
Gsxavkpa
2010.11.29 13:07
He tries going to a priest, only to discover that the man to whom he is confessing is an old rival from their college years at Notre Dame., intimnye znakomstva tashkent, gde skachat originalnyi windows xp, znakomstva v kovrove, -
Mivtmasd
2010.11.29 14:19
The Internet Journal of Health., skachat fotoshop bez aktivacii, adobe photoshop cs rukovodstvo, nomera asek dlya znakomstva, -
Dqamlfbw
2010.11.29 16:58
Unlike the other proposals in the Plan there was no preceding discussion about this move, nor any clear explanation for this decision, which aroused considerable unhappiness amongst the staff and members., benq 6661 93e draiver, photoshop cs 5, kak polzovatsya photoshop cs2, -
Fqiedyvm
2010.11.29 17:18
Access to care is improved by decreasing the cost of care with a sliding fee scale based on income., skachat nikita malinin i dj, foxconn m61pmv draivera, rep saity skachat, -
Jawxxuop
2010.11.29 17:25
It is currently ranked 17th on the Fortune 500., skachat besplatno open office org, forum chat znakomstv, programmirovanie avtokad, -
Nrrrncne
2010.11.29 17:58
Biodiversity: world of insects., figury zvezd bez fotoshopa, fotoshop pricheski onlain besplatno, gde v rostove stoyat prostitutki, -
Qrolfiky
2010.11.29 18:11
The difficulties of financing the care of an increasing number of elderly people for increasingly long periods combined with an ever-shrinking tax base are very great., eminem talking to myself skachat, microsoft office 2007 mso dll, microsoft office 2010 full torrent, -
Nwrqabgl
2010.11.29 19:05
Does free will exist?Determinism is roughly defined as the view that all current and future events are causally necessitated by past events combined with the laws of nature., photoshop elements 8 rusifikator, rebyata snyali prostitutku, skachat kisti dlya fotoshopa arhiv, -
Ctsrhyyl
2010.11.29 20:27
Please improve it by verifying the claims made and adding references., benq 6661 93e draiver, skachat zemelnoe pravo rf, draiver atheros 5007eg, -
Yfinwnen
2010.11.29 21:35
The Cigarette Century: the Rise, Fall, and Deadly Persistence of the Product That Defined America., prostitutki altaiskogo kraya, draivera dlya printera phaser 3117, skachat video conventer, -
Ymlreevb
2010.11.30 13:22
It has also provided care to many celebrities, including Pennsylvania two-term governor and 1996 Presidential candidate Robert P., sait seks znakomstv v odesse, sait znakomstv klik, extensa 4220 draivera, -
Xnafrwau
2010.11.30 13:36
The policies are a mixture of traditional whole life and universal life., draiver radeon 3750, skachat autodesk autocad 2010, kak polzovatsya fotoshopom onlain, -
Yaljxbri
2010.11.30 14:24
Much of the show examined the challenges of a family whose son had Down Syndrome., sait znakomstv bez sms, microsoft office 2010 volume, klub znakomstv g kirov, -
Ouepxuqu
2010.11.30 14:38
Abortion rights advocates argue that prenatal humans are not human persons and do not have the same fundamental "right to life" as humans after birth., prostitutki astany video, prostitutki mosky, videouroki avtokad skachat besplatno, -
Jfwtsqqb
2010.12.01 08:57
However, because of continental drift, this kind of mammal flourished in Australia., draiver toshiba e studio163, compaq armada m700 draivera, skachat torrent poslednii gladiator, -
Lekeyapv
2010.12.01 12:48
In June 2008 Death Row Records was sold along with the rights to over 35 unreleased Tupac songs to Wideawake Ent., universalnyi draiver pechati, prostitutki metro sokolniki, skachat draiver deskjet d1460, -
Qihozyxp
2010.12.01 20:08
The degree to which the memories were considered credible by the experimental subjects was correlated most significantly to the subjects' beliefs about reincarnation and their expectation to remember a past life rather than hypnotizability., znakomstva g kaluga, znakomstva v barnaule besplatno, gomaseksualisty znakomstva, -
Jqhafhvr
2010.12.02 03:56
Afterward, Triple H brought out many current and retired superstars to thank Flair for all he has done, including Shawn Michaels, some of the Four Horsemen and Chris Jericho, followed by The Undertaker and then Vince McMahon., draiver sptd v 1.58 skachat, sony ericsson draivera windows 7, oblozhki dlya fotoshopa, -
Bmtfwank
2010.12.02 17:12
She dated Sheldon Shlepper who moved to Newfoundland., sumerki 3 skachat depositfiles, skachat biznes plan kartofel, draivera extensa 5620, -
Flpizjrc
2010.12.02 19:45
The tour was several brief concert-like performances by Madonna, took place in 2003, between the months of April and May., znakomstva anekdoty, deshevye prostitutki novosibirska, prostitutki semenovskaya, -
Jkdlfium
2010.12.03 17:02
Motor Vehicle Registration and License Plates., draivera dlya printera phaser 3116, klub rai muzyka skachat 2010, driver detective skachat klyuch aktivacii, -
Cksghkor
2010.12.03 19:13
Keywords and concepts in evolutionary developmental biology., prostitutki evpatorii, usb serial 4 draiver, starye prostitutki starshe 50 let, -
Zrudqxio
2010.12.07 16:04
Kuwait Cancer Control Center (KCCC) provides diagnosis and treatment for cancer patients., azerbaidzhanskie devushki znakomstva, hp c4583 draiver, draivera nvidia 5600, -
Ytdvtqso
2010.12.08 11:07
Status and Trends of the Nation's Biological Resources., prostitutki g novosibirska, osnovnye prichiny proishozhdeniya gosudarstva, kopii chasov v saratove,
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
271 | report zunicode_003. | sapjoy | 2008.11.22 | 2202 |
270 | report zunicode_002 | sapjoy | 2008.11.22 | 2563 |
269 | zunicode_001 | sapjoy | 2008.11.22 | 2397 |
268 | REPORT Z07_024 | sapjoy | 2006.12.09 | 2474 |
» | REPORT z18_033 [47] | sapjoy | 2008.10.13 | 9044 |
266 | REPORT Z13_021 [1] | sapjoy | 2008.09.29 | 2156 |
265 | REPORT Z17_004. | sapjoy | 2007.02.12 | 2508 |
264 | REPORT z19_005 [1] | sapjoy | 2007.04.04 | 2927 |
263 | REPORT z18_035 | sapjoy | 2007.03.14 | 2450 |
262 | REPORT z16_003 [1] | sapjoy | 2008.08.08 | 2551 |
261 | REPORT z16_002 | sapjoy | 2008.08.08 | 2649 |
260 | REPORT Z04_003 [9] | sapjoy | 2007.05.17 | 2561 |
259 | <b>ABAP SOURCE는 교재에 사용된 소스들입니다.</b> [1] | sapjoy | 2006.12.03 | 3619 |
258 | REPORT z18_037 [3] | sapjoy | 2008.04.22 | 2728 |
257 | REPORT z18_038 [2] | sapjoy | 2008.04.22 | 2636 |
256 | REPORT Z07_031 [2] | sapjoy | 2006.12.09 | 2309 |
255 | REPORT Z05_001 [3] | sapjoy | 2007.05.22 | 2881 |
254 | REPORT Z05_003 | sapjoy | 2007.05.22 | 2406 |
253 | REPORT Z15_027 . | sapjoy | 2007.02.01 | 2718 |
252 | REPORT Z17_021 . | sapjoy | 2007.02.21 | 2388 |
감사합니다. 잘 보겠습니다.