Creating navigation item and the related activity

About this task

To link the Withdraw transaction to the RCP panel, you need to create related navigation item and activity. For more information, see Creating a navigation item and creating an activity to launch the transaction panel:
  1. Extend the com.ibm.btt.rcp.activity.activities extension point using the plug-in editor:
    1. Double-click plugin.xml file in BTTJumpStartSampleRCPClient project, and switch to Extensions tab. Click Add.
    2. Click com.ibm.btt.rcp.activity.activities in Extension Point filter, and click Finish.
    3. Right-click com.ibm.btt.rcp.activity.activities, and then select New > processorActivity.
    4. In Extension Element Details panel, enter the following values:
      • id: com.ibm.btt.jumpstart.sample.withdrawProcessActivity
      • processorId: withdrawProc
      • Name: withdrawProc
      • Unique: true
  2. Extend the com.ibm.btt.rcp.navigator.items extension point using the plug-in editor:
    1. Double-click plugin.xml file in BTTJumpStartSampleRCPClient project, and switch to Extensions tab. Click Add.
    2. Click com.ibm.btt.rcp.navigator.items in the Extension Point filter, and click Finish.
    3. Right-click com.ibm.btt.rcp.navigator.items, and then select New > folder.
    4. In the Extension Element Details panel, enter the following values:
      • Id: com.ibm.btt.jumpstart.sample.txnFolder
      • Name: Transactions
      • Icon: icons/folder.gif
      • Index: 1
    5. Right-click Transactions(folder), and then select New > item.
    6. In the Extension Element Details panel, enter the following values:
      • Id: com.ibm.btt.jumpstart.sample.WithdrawProcessItem
      • Name: Cash Withdraw
      • activityId: com.ibm.btt.jumpstart.sample.withdrawProcessActivity
      • Index: 3
      • Shortcut: wp
      • lauchCode: 0101
      • Icon: icons/item.gif

Results

Now, all the development of client side transactions have been finished.