PCUI CRM 5.0

Hello Everyone,
Iam launching a PCUI Transaction in CRM from CRM_PCUITOOLS.
for the Sales Order <b>CRMD_BUS2000115</b>.
But I see the following Techinical Information on the Sceen.How can this be
Suppressed.
Analyze Information OIC2
Application View Version Event Position Variant Scrn Elmnt Type Field Group Structure Access Class Toolbar Group Tab Page Group Search Grp Viewset Group Step Group
CRMD_ORDER   0001 INIT 2   SRME SLO_OI_01_LEAN CRMT_BSP_SLO_OIC_SRCHRES_LEAN CL_CRM_BSP_AM_HEADME_1O SLO_OIPDEF
Please Advice.
Thanks & Regards
Kumar

Hi Sathish,
You might opened the application from the transaction "Determine the correct Model Class". This actually helps in getting the technical details like Application, View, Version, Event, Field Group Structure, Access Class, Toolbar Group, Tab Page Group etc.
This will help you in further customization of PCUI Views.
If you open the application from Portal or SE80 the technical details will not appear.
You need not suppress anything.
Please award Points if the reply is helpful.
Regards,
J.Prabananth

Similar Messages

  • PCUI CRM Portal Performance Issues

    Hi Folks,
    We are using the PCUI CRM Portal. we done the Customized tab, like Product, Customer and Trade Contract Planner.
    All most all we are used Standard BSP Application, CRM_BSP_Frame. and all class and method also copy from Standard Class, and we add the small code for only one event: Query event.
    Issues are..
    Portal logon is woking fine, and when ever user client the Trade Contract Planner, Its taking much time to load. Other tabs are load very fast.
    Any one please guide me.. How it will work fine.
    Thanks,
    Siva

    Is this a new install of the portal, or have you upgraded from an earlier version?

  • F4 is not working on PCUI - CRM 5.0

    Hi SDN,
    I am facing problem for F4 help which is not working for Reason field on PCUI.
    I configured the status profile and Reason but could not display any values in F4.
    Thanks in Advance,
    Regards,
    narendra

    I am referring the SAP CRM5.0 for PC-UI. 
    I want to see on the Service order -> Status tab page on header 
    Inside the status tabpage, you see the status and reason field. Based on the Status field value, I want to see the Reason F4 help ( Input Help ).
    Currently I am not able to see any values in F4 Help and It's working fine on the CRM GUI.
    Let me know if I am missing any thing here.
    Regards,
    Narendra

  • PCUI - CRM

    In the marketing Planner application in the PCUI, when i click the export button, it saves by default in CSV format, without prompting for template to be selected.
    Before prompting to save in CSV format, it pop-ups message "Install Microsoft Office 2003 or higher version"
    later, I installed the required Microsoft office 2003 version, still the message is pop-up before saving in the CSV format by default.
    Whether any extra component needs to be installed on my pc ?

    Hi,
    first a warm welcome to SDN.
    Can you specify your enviroment in a little bit more detail? What exact version of CRM / Service Pack are you running? Have you applied the latest version of Marketing Planer form Service Marketplace?
    Regards
    Gregor

  • PCUI - CRM - Text (Field Label) Replacement

    Hi Friends,
    I want to change the Field Label displayed on the PCUI.
    In PCUI the field label displayed, is the value taken from the Medium Text of that field's respective Data Element in DDIC. Please correct me if I am wrong.
    Now for example - I want to replace 'Sold-To Party' field label as 'Buyer Site', how can I achieve this without modifying the data element's medium text ?.
    I tried using Text Replacement Tool (trans CRMST62), but it reads values from Header, Short text, but not from the medium text. And also it is time consuming as it runs several background job process.
    Does PCUI Applications stores field labels in any table ? Or is there any config available by which we can insert field labels in the PCUI Application.
    Thanks
    Harsh

    Hi everybody,
    with a little modifcation it works fine.
    See below, how I have implemented it.
    Cheers,
    Marc
    <b>Note:</b>
    Necessary modification is supposed to causing no problems during upgrade.
    <b>Realization:</b>
    - Customizing table controls text labels in user interface of CRM application
    - Maintenance via customizing view
    1. Create customizing table 'ZMAL_DDIC_C'
    MANDT  type MANDT
    TABNAME  type TABNAME
    FIELDNAME  type FIELDNAME
    2. Create text table for language dependent text 'ZMAL_DDIC_CT'
    MANDT  type MANDT
    TABNAME  type TABNAME
    FIELDNAME  type FIELDNAME
    LANGU  type SPRAS
    SCR_TEXT_S  type SCRTEXT_S
    SCR_TEXT_M  type SCRTEXT_M
    SCR_TEXT_L  type SCRTEXT_L
    3. Create method 'get_fieldtext()'
    Porperties: static and public
    Parameters: I_FIELD_LIST  importing  type DDFIELDS
                R_FIELD_LIST  returning  type DDFIELDS
    method get_fieldtext.
    DATA: field_itab type ddfields,
          ddic_ct_struc type zmal_ddic_ct,
          ddic_ct_itab like table of ddic_ct_struc.
    FIELD-SYMBOLS: <field_struc> type dfies.
    field_itab[] = i_field_list[].
    loop at field_itab assigning <field_struc>.
    at first entry we look for new lables in our
    customizing table
    if sy-tabix = 1.
    select * from zmal_ddic_ct
      into table ddic_ct_itab
      where tabname = <field_struc>-tabname
        and langu   = <field_struc>-langu.
    endif.
    check if an individual lable exists
    read table ddic_ct_itab
      into ddic_ct_struc
      with key fieldname = <field_struc>-fieldname.
    only when text in customizing table is not empty ,
    replace standard text
    if sy-subrc = 0.
      if not ddic_ct_struc-scrtext_s is initial.
        <field_struc>-scrtext_s = ddic_ct_struc-scrtext_s.
      endif.
      if not ddic_ct_struc-scrtext_m is initial.
        <field_struc>-scrtext_m = ddic_ct_struc-scrtext_m.
      endif.
      if not ddic_ct_struc-scrtext_l is initial.
        <field_struc>-scrtext_l = ddic_ct_struc-scrtext_l.
      endif.
    endif.
    endloop.
    return edited field list
    r_field_list[] = field_itab[].
    endmethod.
    3. Mofification
    Class: CL_ABAP_STRUCTDESCR
    Method: GET_DDIC_FIELD_LIST()
    if sy-subrc <> 0.
    fill cache with negative result
       cache_wa-langu     = p_langu.
       cache_wa-not_founf = abap_true.
       insert cache_wa into table me->ddfields_cache.
       raise not_found.
    endif.
    START INSERT
    p_field_list = <own_class>=>get_field_text( i_field_list = p_field_list).
    END INSERT
    fill cache
    cache_wa-langu     = p_langu.
    create data cache_wa-value.
    cache_wa-value->* = p_field_list.
    insert cache_wa into table me->ddfields_cache.

  • New field in Activities PCUI CRM 5.0

    Hi SDN,
    In Activites (under Details Tab)screen we want to have Completion field which is already there in CRM GUI.
    For Activities(CRMD_BUS2000126), I can see two different Field groups like ACT_DETAIL and ACT_DETAIL_50.
    and I have found COMPLETION field in structure "CRMT_BSP_ACT_DETAIL".
    In ACT_DETAIL_50 , there is reference field group ACT_DETAIL_50_CLASSIFICATION. I have added feild "Completion" in this field group.
    And I have generated Layout.I have previwed from PCUITOOLS but still I canot see the new field.
    I dont know where it is going wrong. Can any one guide me regarding the same.
    Appreciate your help.
    With Regards,
    Ravi.D

    Hello,
    In which release are you working?
    Which field group did your regenerate?
    Did you see the field in PCUITOOLS?
    If yes, is your portal connected to the same client?
    Regards,
    Fred

  • PCUI - CRM MKTPL and BW

    When we save a market planner (CRMD_MKTPL), SAP own codes saves the CRM data, commits the CRM data to the database then calls BW that then saves it's data.
    We want to send back a calculated value from BW to save in CRM ... but there is no exit in CRM available after BW has saved it's data. 
    Any ideas?

    Those two docs sent.
    Another general analytics config doc is available. That's on your way too.
    Link to CRM config guides: http://help.sap.com/bp_crmv340/CRM_DE/BBLibrary/html/BBLibrary.htm
    Hope this helps.
    Regards,
    Kaushal

  • PCUI - CRM - Text Label Colour

    Hi Friends,
    Is there any way by which I can change colour of fields in the PCUI ? And also if I can change some of the fields only ?
    Please let me know if anyone has an info on it.
    Thanks
    Harsh

    Tiest,
    Thanks for your reply. Can you please point the location where I can have a look at the stylesheets used by the PCUI Application ?
    We have Theme Editor in portal, with which we can set custom style sheets for Portal Pages. Similarly is there any theme editor/ location from where the PCUI's field rendering can be modified.
    Thanks
    Harsh

  • PCUI Display Mode Error

    Hi All,
    I am able to display data in the PCUI CRM 5.0 (This occurs when a user does not have authorization or the BP is locked), but when this BP data is displayed the settings in the field group are not adhered to I.E. hidden fields are displayed and they are out of order.
    Please help, will reward points!
    Warm Regards,
    Gareth Clarke

    Need alittle more info, are you sure that the view(BLVIEW) is the same when you are displaying data and then the second time?  Possibly the BSP is switching views on you and that would explain the hidden fields displaying. 
    Just a guess.
    -Alex

  • Integrating WebDynpros to CRM WebUI - impossible?

    Hello Experts,
    My client is upgrading from PCUI (CRM 5.0) to WebUI (CRM 5.2). We have a WebDynpro (using ABAP) application that lists out sales orders for various customers. On clicking a Sales order #, the application used to pull up the PCUI view of the sales order. We would like to retain the WebDynpro and integrate it with the WebUI framework to accomplish the same functionality. (i.e to deploy the WebDynpro within the WebUI framework and have the ability to navigate in and out Sales order WebUI component from the WebDynpro).
    My developers tell me that there is no simple means to integrate the WebDynpro to the WebUI framework and that we will have redevelop the entire application in WebUI from scratch. I find this hard to believe.
    Is this experience or is there a pragmatic solution to integrate WebDynpros with WebUI? If so, what is the technical solution? I did search this forum and internet but could not find any answers so far.
    Cheers,
    Arun K

    Hi Arun,
    Not sure if this forum would fetch you the right answers.
    But from what I have an understanding about how CRM 2007 works, it is a framework which is a combination of BSP layered on WebDynpro architecture. The idea is to have the flexibility of BSP and the power of WebDynpro.
    Now one way to 'resue' the webdynpro application is to use the Navigation links in transaction CRMC_UI_NBLINKS. This should be possible since both these applications reside within the same ES repository and require the same authentication for access.
    But by doing this, we loose out on the very essence of why we need to remodel applications using CRM WebUI. We would no longer be able to make use of the configuration capability provided by WebUI to render UIs. Thus you would not be able to harness the UI prowess of CRM WebUI in the screen that lists out the Sales Orders. But if that never was your intention in the first place, then you are good to go.
    Once you are successful in associating the WD application via the URL launcher, you would still need to build the URL to navigate from the Sales order link to the the subsequent screen (whcih I believe would be the revamped screen from PCUI to WebUI) . This, in my opinion should not be difficult, since :
    1) the navigation mechansims is similar in WebDynpro and CRM WebUI
    2) There is a provision to build URLs using classes/methods provided in the CRM WebUI framework, I am unsure of the method/class names, but they do exist.
    I would not vouch for everything that I have mentioned since its purely conceptual. I have just applied the concepts I am aware of in this situation.
    But the bottom line is...Its not impossible and having to start from scratch is definetely an overstatement. However, the way to achieve it completely depends on the nature of your requirement. If deploying tha WD application within WebUI and navigation is the only concern, then it is definetely possible.
    Best Regards,
    Rashmi.

  • How to inactivate categories in the BP eventgroup CREATE in PCUI?

    Hi all,
    I need your help.
    At the application CRMM_ACCOUNT in PCUI CRM 5.0 we need to inactivate the categories PERSON and GROUP for one userrole. The other roles should be able to choose all three entries PERSON, ORGANIZATION and GROUP.
    Our first idea was to delete the two obsolete entries in the method FILL_EVENTGROUP of our own MAC ZCL_PCUI_ACC_ACCMOD. But that doesn't work because the event CREATE gets the wrong index (1 for PERSON instead of 2 for ORGANIZATION) by the method FILL_DYNAMIC_EVENT in class CL_CRM_BSP_FRAME_PATTERN.
    In debugging mode we saw, that we need to fill the value INACTIVE into the field GT_TOOLBAR_STRUCT-MENU-BLVIEW of the first and third entry to get the desired result. But we have no idea how to get this without modifying the SAP standard.
    Any ideas or other ways to get the desired result?
    Thanks
    Martin

    Martin,
    From what I understand the PERSON, ORGANIZATION, GROUP is something you can't restrict without a system modification.  Those attributes only influence the form of address and don't have any other influence on the business partner.
    If you look at transaction BP, you will see that there are no "exits" surrounding this functionality at all either.
    Take care,
    Stephen

  • How to write CRM Program.........

    Dear Frnds,
    I am familiar with ABAP but now i want to go with CRM but i have no idea about how to write simple program.
    Is it with scripting and abap code for run simple program..
    which are the transaction code to write program and execute. pls make me familiar with it.
    Regards,

    CRM code is written in same way as ABAP code but tables are different as compared to R/3.
    here oops concept is used in crm-pcui.
    crm middleware is used to connect diff systems like crm and r/3.
    so go thru the transaction crmd_order.
    regards
    dheeraj

  • CRM program

    Hi all,
    I am new to CRM. My task is as follows.
    Complete follow-on Business activities (Object type = CRMD_BUS2000126) that were created before today's for specific transcation type.
    Create a new nethod that automatically completes business activities of some transaction type that exist as follow-on documents in specific complaint types when some conditions are met.
    Can anyone have idea about this task, If so please explain me.
    Regards,
    Varun.

    CRM code is written in same way as ABAP code but tables are different as compared to R/3.
    here oops concept is used in crm-pcui.
    crm middleware is used to connect diff systems like crm and r/3.
    so go thru the transaction crmd_order.
    regards
    dheeraj

  • Indexing tables in CRM

    Hello group,
    we experience quite slow searches in the PCUI CRM 4.0, also the Interaction History on a Business Partner takes a long time to show if a BP has a lot interactions (which should be common).
    Is it possible to index the tables that are used in the searches for each respective area in the portal (Account management, opportunities, et cetera), and the Query(ies) that are used to build the "Interaction History"?
    If yes, how can I find out which tables are accessed and which queries are used? Is there a trace?
    Thanks and regards,
    Erik

    Hello group,
    we experience quite slow searches in the PCUI CRM 4.0, also the Interaction History on a Business Partner takes a long time to show if a BP has a lot interactions (which should be common).
    Is it possible to index the tables that are used in the searches for each respective area in the portal (Account management, opportunities, et cetera), and the Query(ies) that are used to build the "Interaction History"?
    If yes, how can I find out which tables are accessed and which queries are used? Is there a trace?
    Thanks and regards,
    Erik

  • Changing label on PCUI field

    Hi All.
    I'm trying to change a label for a field in PCUI (CRM 5.0) Application CRMD_BUS2000112. The field (ORDERED_PROD) is in a field group SRC_GDT_ITEM and this field group is in the field group SRC_DISPLAY_GDT_ITEM. The label displayed must change depending of the Business Transaction type, my idea was encapsulate the field ORDERED_PROD in a new field group ZYYYY with a variant and then use customizing for changing the Text but when i'm generating layout for the field group SRC_DISPLAY_GDT_ITEM the following error is displayed "Field Group Could not be read completely". Did i miss something ? a better solution for this ?
    Thanks and best regards.

    Hi All.
    The idea of encapsulate the field in a field group didn't work. Any idea about changing the field label depending of the Transaction Type ?
    Thanks

Maybe you are looking for

  • Cannot open database "ReportServer" requested by the login. The login failed. Login failed for user 'USER LOGON'

    I want to grant permissions to all domain users to view reports on our Report Server. Domain users are able to access our Report Server URL and folder, but when they click on a report item they get an error message:  "Cannot open database "ReportServ

  • Compaq 12XL310

    I'm installing Solaris 8 on a Compaq Presario 12XL310 laptop, with a Trident Cyberblade CBi1, and can't find a driver that works. Can Someone help? This 16 color display is driving me nuts! Thank you in advance. Sam Rinehold

  • Upgrade Tomcat From 4.1 To 5.5

    I've got a Solaris 10 (8/07) installation that has come with Tomcat 4.1 as a default. We are in the process or writing our own web service that will use Tomcat. However I've been told by our developer that I must upgrade Tomcat to the latest (5.5.29

  • How to display search results in content area

    Hi              How can I display search results in the content area as seen in sdn. Thanks in advance.

  • Pre-order & Authorization Expiration Date

    On July 11th I placed a pre-order with ToysRUs.com for an item that will be released on October 16th. However, according to my PayPal account, the authorization expiration date for that order is August 10th. Toys 'R Us will not allow me to change my