Navigating to a view on click of a button in Webclient

Hi Gurus,
I am trying to navigate to a view from one view by clicking on a button.
What is the coding to be done in do_handle_event and what is the navigation link to be provided in the customized run-time repository.
Any help would be appreciated and points would be awarded
Thanks,
Jai

This may help.
ashish.
3.4.1 Creating the View Set and Controllers
The following steps are necessary to create your view set:
1. Use the wizard to create a new view set SimpleActivitySet.
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 93
2. Skip through all following steps in the wizard.
3. Redefine the method if_bsp_wd_history_state_descr~get_state_description in the
generated class ZL_Z_CRM_IC_SIMPLEACTIVIT_IMPL as follows:
METHOD if_bsp_wd_history_state_descr~get_state_description .
description = text-001. " 'Simple Activity'
ENDMETHOD.
This method is called by the framework whenever the quick navigation dropdown box is refreshed.
It returns the text to be displayed, in our case, Simple Activity. Double-click on text-001 in order
to create the program text.
4. Add the following code to the layout of the view set:
<%@page language="abap"%>
<%@ extension name="htmlb" prefix="htmlb"%>
<%@ extension name="xhtmlb" prefix="xhtmlb"%>
<%@ extension name="crm_bsp_ic" prefix="crmic"%>
<%@ extension name="bsp" prefix="bsp"%>
<crmic:gridLayout cellPadding="0" cellSpacing="2" columnSize="1" rowSize="1"
width="100%" height="100%">
<crmic:gridLayoutCell columnIndex="1" rowIndex="1" width="100%" height="34%">
<bsp:call comp_id="<%=controller->GET_VIEWAREA_CONTENT_ID( 'SimpAct' )%>"
url="<%=controller->GET_VIEWAREA_CONTENT_URL( 'SimpAct' )%>"/>
</crmic:gridLayoutCell>
</crmic:gridLayout>
This HTMLB code simply creates a grid layout with one cell. Within the cell, we call the view by its
ID (SimpAct). The ID is later on defined in the framework (cf. section 3.4.3.2).
This design has some overhead in our case, but it shows in general how more complex view sets
are to be designed. For example, see the view set definition of the interaction record,
IRecViewSet.htm, in the BSP application CRM_IC.
5. Activate all your objects.
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 94
3.4.2 Creating the View and Controllers
The following steps are necessary to create your view:
1. Start the IC WebClient workbench and right-click on the View Root node to create a new view.
2. In the wizard, enter the following data:
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 95
We do not define value nodes here. Value nodes are context nodes which are not bound to the
BOL model but implemented in the context classes.
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 96
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 97
3. After this step, restart the IC WebClient workbench and see your new view in the hierarchy:
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 98
The following methods will all be created/implemented in the controller implementation class
ZL_Z_CRM_IC_SIMPLEACTIVI_IMPL. The additional controller base class should never be changed!
1. Define the inbound plug. This will be the method that is called by the framework whenever we
navigate to our view set. For more information on the link definition, see section 3.4.3.3.
Sample Code: Inbound Plug
In general, there are two way of passing parameters:
• Via the business data context (BDC), which is represented by a custom controller.
At this custom controller you find the method SET_NAVIGATION_DATA and
GET_NAVIGATION_DATA to pass a context entity.
• Binding to custom controller context nodes which leads to data sharing between views.
In our example we bind BTORDER, the root context node of our new view, to the
context node CURRENTINTERACTION of the BDC (custom controller CuCoBDC).
When our view is created the data of CURRENTINTERACTION is automatically set to
the node BTORDER and the data for the dependant nodes is automatically derived.
2. You can define a dropdown list box for the status as described in section 3.3.
3. The wizard automatically creates two methods that are responsible for the data transfer between
the model/controller and the view:
• set_models
Sends data to the view. It is comparable to the PBO modules of traditional ABAP screen
programming.
• do_handle_data
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 99
Retrieves data from the HTTP request fields. It is comparable to the PAI modules of an
ABAP screen.
3.4.3 Adjusting IC WebClient Framework
After having defined the views, controllers, and classes, we need to assign them to the runtime profile of
IC WebClient.
The first time you do this, there are some preparations needed which are explained in the following
section. After the preparation, the view and view set specific work for our example is explained.
3.4.3.1 Preparation
In order to prepare the IC WebClient framework for custom-built view sets, we need to create a new
runtime profile BSP application in the customer namespace. This BSP application will contain one page,
called CRM_IC.xml. It will contain the definition of all view sets and all navigational links by including the
corresponding files that actually contain the definitions. We build all this according to standard structures,
though it doesn’t necessarily have to be this way.
To make things a bit simpler, we do not split up the repository into runtime and design time. All changes
we make are only relevant for the runtime repository.
Perform the following steps:
1. Create the BSP application Z_CRM_IC_RT_REP in the package Z_CONS_COOK.
2. Copy the file CRM_IC.xml from the BSP application CRM_IC_RT_REP to Z_CRM_IC_RT_REP.
3. Adjust the contents of this file according to the changes shown in bold in the following sample
code:
<?xml version="1.0"?>
<WebDynProDefinitions>
<Application id="CRM_IC">
<ViewSets>
<%@include file="../Z_CRM_IC_RT_REP/CRM_IC_All_Viewsets.xml" %>
</ViewSets>
<NavigationalLinks>
<%@include file="../Z_CRM_IC_RT_REP/CRM_IC_All_NavLinks.xml" %>
</NavigationalLinks>
</Application>
</WebDynProDefinitions>
Hence, CRM_IC.xml includes two more XML files which can be found in BSP application
Z_CRM_IC_RT_REP.
4. Create BSP application Z_CRM_IC_RT_REP in package Z_CONS_COOK.
5. Copy page fragment CRM_IC_All_Viewsets.xml of BSP application CRM_IC_DT_REP to
Z_CRM_IC_RT_REP and replace the file contents with the following lines:
<%@ include file="MainViewSet.xml" %>
<%@ include file="../CRM_IC_DT_REP/BuPaViewSet.xml" %>
<%@ include file="../CRM_IC_DT_REP/CRM_IC_All_Viewsets_wo_BUPA_and_Main.xml"
%>
This definition still works with all standard view sets, but replaces the MainViewSet.xml with our
own definition, since it is now loaded from Z_CRM_IC_RT_REP.
6. Copy page fragment MainViewSet.xml from BSP application CRM_IC_DT_REP to
Z_CRM_IC_RT_REP.
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 100
7. Copy page fragment CRM_IC_All_NavLinks.xml of BSP application CRM_IC_DT_REP to
Z_CRM_IC_RT_REP and replace the file contents with the following line:
<%@ include file="../CRM_IC_DT_REP/CRM_IC_All_NavLinks.xml" %>
This definition makes sure that standard navigational links still work and that we are able to add
our own link definitions later on.
8. Activate all objects.
9. Customize the IC WebClient runtime framework profile in such a way that the new source file is
used, as shown in the following sample code:
<?xml version="1.0"?>
<RuntimeFrameworkSettings>
<RuntimeRepositorySource type="BSP">
<BspApplication>Z_CRM_IC_RT_REP</BspApplication>
<PageName>CRM_IC.xml</PageName>
</RuntimeRepositorySource>
<WorkareaDefinition>
<ViewSet>workViewSet</ViewSet>
<ViewArea>workViewSetArea</ViewArea>
</WorkareaDefinition>
<ControllerReplacements>
<ControllerReplacement>
<ReplacedController>BuPaMoreContactView</ReplacedController>
<ReplacingController>Z_CRM_IC/BuPaMoreContactView</ReplacingController>
</ControllerReplacement>
<ControllerReplacement>
<ReplacedController>IRecReason</ReplacedController>
<ReplacingController>Z_CRM_IC/IRecReason</ReplacingController>
</ControllerReplacement>
</ControllerReplacements>
<InteractionLayerApplication>ALL</InteractionLayerApplication>
</RuntimeFrameworkSettings>
3.4.3.2 Creating View Definitions for Design Time Repositories
Every new view set must be defined in the runtime repository.
1. Create page fragment SimpleActivitySet.xml in BSP application Z_CRM_IC_RT_REP and maintain it
as shown in the following sample code:
<ViewSet id="Z_CRM_IC/SimpleActivitySet">
<ViewArea id="SimpAct" views="Z_CRM_IC/SimpleActivity"/>
</ViewSet>
The view area ID (SimpAct) is the name of the literal used in the bsp:call tag. For more
information, see section 3.4.1.
2. Include this file in the framework. Place the following line into page CRM_IC_All_Viewsets.xml in
BSP application Z_CRM_IC_RT_REP:
<%@ include file="SimpleActivitySet.xml" %>
3. Activate your objects.
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 101
3.4.3.3 Creating Navigational Link Definitions for Design Time Repositories
In order to provide a navigational link for the activity clipboard, we need to define this link.
1. Create page fragment SimpleActivityNavLinks.xml in BSP application Z_CRM_IC_RT_REP and
maintain it as shown in the following sample code:
<NavigationalLink name="SimpleActivity">
<Source viewRef="IRecActivitiesClipboard" outboundPlugRef="default"/>
<Targets>
<Target viewRef="Z_CRM_IC/SimpleActivity"
inboundPlugRef="inboundplugid"/>
</Targets>
</NavigationalLink>
The name of the link is SimpleActivity. We will refer to it in the activity clipboard Customizing. For
more information, see section 3.4.3.5. The link can be activated on the view
IRecActivitiesClipboard and it navigates to the view SimpleActivity in BSP application
Z_CRM_IC. When the target view is activated, method ip_inboundplugid of the view controller
class is called.
The framework adds the prefix “ip_” automatically for this method.
2. Similar to the view definition, include the navigational link into the runtime repository. Add the
following line to the file CRM_IC_All_NavLinks.xml in BSP application Z_CRM_IC_RT_REP:
<%@ include file="SimpleActivityNavLinks.xml" %>
3. Activate your objects.
3.4.3.4 Placing View Sets into Controller Hierarchies
After the view set and the navigational link are defined, we finally add our new view to the possible views
for the work area. We need to adjust the file MainViewSet.xml in BSP application Z_CRM_IC_RT_REP. Add
the reference to our view set and activate the file as shown in the following sample code:
<ViewSet id="ICAPPMainViewSet">
<ViewArea id="navigationArea" views="navigationViewSet"/>
<ViewArea id="workArea" views="workViewSet"/>
<ViewArea id="contextArea" views="contextAreaView"/>
<ViewArea id="breadCrumbsArea" views="BreadCrumbsView"/>
<ViewArea id="globalSearchArea" views="HistoryView"/>
<ViewArea id="helpArea" views="Help"/>
<ViewArea id="statusArea" views="StatusView"/>
<ViewArea id="errorArea" views="ErrorViewSet"/>
</ViewSet>
<ViewSet id="navigationViewSet">
<ViewArea id="navigationViewSetArea" views="NavBarView"/>
</ViewSet>
<ViewSet id="workViewSet">
<ViewArea id="workViewSetArea"
views="<%@include file='../CRM_IC_DT_REP/StdWorkareaOccupation.xml' %>
Z_CRM_IC/SimpleActivitySet"/>
</ViewSet>
Consultant’s Cookbook for Interaction Center (IC) WebClient SAP CRM 4.0 Add-On for Service Industries Page 102

Similar Messages

  • Call webservice URL through view, on click of a button

    Hello Gurus,
    I have a local development webdynpro project . My requirement is that on click of a submit button, webservice is called and it returns a string which i need to display on the view. I searched a lot but couldnt find the exact step by step process.
    While creating the web service model, which one dhould i choose n then after model creation
    what code should i write to call webservice.
    Regards
    nishu

    Hello All,
    Thanks for all your replies. I am able to create model and bind it to my component controller.
    But when i write the code to call webservice , i am unable to instanciate the model....
    I wrote the following code :
    testmodel = new Soap(); - (1)
    Request_ServiceSoap_insertTicket insert = new Request_ServiceSoap_insertTicket(testmodel); - (2)
    insert.setUserId("CCM_RUS");   
    wdContext.nodeRequest_ServiceSoap_insertTicket().bind(insert);
    private Soap testmodel;
    In Above code , line (1) , 'Soap' is the name of my WebService model, which i made by importaing the wsdl file from my local system. And line (2), i amd getting error :
    the constructor Request_ServiceSoap_insertTicket(testmodel) is undefined.
    If i remove the 'testmodel' and just write Request_ServiceSoap_insertTicket() , the webservice is not called, since model instantiation is necessary for webservice Models. I am stuck
    Please help
    Thanks
    Nishu
    Edited by: nishu_rj on Aug 23, 2011 9:01 AM

  • Controlling Triggering of "WDDOMODIFYVIEW" on click of a button in view

    Hi all,
    I have a Button in a view,
    on click of the button the "WDDOMODIFYVIEW" Executes before the action for the button executes.
    I've a requirement that the "WDDOMODIFYVIEW" shouldnt execute on click of the button in that view.
    Is it possible to control??
    Best Regards,
    Shravan.

    Hi,
    When you a click a button, method "WDDOBEFOREACTION" will trigger first. Then the method "WDDOMODIFYVIEW" will trigger.
    So you can try the below method:
    1. Create a local attribute lv_action_flag in the attribute tab of the view type as "WDY_BOOLEAN".
    2. Write logic in the method "WDDOBEFOREACTION" to find the button clicked and set a local flag over there.
        data lo_api_controller type ref to if_wd_view_controller.
      data lo_action         type ref to if_wd_action.
      lo_api_controller = wd_this->wd_get_api( ).
      lo_action = lo_api_controller->get_current_action( ).
      if lo_action is bound.
        case lo_action->name.
          when '...'. <<Check your action name eg:Show
           wd_this->lv_action_flag = abap_true.
          when others.
            clear wd_this->lv_action_flag.
        endcase.
      endif.
    3. In the beginning of the method  "WDDOMODIFYVIEW" Check the "lv_Action_flag" attribute .
    like
    check wd_this->lv_action_flag is initial.
    <<Your entire logic in this method>>
    Hope this will be helpful
    Regards,
    Meganadhan S

  • What to do to add some UI elements in a group element on click of a button?

    I want to add Input fields and labels in the a group in a view on click of a button.
    How to :
    1)Access the right gropu in view through code?
    2)Create elements in the group through code?
    Please reply soon!
    Sumit

    You need a flag to signal that the elements should be added with the next call to wdDoModifyView().
    Add a boolean context attribute "AddFields" to the view context and set it to true in the action handler for the button:
    void onActionAddFields(...)
      wdContext.currentContextElement().setAddFields(true);
    In method wdDoModifyView(), check the flag and reset it after the code that adds the fields:
    (I assume the group has a MatrixLayout)
    static void wdDoModifyView(...)
      if (wdContext.currentContextElement().getAddFields())
        /* access group by ID given at designtime */
        IWDGroup group = (IWDGroup) view.getElement("groupID");
        IWDLabel label = (IWDLabel) view.createElement(IWDLabel.class, null);
        /* if new row in MatrixLayout should be started: */
        IWDMatrixHeadData labelLayoutData = label.createLayoutData(IWDMatrixHeadData.class);
        /* change settings for layout data if needed */
        label.setText("whatever");
        IWDInputField field = (IWDInputField) view.createElement(IWDInputField.class, null);
        /* if in same row as label: */
        IWDMatrixData fieldLayoutData = field.createLayoutData(IWDMatrixData.class);
        /* change field layout data if needed */
        field.bindValue("context.attribute.path");
        label.setLabelFor(field);
        group.addChild(label);
        group.addChild(field);
        wdContext.currentContextElement().setAddFields(false);
    Armin

  • SharePoint 2013---How to convert current left Navigation into tree view

    Hi All,
    I want to convert current left navigation into tree view in SharePoint 2013. When we click on Modify Navigation and set headers and links; I need that should be convert into tree view. All headers should be expandable to thier links.
    I just want tree view on navigation headers and links. not for all site and subsites which we can enabled from site settings --> Modify All Site settings --> Tree view
    Please help me Master Page editing on Navigation Generation.. Thanks in advance!
    Regards,
    Anna

    Hi Anna,
    If you want to replace the Quick Launch part with the custom treeview web part in master page, you can comment out or remove the quick launch code block "<!--SPM:<SharePoint:SPNavigationManager id="QuickLaunchNavigationManager.....>....<>-->",
    then insert the custom web part snippet code in proper location in seattle master page, then all pages inheriting the seattle master page will have this web part.
    Note, please back up the master page before customizing the original master page for recovery.
    http://msdn.microsoft.com/en-us/library/office/jj862341(v=office.15).aspx
    http://www.sharepointpals.com/post/Add-snippets-in-Page-layout-using-design-manager
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • Firefox bookmark toolbar not allowing me to drag & drop website icons. I've gone into view and click on " bookmark toolbar".

    firefox bookmark toolbar not allowing me to drag & drop website icons. I've gone into view and click on " bookmark toolbar". bookmark toolbar appears but its but its not allowing me to drag and drop the icon on the toolbar. i've tried everything that one is supposed to do but its not working. its frustrating.
    stef./.\

    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible.
    *View > Toolbars
    *Right-click empty toolbar area
    Use Toolbar Layout (Customize) to open the Customize window and set which toolbar items to display.
    *check that "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *if "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette into the Customize window to the Bookmarks Toolbar
    *if missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *if you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar setup
    *https://support.mozilla.org/kb/How+to+customize+the+toolbar
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing
    You can check for problems caused by a corrupted localstore.rdf file if the above didn't help.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Navigating Between 2 views in webdynpro application

    Hi All,
    I am creating a webdynpro application with 2 views. when i click the next the first view an action would be triggering the next view. Component controller context is being used.
    Component Controller - 2 value attributes are there. These are mapped to view 1 and view2.
    view1 - has these 2 value attributes
    view 2 - has these 2 value attributes and 1 node with some attributes.
    But in view 2 , i am using only that node. When i deploy the application, when i click the button on the first view, another window popups, saying "500 internal error". But the view1 and view2, code is completely free of error. if so, why it is not displaying data of view2?
    Regards,
    Divya

    Divya,
    Go through <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d5c09c90-0201-0010-17a8-c473134632df">link</a> link. This may be very useful as it gives step by step process for navigation from one view to another on firing of an event.
    Let me know if you have any concerns.
    Regards,
    Ankit

  • Unable to find matching navigation case from view ID.  Error 404

    Hi All,
    I basically wanted to jumpstart my ADF exploration so I am following the tutorial at this link. [http://www.oracle.com/technetwork/developer-tools/jdev/ccset22-all-099343.html]
    Everything looks good but when I click the Edit Button, I am encountering an error. What I did was I change the logging mechanism into a FINER in my WLS and from the logs,
    it prints below messages.
    <NavigationHandlerImpl> <getViewId> "JSF1013: Unable to find matching navigation case from view ID '/orders-flow/editOrders' for outcome 'save' and action 'save'
    <ViewHandlerImpl> <executePageToBuildView> About to execute view /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> Before dispacthMessage to viewId /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> After dispacthMessage to viewId /orders-flow/editOrdersI checked out the taskflow and it is basically calling a task-flow-return component.
    I followed everything but I cant make this example work... Any idea why? I checked out the DB and I notice that it has commited my Edit Transaction but I am getting a 404 on my page. Please help. Thanks.

    Hi Frank,
    I think I got the save control flow case.
    Can you help me check please if I miss something? I uploaded my project at this link. [http://www.4shared.com/file/QFcofTfj/BrowseEditApp.html]
    I am quite not sure if I miss something but I have done this project twice already but got the same result.
    Thanks
    Edited by: Marky on 13.4.2011 5:59

  • Previous page navigation after on click of cancel button of a form in adf

    Hi,
    Can any one tell how previous page navigation works in adf?
    I am working on a portal page which is having a common footer for all jspx pages.This footer contains a golink for feedback form.
    so the problem is when I Navigate to any page (# page 1)and then Navigate to some other page (#page 2) and on click of Feedback link displayed on footer of page 2 Feedback form is displayed. and on Click of Cancel button of the form.
    Expected Result:
    User should be navigated to the page that they were on. (i.e., Page 2)
    Actual Result:
    User is navigated to page 1 instead of page 2
    i.e it is taking browser previous url.
    I am using the following code for the cancel button
    <af:commandLink text="Cancel" id="cl5">
    <af:clientListener method="goBack" type="click"/>
    </af:commandLink>
    java script....
    function goBack()
    window.history.back()
    Edited by: 993530 on Apr 23, 2013 3:35 AM

    Hi,
    Immediate = true is already been set for cancel button
    The problem is when i come back to the 1st page vo is getting executed again and is taking lot of time.. i need to see that vo does not get executed again
    in the vo for view criteria -- query execution mode , i have made as in memory and now it has become fast on click of cancel button. But i am getting the following error when i perform search in the first page
    Missing FROM in a SELECT statement
    An unexpected expression token is found.
    Thanks,
    .

  • TS3147 After installing Mountain Lion, I tried to scan from my Canon MX870 and received the message: "MP Navigator EX quit unexpectedly. Click Reopen to open the application again. A report will be sent to Apple,"

    After installing Mountain Lion, I tried to scan from my Canon MX870 and received the message: "MP Navigator EX quit unexpectedly. Click Reopen to open the application again. A report will be sent to Apple,"  This problem happened right after I installed Mountain Lion. I then downloaded Canon's upgraded software and drivers for the MX 870 and the problem was resolved. Now one month later, the problem has returned.

    rjliii wrote:
    Solved problem with original Canon software.  When I downloaded Canon software upgraded for OS X 10.8, I got all by Navigator Ex. Noticed that on Canon's site, the upgraded version is 3.1; my app was 2.1. Upgraded to 3.1 for Nav. Ex, and it works.
    You should still use Image Capture IMHO.  If it was my gear, that's what I would do.  No need to worry about software upgrades.

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>iTunes and App Stores and sifnout and sign back in
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • Launching URL clicking on a button of a view of BSP Component

    Hi  Gurus,
    I have a requirement of opening a webdynpro URL by clicking on a button in a view of a standard BSP component. I have created one transaction launcher and assigned it to a logical link " ZOPP_CRT". In the event handler of the button I have written the following code.
    method EH_ONOPP_NEW.
    Added by wizard: Handler for event 'OPP_NEW'
    data: lv_nav Type ref to if_crm_ui_navigation_service.
    lv_nav = cl_crm_ui_navigation_service=>get_instance( me ).
    lv_nav->navigate( iv_link_id = 'ZOPP_CRT' ).
    endmethod.
    I have also checked the following links:
    Event triggers transaction launch
    Requirements using Transaction Launcher
    Still it is not working. Please suggest.
    Thanks

    Hi Raghunadh,
    You can find the details here:
    [http://wiki.sdn.sap.com/wiki/display/CRM/SAPCRMTransactionLaunchertoSAPERPBORObjects-Debugging|http://wiki.sdn.sap.com/wiki/display/CRM/SAPCRMTransactionLaunchertoSAPERPBORObjects-Debugging]
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3059fb20-987f-2e10-ef82-d147b9b5e8b4?QuickLink=index&overridelayout=true|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3059fb20-987f-2e10-ef82-d147b9b5e8b4?QuickLink=index&overridelayout=true]
    Regards
    Leon

  • Fcx4 bin clips are not appearing in the viewer after clicking on them.

    fcx4 bin clips are not appearing in the viewer after clicking on them , i need help getting them to appear in the viewer.

    I have the same issue. I am using apex.oracle.com for some test applications, but for last couple of weeks when I login and click the "Application builder" I could not see my applications there (around 4-5 of them)! It says No applications found.
    Neither I have any application groups setup nor do any criteria given in "Application" search field under "Application builder".
    The only way I could access some, if not all, of my applications is to pull it from the link under the context box "Recent" (which you can see in the right hand side of the "Application builder" page.)
    Any help is greatly appreciated. This issue is not a show stopper as I could still pull out my critical applications from the recent link, but its definitely a worrisome issue.
    Thanks in advance
    Regards
    Ligon Gopinathan

  • Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??

    Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??
    Then a few minutes later, it goes back to expanded again, it is driving me crazy.  how can I stop this????
    Thanks for any help.

    There could be a number of reasons, first thing to check is if you are clicking Command + or Command -. The Command 0 keystrokes restore Safari to the actual size. You can also reset Safari by Safari - Reset.

Maybe you are looking for

  • DSO - Key figure  summation

    Hi Experts. I have a question on how BW is thinking when updating DSOs. If I mark the keyfigures in the DSO to summarize, what will then be the effect. If I compare to a SQL sentence I will sum the keyfigures for sure. But will i Group by all the oth

  • Duplicate copies of music

    Hi, I have had a problem with my hard drive crashing and had to reload my music files into Itunes. However, because the new files are in a new location the computer read them as all new files and created duplicates of all the songs (2000+). Is there

  • Need more disk space - Suggestions?

    I am running out of disk space on my 20" 2GHz Intel iMac. I'm thinking upgrading the internal disk will result in much better performance than adding an external drive (I currently have an external drive used only for Time Machine). What advice do yo

  • SSRS Multi Page Reports

    Hi All, I am new to SSRS reports. I have to build a multi-page report. I have a list of data. data = {Name, address, email} data[0] = {abc, abc street, [email protected]} data[1] = {def,def street, [email protected]}... ...data[n]={xyz, xyz street, [

  • Http, advice about instalation please.

    Could somebody who as had FTTP installed clarify something for me. I'm waiting for mine to be installed and believe that where the fibre comes into the building there will be a box like the master phone socket. I have had the Home Hub 5 delivered so