Monday, September 28, 2009

WorkFlow Transaction

SWi1 - To check workflow item

Tuesday, September 1, 2009

How to disable or enable the help link in masthead iView

Refer to this link on how to go to masthead Iview
Show Link in Masthead: Help < NO >

* To disable or enable the help link on the top frame of the portl
The actual location of the iview

Portal Content
+ Content Provided by SAP
+ Admin Interfaces
+ Admin iView Templates
+ Portal Editors
 Masthead



Sunday, August 23, 2009

Portal HelpLink How to Change


Go to
portal content ->
Portal users ->
Default framework page,
right click and choose edit.

In the editor on the right,
- select masthead iView and choose properties .
- You will find "URL of Help Link"
- You can Key in the new URL for the Help

Wednesday, August 12, 2009

Useful URL

Wanna compile a section url for me (dummy)
-----------------------------------------------
2009 Aug 13 - http://www.sapabapnotes.blogspot.com/ - link provided by mawarni

2009 Aug 13 - http://www.sapbasisnotes.blogspot.com/ - link provided by mawarni

Friday, July 31, 2009

Sequence to deploy EPA Files

Doing portal front end sometimes can be confusing.
But what we have learned that most of the time we need to properly package the EPA in order not to haywire it.
Ok straight to the point.

Normally we create (in sequences) the element / object
iview -> page -> workset -> Roles

So during the packaging
iviews and pages
It is best to put the iviews and pages together as we are directly changing it. We can deploy as much as we want.

Work Set n Roles
Each of them are to be package separately cause major changes are to be reflected in it.

Ps:/ this is my exp or should i say the level of understanding. Please do comment if i am wrong. And would glady change.. ^^

Creating PDF Form

TCODE : SFP
1. Create In sequence
- Interface
- FORM (adobe Life Cycle is needed to design the forms)

=========================================================
note sorry guys for the no posting from now onward when ever i have anything about sap i will surely put it here. Take care! ^^

Selfnote (please ignore this is for my daily notes)
---------------------------------------------------
Flexi Benefits
TCodes
SM31
SE16N

ZZ_WDA_FSA_B001_MOD Interface
ZZ_F_FSA_B002 Form



Tuesday, September 2, 2008

How to create a pop up message

Message With Yes and No Options
* DATA : RES type c.
* CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
* EXPORTING
* DEFAULTOPTION = 'Y'
* TEXTLINE1 = 'text-1'
* TEXTLINE2 = 'text-2'
* TITEL = 'text-3'
* IMPORTING
* ANSWER = res.
* case res.
* when 'A'. " cancel
* when 'J'. " yes
* when 'N'. " No
* endcase.

ERROR MEssaGE
message E899(bd) with 'BSC Score is not correct!!!!'.
MESSAGE I699(5A) WITH 'bla'
.

Call function Message
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
exporting
textline1 = 'BSC Score is not correct!!!!'.