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://
ABAP how to round number
6:57 PM
DATA: mark_VALUEUNROUNDED type i,
mark_INTVAL type i.
mark_VALUEUNROUNDED = '4.01' .
mark_INTVAL = CEIL(
mark_VALUEUNROUNDED ).
WRITE:/ 'THIS IS AN OUTPUT ROUNDED to the nearest integer = ' , mark_INTVAL.
mark_INTVAL type i.
mark_VALUEUNROUNDED = '4.01' .
mark_INTVAL = CEIL(
mark_VALUEUNROUNDED ).
WRITE:/ 'THIS IS AN OUTPUT ROUNDED to the nearest integer = ' , mark_INTVAL.