Enable Navigation to WebClient View from Inbox of IC

Hi All,
I am using CRM 2007. In the IC, when you click on a particular transaction in the Quick Create group we have it enabled to navigate to the Web Client view for that particular transaction within the IC. This is working fine which is great.
However, when you save the transaction in question and you go to the Inbox and select the transaction that was saved, the saved transaction shows up in the IC view. We wish to have this saved transaction to show up in the web client view from within the IC when selected from the Inbox.
Does anyone know if this could be achieved through customizing?? If there is a way to direct the saved transaction in the Inbox to the web client view by changing the link in some way?
It is only required for a particular transaction.
I know this can more than likely be achieved through programming but is there a customizing option out there for this?
Thanks for your time,
Jonathan

Hi,
  That is because, from the new transaction, view is different, and hence the navigation links defined in the component repository, where as inbox is completely different view/component.
  Try to see, navigation links defined from the view where navigation is working fine, and the outbound plugs called. Try to replicate it for Inbox navigation, you may have to create new navigation link, enhance inbox result view and outbound plug to navigate to the new navigation link.
Regarding achievable through customizing, I am not completely sure if inbox result view could be found in customizing, plus you want it for a particular transaction only, but still if you are able to manage, it would be great.
Thanks,
Rohit

Similar Messages

  • 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

  • How to stop the standard navigation to view from NavBar?

    Hi Folks,
    My solution is in CRM IC 5.0. My application is a Z one. I have a custom button in the "Followupdetails" view
    Initially the "Identify Customer(BupaDetail)" view loads up as soon as we log onto IC. Navigation to any other view selected from the nav bar should only be possible if my custom button is clicked. Otherwise the navigation should not happen and it should continue to remain in the same window and throw an error message.I capture the value of whether this custom button is clicked in the attribute GV_CLEAN_WASTE.
    I wrote the below code in "DO_CLEANUP_CONTEXT" of the BupaDetail view.
    IF ZL_CRM_IC_BREADCRUMBSVIEW_IMPL=>GV_CLEAN_WASTE <> 'C'.
       IF me->view_manager IS BOUND.
          lr_message = view_manager->get_message_service( ).
          lr_message->add_message(
              iv_msg_type       = if_genil_message_container=>mt_error
              iv_msg_id         = 'ZCRM_WW'
              iv_msg_number     = '012' ).
      endif.
    ENDIF.
    The above code throws error message but the navigation to the view selected in NavBar still happens.I want to block that.
    How can i acheive it?
    Thanks
    Abishek

    Hi ,
    You need to write the below logic in the event handler of the custom button.
    IF ZL_CRM_IC_BREADCRUMBSVIEW_IMPL=>GV_CLEAN_WASTE 'C'.
    IF me->view_manager IS BOUND.
    lr_message = view_manager->get_message_service( ).
    lr_message->add_message(
    iv_msg_type = if_genil_message_container=>mt_error
    iv_msg_id = 'ZCRM_WW'
    iv_msg_number = '012' ).
    endif.
    return.
    ENDIF.

  • Multiple Views from "Identify Account" Navigation Bar

    I have created a navigation profile called "Identify Account" and is linked to my Weblcient Profile. However, for ease of use, I would like to have to Views (V1-Individuals and V2 - Organizations) sothat the user can have the option to search for Individuals(Citizens/Non Citizens) OR Organzinations. Basically this would behave like a drop down list of views from the navigation profile. Do I use dynamic functionality or static?

    Chris, old buddy, old pal, you have posted this question in two places.
    Go immediately to the Spry Forum and read my answer there.
    I realize you were hedging your bets on which venue was better for your question, but many of us troll both forums, and in this case, Spry is the more appropriate one for your question.
    Beth

  • Error while navigating to a View in one Application from another Applicatn

    My Application has a set of views and in one view lets say View A  there is a link while clicking on the link it triggers a outbound plug and a new view gets opened.There is another application which calls the View A of my application (when a navigation link tab is clicked) not by embedding my view instead calls the url of my application.Here when i try to click on the link from View A  i get an error stating "Cannot navigate via outbound plug navigation link missing."

    Hi,
    I suppose you have not created the navigational link.
    If not then right-click on your outbound plug and click on Create Navigation link to the new view from your viewA.
    thanks & regards,
    Manoj

  • Can not open View Entire Inbox from Inbox Preview

    I use comcast for e mail. I get to Inbox Preview, but it will not go to View Entire Inbox. Will work on IE.

    That worked fine in Firefox after Comcast instituted that Xfinity interface last spring, then they fixed something else and broke that for some Firefox users. Connect Lite still works fine.
    Using IE, once you're in the full email page open Preferences -> General in the Xfinity menu header and select Xfinity Connect Lite. Then try it in Firefox.
    Or, click on the first new email on the preview page, and when you're done with it click on the Inbox link in the Nav Menu in the left column to get your complete Inbox.

  • 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

  • Move email from Inbox to Local Folder using Message Filter moves header only, not contents.

    I created a Message Filter to move email from Inbox to a Local Folder based on Date. The email headers were moved, but not the contents. Since I'm using IMAP, all the emails were deleted from the server.
    I searched for similar problems and I followed one suggestion to "repair" one of the target Local Folders, but that made things worse. Now the header information (Subject, From, Date (now set to the date the transfer was done, not the email received date) is all blank.
    The Local Folder properties indicate the email is contained in
    mailbox:///C:/Users/Ted/AppData/Roaming/Thunderbird/Profiles/c65xcqqf.default/Mail/Local Folders/Archives.sbd/2010
    I can see the messages from other Local Folders here, but the ones "moved" are empty.
    Should this location be changed?
    Is there some way to recover the email contents?
    The info below is from the troubleshooting information tool:
    Application Basics
    Name: Thunderbird
    Version: 31.5.0
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20150222233048
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account5:
    INCOMING: account5, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account7:
    INCOMING: account7, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account8:
    INCOMING: account8, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account9:
    INCOMING: account9, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    Crash Reports
    Extensions
    Lightning, 3.3.3, true, {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Manually sort folders, 1.1, true, [email protected]
    Important Modified Preferences
    Name: Value
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    extensions.lastAppVersion: 31.5.0
    font.internaluseonly.changed: true
    font.minimum-size.x-western: 10
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.enable: true
    mail.winsearch.firstRunDone: true
    mail.winsearch.global_reindex_time: 1387144538
    mailnews.database.global.datastore.id: 11ee7f66-9920-4f7d-9c5e-a83d079bc6e
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    mailnews.database.global.views.global.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1424815462
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgcolor: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgimages: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_colorspace:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_command:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_downloadfonts: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_duplex: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_top: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_evenpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerleft: &PT
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerright: &D
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerleft: &T
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerright: &U
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_in_color: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_bottom: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_left: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_right: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_top: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_oddpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_orientation: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_page_delay: 50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_data: 1
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_height: 11.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_type: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_unit: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_width: 8.50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_plex_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_reversed: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_scaling: 1.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_shrink_to_fit: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_to_file: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_top: 0
    security.disable_button.openCertManager: false
    Graphics
    Adapter Description: Intel(R) HD Graphics 4600
    Vendor ID: 0x8086
    Device ID: 0x0416
    Adapter RAM: Unknown
    Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32
    Driver Version: 10.18.10.3379
    Driver Date: 12-18-2013
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.17111)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Fixed the Trouble Shooting information in previous post.

  • Can not select from data dictionary view from a procedure

    Hi,
    I wonder, which privilege is missing here:
    my schema has this roles and privs:
    GRANT CONNECT, RESOURCE TO cb ;
    GRANT CREATE SESSION TO cb ;
    GRANT SELECT_CATALOG_ROLE TO cb ;
    GRANT CREATE SYNONYM TO CB;
    GRANT CREATE VIEW TO CB;
    I create a procedure:
    create or replace procedure dd_test as
    begin
         dbms_output.enable(2000000);
         for r in (select table_name from sys.dba_tab_partitions     where owner = 'CB') loop
                   dbms_output.put_line(r.table_name);
         end loop;
    end;
    sho err
    4/38 PL/SQL: ORA-00942: table or view does not exist
    When I run the core statement form sql prompt, it works !
    so what privilege is missing here ???
    thanks for any hint, Lao De

    Hi,
    thanks for that reply, after doing that I can not select this DD-view from sql-prompt anymore (which I don't wonder ;-). Can you tell me, what idea you had behind that test ?
    I found another instance, where the procedure works and I will compare those privileges, but it's hard to sort out that complex structure of nested roles and sys_privs.
    How ever, I will update here, when I found the missing privilege.
    regards LaoDe

  • On the Comcast email site, on the "Inbox Preview" page, if I click on "View Entire Inbox" or on a particular message, Firefox will just return me to the Inbox P

    On the Comcast mail site, I cannot get past the "Inbox Preview" page. If I hit anything, including "View Entire Inbox" or on a particular message, or anything else, I'll just be returned to the "Inbox Preview" page. This only happens on Firefox. When it started happening, I finally gave up and tried Internet Explorer, which works fine. I'd prefer to access email on Firefox, so please tell me how to correct this.
    I don't know if this is related, but immediately before this started happening, I may have hit something on my laptop, which caused the Comcast email screen to magnify to the point where I could not view the message window on messages. I couldn't figure out how reverse this, so I did the above (went to IE, which was fine). When I next attempted to access Comcast email from Firefoxe, the site was no longer magnified, but I had the above problem with being unable to get past the Inbox Preview page.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • How to call a view from another

    Hello Experts,
            I have embedded a view (let us call this view 'A') in standard homepage. This works fine. Now on click of a button on this embedded view I want to launch another view that is also created by me, in the same component in which I had created view A. But I do not know how to launch this second view
         Could you please tell me how to call/launch a view from another on click of a button?
    Regards,
    Prafful

    Hello Prafful,
    I guess by launching you mean substituting one view by another. It can be achieved by declaring a navigational link in the runtime repository from one view to another. You have to create an event handler on the button and outbound plug in your view using the wizard. Then, on the event handler you call an outbound plug where you trigger a navigation using this navigational link and the view A will be replaced by view B.
    A code which needs to be done in outbound plug:
    me->view_manager->navigate(
    source_rep_view = me->rep_view
    outbound_plug   = 'NAVLINKNAME'
    data_collection = iv_data_collection ).
    Best Regards,
    Yevgen

  • How can i navigate via navigational link between views in different windows

    hello
    i am using CRM_UI and have opened a popup
    gv_transcr_popup is a attribute referrring to if_bsp_wd_popup in my implementation class
    gv_transcr_popup = comp_controller->window_manager->create_popup(
        iv_interface_view_name = 'AIC_CM_TRANS/AssignTranspReq' "#EC NOTEXT
        iv_usage_name          = 'CUBAssignTransporReq'         "#EC NOTEXT
        iv_title               = lv_title ).
    get instance of BOL dynamic query
      lo_qs = cl_crm_bol_dquery_service=>get_instance( 'BTQAIC_CM_TRANSPORTREQ').
      gv_transcr_popup->set_on_close_event( iv_view = me iv_event_name = 'AssignTranspReq' ).
      gv_transcr_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
      gv_transcr_popup->open(   ).
    through the iv_usage_name i will open in this popup a search view from another window
    in this window is a searchview implemented and now after selecting the line in the result view in want to navigate through outbound plug / inbound plug to the starting view .
    but i get the exception
    Target view AIC_CM_TRANS/TransportReq of the navigation is not assigned to the current window AIC_CM_TRANS/AssignTranspReq ( which is true)
    now the question: how can i navigate between views of different windows?
    Best Regards
    britta

    hi
    i have found a way : you have to use a outboungplug from the windows interface ..then it is working
    best regards
    britta

  • How to Create/Modify/Delete a query view from the web template in BI 7.0

    All:
    In BW 3.5, the <b>Query Selection View</b>  web item was introduced for users to create a query view to save the navigational state of a query. This web item was also available to modify and delete an existing query view.
    The Query Selection View web item <u>does not</u> exist in BI 7.0. I see the drop down web item can be used to display the query views associated to a query.
    Can anyone share how to create,modify,save or delete a <b>query view</b> on the web in BI 7.0
    Thanks,
    Kumar

    Sanjay, we experienced the same issue. Below are a few pieces of information that may be of help: 1-The Save As button on the 0ANALYZER template saves the query to the portal. From Bex Web or Bex Analyzer, you have no access to these saved views. We created a ZANALYZER copy of the 0ANALYZER template and removed the Save As button. 2- If you right mouse click on any item in the query results grid of Bex Web, you get a small menu. Clicking on the menu item Save View will save the view to BI. You do not have the ability to delete the saved views from Bex Web. However, you can delete them from Bex Analyzer. This was not an option for us since most of our users are using Bex Web. 3- On the same menu, clicking on Bookmark, saves the navigation and also opens the Internet Explorer Favorites maintence window. The navigation is saved as an entry into the users Internet Explorer favorites where they can organize and delete their entries. However, deleting the favorite does not delete the entry for the bookmark in BI. The bookmarks are stored in table RSWR_DATA. Program RSWR_BOOKMARK_REORG can be used to manage the saved bookmarks. We are loading RSWR_DATA into a chracteristic so that we can query the information in order to help us manage it. I hope this helps you and others that appear to be struggling with the issue of saved views in Bex Web.

  • Messages not removed from Inbox when deleted on iphone

    My company has an exchange based mail system and they provide imap access for devices like the iphone.
    I set up the iphone to connect to the server and can read messages just fine. I set the Deleted items option in the Settings app for Mail to be the Deleted Items folder on the server.
    When I delete the messages on the iphone this is what happens:
    1) The message disappears from the Inbox on the phone.
    2) The message appears in the Trash on the phone.
    3) The message appears in the Deleted Items folder on the server (as viewed from my normal work computer).
    4) The message stays in the Inbox folder on the server.
    So, in sum, things do what they are supposed to do on the phone. On the server, I wind up with 2 copies of the same message - one in Inbox and one in Deleted Items.
    I will point out that the same behavior occurs when I try to move an item from any folder to any other from the iphone. The message winds up in both the original and the target folders....
    What do I need to do to set it up so that messages are removed from the originating folder on a delete or move?
    Thanks

    Sounds like typical POP behavior.
    Is your mail account POP or IMAP?
    If POP, then your mail activities are normal, that's how POP operates.
    If it's IMAP, contact your server admin, as IMAP should be reflecting all activity across all devices with that specific account on it.

  • Email removed from inbox

    I am having an issue with one of my email accounts where email are being removed from inbox automatically.  They go to the inbox and then they just disappear.  If i forward the email to another user the mail is not deleted....
    Any ideas?

    From the Mail menu bar, select
    Mail ▹ Preferences ▹ Accounts ▹ Advanced
    and from the popup menu labeled Keep copies of messages for offline viewing, select
    All messages and their attachments
    If there's no improvement, you may have to switch from IMAP to POP access.

Maybe you are looking for

  • Acrobat 9 Pro issues with printing and now updating  !!! :(

    hello I had an issues with printing from my gmail account or from windows live mail so I made a complete re-installation now I am stuck with version 9.3.0 and when I check for updates I get a message UPDATER IS ALREADY RUNNING only... it's not runnin

  • Redefine Static Methods in ABAP OO

    Hello, I want to redefine an public static method and returns always an error. Okay, I already solved the problem with an workaround, but I still don't understand, why it is not possible to redefine static methods in ABAP OO. If someone can give me a

  • Trouble with ipv6

    Having trouble with this it is showing no internet access how do I enable this?

  • Distinct Vibration on 24" imac 2.93 w/ nVidia

    I have a 3 week old imac 2.93 GhZ intel core 2 duo 24" nVdia Geforce 120 graphics today i noticed a persistant and distinctive vibration coming from the display. I cant pinpoint the source, but its definitely coming from the monitor. When the compute

  • [svn:osmf:] 14904: Adding file missing from previous commit.

    Revision: 14904 Revision: 14904 Author:   [email protected] Date:     2010-03-22 05:32:49 -0700 (Mon, 22 Mar 2010) Log Message: Adding file missing from previous commit. Added Paths:     osmf/trunk/libs/ChromeLibrary/org/osmf/chrome/hint/     osmf/tr