Hi students, Last two batch students can use this resume points and prepare accordingly.
SAP TECHNICAL CONSULTANT
( ABAP, WEBDYNPRO ABAP )
------------------------------ ----------------
Overall Around 3 Years experience in SAP ABAP Techincal domain.
Around 2 years experience in ABAP/4 developement.
Around 1 year experience in WebDynpro ABAP development .
One ( 1 ) full life cycle implementation experience in ABAP/4 development.
one ( 1 ) full life cycle implementation experience in Weddynpro ABAP development.
------------------------------ ------------------------------ ------------------------------ -
WEBDYNPRO ABAP Summary:
Developed Web Applications using WebDynpro ABAP framework with MVC pattern.
Experience in Using FPM( Floor Plan Manager ) framework for SAP standard UI Guidelines.
Involved in implementing Context Based, Window Based, Message based, Cross component, Portal integration, Floor plan Manager and Dynamic programming for developing Web Based Applications.
Involved in integrating & customizing web Based ALV features using SALV_WD_Table Component.
Experience in customizing standard components using webdynpro Enhancement framework.
Good Knowledge in developing Adobe Forms uisng Adobe Live cycle Designer
Attended NET310 WebDynpro ABAP as part of Corporate Training.
------------------------------ ------------------------------ -----------------------
ABAP Summary:
---------
---------
---------
------------
Skill set:
Web Technology : Webdynpro ABAP
Architecture : Model View Controller
UI Guidelines : Floor Plan Manager
Form Designing : Adobe Forms ( online & Offline )
Programming : ABAP/4.
SAP ERP : SAP R/3 4.7 ,SAP ECC 6.0
------------------------------ -----------------------------
WebDynpro Project Objects:
------------------------------ -----
Developed custom Web Based Interactive Reports using WebDynpro ABAP Framework using MVC pattern and View Assembly.
a)1
b)2 < report description>
c)3 < report description>
d)4 < report description>
e)5 < report description>
f)6 < report description>
g)7 < report description>
Developed Web Based Screens and Reports using complex Screen Elements like RoadMap, View Containers, Tables, Business Graphics,Contextual Panels , Interactive Form etc.
Configured webdynpro Components using Floor Plan Manager using UIBB's ( User Interface Building Blocks ).
Customized Employement Background verification Form using Adobe live cycle Designer.
Developed Custom Webdynpro Component for Dealing with offline Adobe Form Scenario.
Used FPM_GAF_Component for Configuring Custom components and respective windows for RoadMap scenarios.
Used FPM_OIF_Component for Configuring Custom components and respective windows for Tabstrip scenarios.
Developed Web Application for < BUSINES MODULE DOMAIN > using Roadmap without FPM model.
Converted Normal RoadMap scenario based applications to FPM based Web applications.
customized standard HR based components using webdynpro Enhancement framework.
a) Conditionally enable-disable fields on Standard HR Views.
b) Conditionally hide-visible fields on Standard HR Views.
c) Adding Custom Views under Standard HR views using View Containers.
Involved in implementing Context Based, Window Based, Message based, Cross component, Portal integration, Floor plan Manager and Dynamic programming for developing Web Based Applications.
Involved in integrating & customizing web Based ALV features using SALV_WD_Table Component.
Resolved Browser Based Tickets as apart of Webdynpro Support Activities.
------------------------------ ------------------------------ ------------------------------ ------------------
ABAP 1 Project1:
ABAP 2 Project 2:
==========================================================
WebDynpro ABAP Programming :-
Copy Functionalities in WebDynpro ABAP:
Copy all records ( From one node to another node )------------------------------ ------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count( ).
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu tes( importing static_attributes = ls_itab ).
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib utes( exporting static_attributes = ls_itab ).
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
enddo.
------------------------------ ------------------------------ -----
Copy selected Records from one node to another node------------------------------ -------------------------
Note: Is_selected( ) will check whether record is selected or not.....
------------------------------ ------------------------------ -------------------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count( ).
Do count times.
if lo_nd_itab->Is_selected( index = sy-index ) = abap_true.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu tes( importing static_attributes = ls_itab ).
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib utes( exporting static_attributes = ls_itab ).
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
------------------------------ ------------------------------ -------------
Copy records based on Conditions: for example ( Permarks > 50 )material price > 50000
material quatnitiy > 50
ACTION:
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count( ).
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu tes( importing static_attributes = ls_itab ).
if ls_itab-permarks > 50.
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib utes( exporting static_attributes = ls_itab ).
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
------------------------------ ------------------------------ ---------------
------------------------------ ------------------------------ --------------
For multi selection of table:
selection ---multi no Lead
------------------------------ ---------
in component contrlller itab and change node itab selection ---( 0- n )
------------------------------ ------------------------------ ----------------------
When node structures are different: ------------------------------ -------------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count( ).
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu tes( importing static_attributes = ls_itab ).
ls_itab2-id = ls_itab-id.
ls_itab2-name = ls_itab-name.
ls_itab2-salpm = ls_itab-salpm.
ls_itab2-permarks = ls_itab-permarks.
if ls_itab-permarks > 50.
ls_itab2-simage = 'Pass.GIF'.
ls_itab2-status = 'PASS'.
elseif Ls_itab-permarks < 50.
ls_itab2-simage = 'FAIL.GIF'.
ls_itab2-status = 'FAIL'.
endif.
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib utes( exporting static_attributes = ls_itab2 ).
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
==============================================
SAP TECHNICAL CONSULTANT
( ABAP, WEBDYNPRO ABAP )
------------------------------
Overall Around 3 Years experience in SAP ABAP Techincal domain.
Around 2 years experience in ABAP/4 developement.
Around 1 year experience in WebDynpro ABAP development .
One ( 1 ) full life cycle implementation experience in ABAP/4 development.
one ( 1 ) full life cycle implementation experience in Weddynpro ABAP development.
------------------------------
WEBDYNPRO ABAP Summary:
Developed Web Applications using WebDynpro ABAP framework with MVC pattern.
Experience in Using FPM( Floor Plan Manager ) framework for SAP standard UI Guidelines.
Involved in implementing Context Based, Window Based, Message based, Cross component, Portal integration, Floor plan Manager and Dynamic programming for developing Web Based Applications.
Involved in integrating & customizing web Based ALV features using SALV_WD_Table Component.
Experience in customizing standard components using webdynpro Enhancement framework.
Good Knowledge in developing Adobe Forms uisng Adobe Live cycle Designer
Attended NET310 WebDynpro ABAP as part of Corporate Training.
------------------------------
ABAP Summary:
---------
---------
---------
------------
Skill set:
Web Technology : Webdynpro ABAP
Architecture : Model View Controller
UI Guidelines : Floor Plan Manager
Form Designing : Adobe Forms ( online & Offline )
Programming : ABAP/4.
SAP ERP : SAP R/3 4.7 ,SAP ECC 6.0
------------------------------
WebDynpro Project Objects:
------------------------------
Developed custom Web Based Interactive Reports using WebDynpro ABAP Framework using MVC pattern and View Assembly.
a)
b)
c)
d)
e)
f)
g)
Developed Web Based Screens and Reports using complex Screen Elements like RoadMap, View Containers, Tables, Business Graphics,Contextual Panels , Interactive Form etc.
Configured webdynpro Components using Floor Plan Manager using UIBB's ( User Interface Building Blocks ).
Customized Employement Background verification Form using Adobe live cycle Designer.
Developed Custom Webdynpro Component for Dealing with offline Adobe Form Scenario.
Used FPM_GAF_Component for Configuring Custom components and respective windows for RoadMap scenarios.
Used FPM_OIF_Component for Configuring Custom components and respective windows for Tabstrip scenarios.
Developed Web Application for < BUSINES MODULE DOMAIN > using Roadmap without FPM model.
Converted Normal RoadMap scenario based applications to FPM based Web applications.
customized standard HR based components using webdynpro Enhancement framework.
a) Conditionally enable-disable fields on Standard HR Views.
b) Conditionally hide-visible fields on Standard HR Views.
c) Adding Custom Views under Standard HR views using View Containers.
Involved in implementing Context Based, Window Based, Message based, Cross component, Portal integration, Floor plan Manager and Dynamic programming for developing Web Based Applications.
Involved in integrating & customizing web Based ALV features using SALV_WD_Table Component.
Resolved Browser Based Tickets as apart of Webdynpro Support Activities.
------------------------------
ABAP 1 Project1:
ABAP 2 Project 2:
==========================================================
WebDynpro ABAP Programming :-
Copy Functionalities in WebDynpro ABAP:
Copy all records ( From one node to another node )------------------------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count(
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
enddo.
------------------------------
Copy selected Records from one node to another node------------------------------
Note: Is_selected( ) will check whether record is selected or not.....
------------------------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count(
Do count times.
if lo_nd_itab->Is_selected( index = sy-index ) = abap_true.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
------------------------------
Copy records based on Conditions: for example ( Permarks > 50 )material price > 50000
material quatnitiy > 50
ACTION:
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count(
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu
if ls_itab-permarks > 50.
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
------------------------------
------------------------------
For multi selection of table:
selection ---multi no Lead
------------------------------
in component contrlller itab and change node itab selection ---( 0- n )
------------------------------
When node structures are different: ------------------------------
lo_nd_itab2->invalidate( ).
data count type i.
count = lo_nd_itab->get_element_count(
Do count times.
lo_el_itab = lo_nd_itab->get_element( index = sy-index ).
lo_el_itab->get_static_attribu
ls_itab2-id = ls_itab-id.
ls_itab2-name = ls_itab-name.
ls_itab2-salpm = ls_itab-salpm.
ls_itab2-permarks = ls_itab-permarks.
if ls_itab-permarks > 50.
ls_itab2-simage = 'Pass.GIF'.
ls_itab2-status = 'PASS'.
elseif Ls_itab-permarks < 50.
ls_itab2-simage = 'FAIL.GIF'.
ls_itab2-status = 'FAIL'.
endif.
lo_el_itab2 = lo_nd_itab2->create_element( ).
lo_el_itab2->Set_static_attrib
lo_nd_itab2->bind_element( new_item = lo_el_itab2 set_initial_elements = abap_false ).
endif.
enddo.
==============================================
No comments:
Post a Comment