MVC-BSP as a logical link

Hi All,
I have a MVC-BSP and Iu2019m looking for the information how can I link this BSP (like a logical link) in the crm2007.
Can anybody help me?
Thanks & Regards

Hi,
According to ur requirement u need to create a transaction launcher for ur BSP-MVC . Follow the bellow steps.
1. Define URL parameters for transaction launcher for ur BSP application and pass ur main controller name and main page name like
Application - MAIN.Do
Page         - MAIN.HTM
2. Create a transaction launcher of URL type and pass URL parameter id over there.
3. After follow all steps for transaction launcher like logical link, assign logical link id to direct link group  and assign to navigation bar profile.
4. In ur business role check the checkbox for this logical link from visible direct link.
Now test ur transaction launcher. It will work.
Regards
Gaurav

Similar Messages

  • Create Logical Link to ABAP Web Dynpro

    Hello,
    Within my Direct Link Group, I would like to create a Logical Link to a custom ABAP Web Dynpro.
    Is this possible?  If so, does anyone know how I can accomplish this?
    Thanks,
    Matt

    Hi Matt,
          Please follow the following steps.
    1. find out the URL for the launching BSP Webdynpro application
    2. create a URL in the spro.
    SPRO->CRM->UI framework->Technical Role Definition->Transaction launcher->Define URLs and parameters
    create a new entry and give the following entries.
    a) give the url id
    b)request method -> GET ( select from Drop down )
    c)  click on the 'Non-BSP' URL
    click the checkbox 'Determine Host/Port'  ( it will determine automatically clent and system when launch )
    Mapped LogSys - 'OWNLOGSYS'
    URL = 'sap/bc/webdynpro/sap/XXXXXX'    XXXXXX = ur webdynpro application name
    save the URL.
    3. Create a Transaction launcher and give the above created URL id in step 'Further Technical Details'
    select Transaction Type as 'URL Transaction' and enter the ID.
    4. Create a logical link and assign the transaction launcher id to it.
    5. assign the logical link to direct logical link.
    6. assign direct link to nav bar profile
    7. assign nav bar profile to Business role
    Hope this helps.
    Regards,
    Sandeep

  • How to create logical link for report and make that available in webui

    Hi All,
    Please  mention the steps to creae logical link for standard report(BI) or customized report and assiging it to work center,
    Thanks,
    priya

    There is a good guide available from SAP: service.sap.com/crm-inst
    It goes into most details you would want to know on including BI reports.
    The path is SAP CRM > SAP CRM 2007 > CRM WebClient UI
    cheers Carsten

  • How to make use of 'Icon Name' in Logical link?

    I see the option 'Icon name' in 'define logical links' in SPRO. It does not however has an F4. I tried giving the name of image in the relevant skin. But no image appears besides the logical link. Is there something else that needs to be done to get an image besides workcenter link? How to make use of this 'Icon Name' in logical link?

    Hi,
    i guess this icon_name is not possible for every skin in CRM70.
    We use nova skin - here it is not possible.
    With default skin i saw icons for example on the salespro startpage.
    Kind regards
    Manfred

  • Creating a logical link in the Workarea

    Hi All,
      I would like to create a logical link in the workarea of the workcenter.
      For Ex: If i have assigned a business role SERVICEPRO, When I click on the workcenter (ServiceOrders), now a workarea will open with options SEARCH, CREATE, ALERTS, REPORTS etc..
      I would like to add an extra link in any one of these.. (lets say in CREATE... I have to add a link to create my own ztransaction type. when I click on this link, it has to open my ztransaction without a popup there to be selected)
    I know that if we have multiple transaction types a popup is necessary to select the requried transaction type. For this particular business transaction we are using a single transaction type.
      Can someone guide how to achieve this.
    Regards,
    Raghu

    Raghu,
    For the Business Role that you are using you can restrict the transaction types for create, display, search or edit to a single transaction type through the PFCG Authorization role assigned to the Business Role.
    Modify the PFCG Authorization Role to only include the transaction type that you need. Also, note the User has to be assigned to this PFCG role that controls the Business Role and should not have SAP_ALL and SAP_NEW authorizations (in which case the user will see all the Transaction Types).
    Regards,
    Kalyan

  • Call logical links with different enhancement sets on the same business role

    Hello,
    I am trying to create a business role that contain logical links with different enhancements. I know how to choose an enhancement for the business role but I can't find a way, if possible, that one business role does it.
    I know how to give an option to choose different roles for the same user, i'm looking for a way to do this in the same window
    Thanks,
    Noa

    does not matter anymore

  • Need correct Target Id for report logical links

    Dear Experts,
    I have the following requirement where I need to have 5 Trade Funds related reports to be displayed when I click on the 'xyz' workcenter of my business role.
    The standard Group Id (Work Center Link Groups) for the reports is FM-ALL-RE.
    The logical links for the 5 reports included in the above Group Id are:
    FM-MC13-1
    FM-MC13-2
    FM-MC13-3
    FM-MC13-4
    FM-MC14-1
    So I did the following:
    1. Created a custom workcenter e.g. xyz.
    2. In workcenter definition, the Logical Link ID is abc (custom).
    3. In logical link definition, abc is assigned to Target ID TSLSDASHWC.
    4. Group Id FM-ALL-RE is assigned to workcenter xyz.
    5. Workcenter assignment to Navigation Bar Profile and Business Role is done as usual.
    But I am not getting the links for the 5 reports when I login using the business role and click on Workcenter xyz.
    I have analyzed and found that the issue is happening because of step 3, where it seems the wrong Target Id is assigned.
    Can anyone please guide as to which should be the correct Target Id which can solve this issue.
    I tried to go through various standard SAP business roles but none of them had any link to my above 5 reports.
    regards
    Animesh

    Hi Animesh,
    I have got the feeling that you are correct concerning the SWITCH_ID field.
    You have multiple possibilities to check if it is the reason. One would be to:
    Set a breakpoint in method CL_CRM_UI_NAVBAR_SRV->TRAVERSE_WC_DEFINITION() for the following code
    * remove entries with inactive switch id
      IF iv_ignore_switches EQ abap_false.
        LOOP AT lt_wc_infos ASSIGNING <wc_infos> WHERE switch_id_wc_a   IS NOT INITIAL OR
                                                       switch_id_wclg_a IS NOT INITIAL.
          lv_tabix = sy-tabix.
          IF cl_webcuif_switch=>is_switch_active( iv_switch_id = <wc_infos>-switch_id_wc_a ) EQ abap_false OR
             cl_webcuif_switch=>is_switch_active( iv_switch_id = <wc_infos>-switch_id_wclg_a ) EQ abap_false.
            DELETE lt_wc_infos INDEX lv_tabix.
            CONTINUE.
          ENDIF.
        ENDLOOP.
      ENDIF.
    Then either just jump over the LOOP whenever it is hit or check the contents of LT_WC_INFOS
    Now check in WebClient if your links show up
    The solution to your problem is afterwards to activate the switch to ensure correct display and (more important) data content.
    cheers Carsten

  • Logical link / Work center for directly accessing "Business Activities"

    Hi All,
    We are upgrading from CRM 5.0 to CRM 2007. One unique challenge that I have encountered is the access to search, change or create - BUSINESS ACTIVITIES (Leading Transaction category: BUS2000126) in the CRM Web UI. We would like to directly access Business activities through a work center -> Logical link or a Logical link, in the SALESPRO business role.
    This is available in the IC_AGENT business role. But you need to create a preceding Interaction record and then create a followup activity -> Business activity. We do not want to do this. We want to be able to access the business activites directly. For example, Leads and Opportunities can be accessed directly through the work Center: "Sales Cycle".
    Does anyone know if there is a work center that I can use in SALESPRO business role that will give me direct access to Business Activities . I can use the transaction launcher to access the HTML version of the winclient transaction (T Code: (CRMD_BUS2000126) but I do not want to use the transaction launcher. Any ideas?

    Well I am pretty Serious?!!!
    The standard SAP delivered "ACTIVITIES" WORK CENTER has the following Logical links for CREATE:
    Activity
    Activity Scheduling
    Activity Template
    Appointment
    E-Mail
    Interaction Log
    Task
    Visit Plan
    And when you use the Activity create - you ONLY have the option to create:
    Interaction log - Channel report
    Interaction log - Partner report
    Task - Approve
    Task - Recurring Task
    I would expect to see more than this. There are other BUS2000126 Business Activity transaction types which are enable to be maintained online in SPRO. But they do not show up here. I can use the Search - Activity logical link and then use Activity Type to find the other Transaction types. But not in Create. I can control the transaction types that can be displayed for Leads and Opportunities. It doesn't seem to work for Activities!!!!
    Is this part of standard CRM 2007 SALESPRO delivered role functionality??? I have SAP_ALL and SAP_NEW and have access to the other Business activities in my security role. My Ophthamologist did confirm that my eyes are doing fine so far. So this has something to do with the way this 'Work Center' has been designed. Apart physiological/anatomical impediments what am I missing???
    Thanks,
    Ramesh

  • What is the Logical Link ID?

    what is the logical link ID? when we define a new work center or logical link in web UI, we need to maintain logical link ID. can anybody plz explain me how it works?

    Hi ,
    To tell you in short, logical link id tells you about the target ID.  Target ID means where actually you want to go after clickinga particular link ( work centre, Direct links etc)
    Target ID stores the information about the component name and windows.
    There is alot more to it for which you would need to read documentation available at SDN.
    Regards jotsaroop singh

  • Own logical links does not appear in UI

    Hi All expert,
    I create a own component. I did the following steps.
    1. Maintain records in work area component responsitory
    2.Create  logical links with the target ID I defined.
    3. Assign the logical link to group.
    4. assign the group to work center
    5.choose visible in BO role define
    6. add authorization for this component
    but it still does not display in the UI.
    May U have any suggestion ?

    I suppose issue with IE cache. try to clear it and retry...
    but possible it is not the case

  • Component, Targetid and logical link

    Hi,
    Please explain me the difference between the Component, Targetid, & Logical Link.
    Rgds
    Eliz

    Well I am pretty Serious?!!!
    The standard SAP delivered "ACTIVITIES" WORK CENTER has the following Logical links for CREATE:
    Activity
    Activity Scheduling
    Activity Template
    Appointment
    E-Mail
    Interaction Log
    Task
    Visit Plan
    And when you use the Activity create - you ONLY have the option to create:
    Interaction log - Channel report
    Interaction log - Partner report
    Task - Approve
    Task - Recurring Task
    I would expect to see more than this. There are other BUS2000126 Business Activity transaction types which are enable to be maintained online in SPRO. But they do not show up here. I can use the Search - Activity logical link and then use Activity Type to find the other Transaction types. But not in Create. I can control the transaction types that can be displayed for Leads and Opportunities. It doesn't seem to work for Activities!!!!
    Is this part of standard CRM 2007 SALESPRO delivered role functionality??? I have SAP_ALL and SAP_NEW and have access to the other Business activities in my security role. My Ophthamologist did confirm that my eyes are doing fine so far. So this has something to do with the way this 'Work Center' has been designed. Apart physiological/anatomical impediments what am I missing???
    Thanks,
    Ramesh

  • Logical link for link to internal server

    Hi Experts,
    Is it possible to create a logical link which refers to a link to the internal server.
    I need to create a work centre which will refer to the intenal server link. Can anyone tell me the settings for the same. I have configured the transaction launcher but I am confused as to what is the inbound plug target id I have to mention.
    Please let me know the settings. Thanks.
    Regards
    Yogesh

    Hi,
    I was making a mistake in the URL region when calling the address, I was calling the value of a link but forgot to put it between &ITEM., thats why it returned me that error.
    Now i can see the page result altough I cannot retrive the file yet, but I think it is some php parameter I'm not passing correctly in the URL.
    Thanks a lot for the help, it solved my problem.
    Just another thing is it possible to call that link and close the new page right away? Itś a bit awkward for a user to click a download link and be redirected to a page where it will only present the download and after that he need to return to the previous page...
    Thanks,
    Alexandre.

  • Authorization for Work center, logical links and components

    Hi Gurus,
    Can authorization be given to Work centers, logical links and components.
    Thanks,
    Sarat.

    It can be done using Authorization object UIU_COMP. it has 3 fields :
    Component Name
    Component Window Name
    Inbound Plug
    Note : You can maintain authorizations based on components, WC pages, Direct links groups and direct links but not on views.
    Authorization object for direct links : C_LL_TGT which has 2 field : Logical Link Type and Link Parameter
    Hope this helps,
    Cenk Sezgin

  • Dummy logical link

    Hi everybody,
    Can I create an empty link? Or a Dummy link or anything like that?
    Background:
    We do not want to use the workcenter level in the Navigation Bar but the link level. Still we have to enter a logical link in order to create a work center.
    Any ideas?
    Cheers,
    Thea

    Hi,
    thank you for the explanation. I can understand your requirement, because this is quiet common in other application that a main menu does nothing. It only opens the sub menus.
    However, this is not the case in Web UI.
    I tried to define a Work Center without LogLink. It does not work from the view maintenance, but I found a back door how I can define a Work Center without LogLink. However, the navbar does not show this work center again, I assumed because the work center is not valid without LogLink.
    A normal usage for work center is that the work center has the same LogLink like the first work center link group.
    The reason for this is when user always knows that he wants to select the first work center link group, then he can directly click the work center.
    I hope this help you.
    Regards,
    Steve

  • Adding logical link from a different Business Role

    Hi Gurus
    I want to add the second-level entry(complaints search page) of the Complaints & Returns work center of the standard Servicepro business role as a Navigation Bar link to an already customized IC Agent Business role. How would I achieve this in CRM 7.0?
    Thanks in advance.

    Hi Amar
    Thank you very much for your valuable inputs. I had some doubts and am explaining the detailed process below so that I'm clear as to how I can fix this.
    I selected the SRV-PRO NavBar Profile and double-clicked on Define Work Center. On the Define Work Center Overview Screen, I found the Work Center SRV-COMPL, which has the description as Complaints & Returns and LogLinkID as SRV-CPL-WC. Then, I selected SRV_COMPL and double-clicked on Define Logical Links and looked for description as Complaints: Search. I found the LogLinkID SRV-COM-SR link with the corresponding Target ID as TBT120MISC.
    Now,I copied the customized IC Agent NavBar Profile which we currently have and created a new work center by copying SRV_COMPL. On Assign Groups, I kept the SRV-CMP-SR group ID and deleted all others. Then, I assigned the newly created WorkCenter to the new copied IC Agent NavBar Profile. I'm now able to view the new work center and it launches the workcenter page, but the link to open the complaint search is not available. Is there any step that I'm missing?
    Thank you again for your help.

Maybe you are looking for

  • Selection on timestamps

    Hello all, I like to write a report with ranges of date and time in the selection screen. The table to be selected contains a timestamp. How can I convert several date and time ranges in corresponding timestamp ranges for the selection? Many thanks f

  • Abt..Scripts and Smortforms

    can we do Web publishing for Scripts...and..Smartforms?

  • Elements 12 problems

    I have just installed Elements 12 on my Windows 7 computer which already has Elements 8 and Lightroom 5 installed. One issue is that when i try to upgrade Elements 12 it tells me to close ElementsAutoAnalyzer.exe which to my knowledge is not open. Al

  • Update termination error when posting goods issue

    Helllo I have a strange problem I can not figure out.  We have serial numbers like 12345/345.  When trying to post goods issue I get an update termination error  for invalid character. This only happens if the quantity is more than 1 each.  A quantit

  • Marquee selection in CS4 "crops" to image edges. How to reset?

    In CS3, when you make a large selection using the circular marquee (ie: alt-drag until the selection grows past the image edges), it maintains the full selection.  But in CS4, it crops to the edges of the image.  Is there an option to fix this so mar