SELF NOTE : appending and creating table and structure
1:39 AM
Some might not understand what is this but it is just for my notes : D
DATA : IT_DETAIL TYPE TABLE OF BAPIP0006LMY,
S_DETAIL LIKE LINE OF IT_DETAIL.
DATA : IT_DETAIL_FULL TYPE TABLE OF BAPIP0006LMY WITH HEADER LINE.
LOOP AT IT_DETAIL into S_DETAIL.
MOVE-CORRESPONDING S_DETAIL to IT_DETAIL_FULL.
APPEND IT_DETAIL_FULL.
ENDLOOP.
Another tips from Gaafar : D
DATA : IT_DETAIL TYPE TABLE OF BAPIP0006LMY,
S_DETAIL LIKE LINE OF IT_DETAIL.
DATA : IT_DETAIL_FULL TYPE TABLE OF BAPIP0006LMY WITH HEADER LINE.
LOOP AT IT_DETAIL into S_DETAIL.
MOVE-CORRESPONDING S_DETAIL to IT_DETAIL_FULL.
APPEND IT_DETAIL_FULL.
ENDLOOP.
Another tips from Gaafar : D
SAP GUI. Break Point!
1:35 AM
Just got to know that we can create a break point using our sy-uname.
just add this
break xxxxx.
" where by xxxxx. is your sy-uname also known as login name for back end sap
contributed by Gaafar ygl! :D
just add this
break xxxxx.
" where by xxxxx. is your sy-uname also known as login name for back end sap
contributed by Gaafar ygl! :D
adding tcode into sap menu (not favourite)
9:43 PM
12:40:12 PM: Koh Lee Yoong: fyi..regarding d sap menu...
12:40:28 PM: Koh Lee Yoong: whereby to add transaction..
12:40:37 PM: Koh Lee Yoong: u can use se43...n area menu should be s000
12:40:28 PM: Koh Lee Yoong: whereby to add transaction..
12:40:37 PM: Koh Lee Yoong: u can use se43...n area menu should be s000
How to assign Portal page to Sub Area
9:24 PM
Cross Application -> Homepage framework
Area
=====
Define Areas (Add Entries)
ZPAYMENTS Payments
Resources
=========
Define Resources ZPCBONLINE_RSC
Description = View PCB Online
URL :
ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/
com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/
com.sap.pct.erp.ess.employee_self_service/Payments/i_ZHR_PCB_ONLINE
**[Get from roles]
Services
========
Define Services (add)
Service Link Text View PCB Online
Service Type Webdynpro Abap application
Link Resource ZPCBONLINE_RSC
Service desp View your pcb online
Assign services to sub area (add and change)
============================================
ZPAYMENTS ZPCBONLINE_RSC 6
* remember the roles://
Area
=====
Define Areas (Add Entries)
ZPAYMENTS Payments
Resources
=========
Define Resources ZPCBONLINE_RSC
Description = View PCB Online
URL :
ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/
com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/
com.sap.pct.erp.ess.employee_self_service/Payments/i_ZHR_PCB_ONLINE
**[Get from roles]
Services
========
Define Services (add)
Service Link Text View PCB Online
Service Type Webdynpro Abap application
Link Resource ZPCBONLINE_RSC
Service desp View your pcb online
Assign services to sub area (add and change)
============================================
ZPAYMENTS ZPCBONLINE_RSC 6
* remember the roles://


