Unable to create followup activity in crm portal

Hi All,
  When we are trying to create a follow-up document for an activity all the fields are
getting grayed out and we are unable to create any follow-up document.But from GUI we
are able to create it successfully.  We are using CRM 5.0
I have given all the necessary authorizations and the sales representative role is also added still the issue is seen.
please suggest
Thanks & Regards,
Swetha

You need to maintain blueprint table entries for the Back End CRM roles that you have created. Goto Transaction CRMC_BLUEPRINT_C navigate to Navigation(URL generation) "Assign object Method to Role" .
Add a new entry for your custom role if you have assigned the custom role in portal to the Enterprise Profile and under object type select the type of object you are trying to create followup(Example Opportunity,Order) , Method type is "Application" and Implementation Type : S - BSP as external Service and in ID Page/Service give the PCD location of the Portal Role that you are using.
Regards,
Swami
Reward points if it helps.

Similar Messages

  • Problems with Firefox - unable to create a workset in the portal

    Problems with Firefox - unable to create a workset in the portal.

    Guys,
    I am running mozilla firefoz 5.0 and the only option that is coming to me is to create folder in CA.
    even though SAP recommands IE and allows portal from Mozilla, the later seems to have serious issues with Portal.
    I remember working with several versions of mozilla, sometimes you right click, all option will come but you will be unable to choose options coz when u bring cursor to them they will skid here and there..
    I hope no SAP note elobrates this as of now.
    Ankur

  • Unable to created users through UME on portal with AS ABAP as its data sorc

    Hi,
    Unable to created users through UME on portal with AS ABAP as its data source.
    I have assigned SAP_BC_JSF_COMMUNICATION to the user SAPJSF but this only helps in editing the already existing users but not in creating new users on portal.
    I have checked that that the role SAP_BC_JSF_COMMUNICATION is properly generated and has *  in all authorizations. I have even assigned SAP_ALL and SAP_NEW to SAPJSF and another ID.
    DO we need to make any config changes to make the database writable from portal. Please advise.
    Thanks,

    Hi,
    If your system is a AS ABAP + +JAVA System,, you have to do the following
    1. Login to Client 001 using SAP GUI
    2. Create a user id
    3. Login to portal and you will be able to see the user.
    4.Assign him the portal rights
    If you want the portal to use seperate Database for USers, there is a setting in Visual admin, that you can change for the same, but i dont remember that

  • Unable to create follow-up document in Portal

    Hi,
    We are using NetWeaver Portal 7.0 and it is at the latest SP(SP10).
    When we are trying to create a follow-up document for an opportunity all the fields are getting grayed out and we are unable to create any follow-up document.But from GUI we are able to create it successfully.
    Also we are unable to create any sub-opportunity for the existing opportunity
    Both the above were possible when the portal was on lower SP(SP8)
    Does this issue have anything to do with the SP upgrade or could there be any other reason.
    Any inputs on the above issue would be of great help.
    Thanks and Regards,
    Vijaya Sai.

    Hi Chen,
    The problem the you are facing mostly occurs due to incorrect assignment of roles. The user id that is used in the EP needs to be present in the CRM backend system as well. The CRM Backend user has to be assigned to the corresponding single role.
    Portal user needs to be assigned to a Portal Role.
    Kindly have a look at the following document which will give more
    information on the role configuration.
    Please find the related documentation under:
    -> http://service.sap.com/crm-inst
    -> People-Centric CRM Inst. a. Config. Guides (on the left side tree)
    Kindly have a look at the guide for CRM 5.0
    This will give a clear picture on how to set up follow ups. Hope this helps. Please let us know incase you need more information on the same.
    Regards,
    Hemanth

  • Unable to create followup document

    Hi All,
    I am trying to create followup document from activity,
    but unable to get successful, actually debugged standard order maintain function module also,
    I  populated & followed the same in my zprogram too,
    but for the same values from standard program i.e CRMD_ORDER tcode linked GUID got generating, but from my code it is not
    generating followup document GUID....please help me out where I am doing mistake.......
    thanking you
    by code is like below :-
    ******followup document create
    *****header
    CLEAR : wa_ct_orderadm_h, ct_orderadm_h.
    wa_ct_orderadm_h-handle = '0000000001'.
    wa_ct_orderadm_h-mode = 'A'.
    wa_ct_orderadm_h-process_type = 'Z4D2'.
    APPEND wa_ct_orderadm_h TO ct_orderadm_h.
    *****input fields
    CLEAR : wa_crmt_input_field, wa_crmt_input_field_names, wa_crmt_input_field-field_names.
    REFRESH : ct_input_fields.
    wa_crmt_input_field-ref_handle = '0000000001'.
    wa_crmt_input_field-ref_kind = 'A'.
    wa_crmt_input_field-objectname = 'ORDERADM_H'.
    wa_crmt_input_field_names-fieldname = 'MODE'.
    INSERT wa_crmt_input_field_names INTO TABLE wa_crmt_input_field-field_names.
    wa_crmt_input_field_names-fieldname = 'PROCESS_TYPE'. "MANUAL
    INSERT wa_crmt_input_field_names INTO TABLE wa_crmt_input_field-field_names.
    APPEND wa_crmt_input_field TO ct_input_fields.
       document link
    CLEAR : ct_doc_flow, wa_ct_doc_flow, wa_doc_link, it_doc_link.
    wa_ct_doc_flow-ref_handle = '0000000001'.
    wa_ct_doc_flow-ref_kind = 'A'.
    wa_doc_link-objkey_a = wa_et_doc_flow-objkey_b.
    wa_doc_link-vona_kind = 'A'.
    wa_DOC_link-handle_b = '0000000001'.
    *wa_doc_link-reltype = 'VONA'.
    wa_doc_link-brel_kind = 'A'.
    wa_doc_link-brel_mode = 'A'.
    INSERT wa_doc_link INTO TABLE wa_ct_doc_flow-doc_link.
    INSERT wa_ct_doc_flow INTO TABLE ct_doc_flow.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
      IMPORTING
        et_exception            = it_exception
      CHANGING
        ct_orderadm_h           = ct_orderadm_h
       ct_orderadm_i           = ct_orderadm_i
        ct_input_fields         = ct_input_fields
       cv_log_handle           = cv_log_handle
       ct_partner_attributes   = ct_partner_attributes
        ct_doc_flow             = ct_doc_flow
      EXCEPTIONS
        error_occurred          = 1
        document_locked         = 2
        no_change_allowed       = 3
        no_authority            = 4
        OTHERS                  = 5.
    ******followup document end
    READ TABLE ct_doc_flow INTO wa_ct_doc_flow INDEX 1.
    IF sy-subrc EQ 0.
      READ TABLE wa_ct_doc_flow-doc_link INTO wa_doc_link INDEX 1.
      IF sy-subrc EQ 0.
        v_guid16 = wa_doc_link-objkey_b.
      ENDIF.
    ENDIF.

    CRM_ORDER_MAINTAIN to create follow up document
    To create follow up : Service Confirmation document
    Creating follow up transactions
    Create a Preceeding doucument using CRM_ORDER_MAINTAIN
    check these links, might be helpful.
    Thanks
    Raman

  • Unable to create  followup and view transaction types for InteractionRecord

    Hi,
    We are currently working in crm 7.0 environment.
    we are not able to create followup transaction for Interaction Record -
    Transaction Type -  Business activity(0010).
    We are not even able to view the standard transaction types available
    when we select followup both in UI and GuI.
    Any inputs in this regard are rewarded and appreciated.

    Hi sreenicrm,
    Have you configured anything in the "Allowed Channels for transaction types".
    If not, it may be worth copying the standard transation type and then setting the values in the above screens.
    if you set a values of "interaction Center"(IAC) and "CRM Server"(GUI) then you shoudl see the activity.
    I am using CRM 5.0 but would imaging it is similar in 7.0.
    HTH
    Gaz

  • Unable to create Business Partner in CRM

    Hi I am unable to Create a Business Partner (BP)in CRM though I could  see that the INBOUND  IDOC ( Msg type : CRMXIF_PARTNER_SAVE_M ) is getting posted.I created the IDOC through the test transaction (we19).Also i dont have any data to give in the field PARTNER_GUID without which the IDOC was failing.So i took an existing value from the table BUT000 and used it and it posted successfully but still the BP is not getting created in the system.Request you to pls suggest a solution..

    Kanth,
    You dont have to populate BP IDOC with partner guid.System generates partner GUID whenever BP is created.
    Try to create a BP without populating guid.
    Thanks,
    Thirumala.

  • How to create an activity in CRM automaticly

    Hi
    I'm working in CRM 4.0 and try create an activity automatically when a BUPA_MAIN objects come from FI-CA.
    In the BDOC-flow I start an own developed FM to check if a new activity will be created, that's no problem but which FM/BAPI will I use to create the new activity and how to fill them?
    Thank for help//

    Hello Jan,
    To create a new Activity Document use BAPI BAPI_SLSTRANSACT_CREATEMULTI.
    To find out how to fill the parameters, create a documento directly in CRM and debug function module CRM_ORDER_MAINTAIN to see how you have to fill the parameters.
    Maybe there is an OSS note that explains how to use this BAPI.
    Regards,
    Mauricio

  • Which function creates an activity in CRM?

    Hi,
    We would like to create activities in CRM through a BAPI-like function but we can't seem to find a suitable one. Do you know which function / class method is used to create new activities in CRM ?
    Thanks in advance,
    George

    Hi,
    Please have Look into  the below LInk
    Using BAPI_ACTIVITYCRM_CREATEMULTI.
    [Link|Re: Creating Activities Programmatically in CRM]
    Hope it will be HelpFul
    Thanks
    kalyan

  • FM to create followup activity for opportunity

    hi forum,
    can anyone tell me the FM to create a followup document for opportunity.

    Hi Neelima,
    You can't use function modules for such purposes. You need to maintain copy control procedure in SPRO.
    Maitain the following settings in SPRO :
    1. Define Copying Control for Transaction Types
    2. Define Copying Control for Item Categories
    3. Define Item Category Determination when Copying
    You can implement the CRM_COPY_BADI to control the copying process.
    <b>Reward points if it helps.</b>

  • Unable to create new user thru Portal

    Hi,
    I am unable to create user from the oracle portal web page under the Administer tab.
    I have logged in as user PORTAL30 which has DBA rights.
    When I click the Create new user link, it generates an error page WWC-00000.
    Would appreciate if any can help me out urgently.
    OS: NT4 SP5
    9iAS 1.0.2.1
    Vipul
    null

    Cindy,
    Thanks for the solution. It worked fine after changing servername to lowercase.
    The servername was set in in httpd.conf by the 9iAS installer itself. I would like to express that Oracle should have checked before launching or should have listed it in the release notes.
    Once again thanks for the inputs, Cindy.
    Regards,
    Vipul
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by cindy:
    I too was having the same problem. I found this in another post:
    "this is reported as
    BUG:1534919
    the solution is to use lower case server name in httpd.conf. It must be in lower case."
    I made the change and am now able to create users.<HR></BLOCKQUOTE>
    null

  • Unable to create confirmation/invoice in SRM,Classic Scenario

    Hi Guru's,
    I am unable to create Confirmation/Invoice in the Portal, attached the screen shot of the error
    its is the problem with the ADRC table, there is no entry in the table for the BP.
    I tried to access the table via SM30 to add the entry in ADRC manually, I get a message table maintenance not defined
    Regards,
    Kiran

    Hi Kiran,
    Could you please also advise whether all the users are not able to create the confirmation in portal. Or if there is any specific user who is not able to do that?
    And I also request you to advise whether you going to do the invoice in SRM portal in classic scenario?
    Best Regards,
    Bharathi

  • Custome tab develpment process in  crm portal application CRMD_BUS2000126

    Please guide the step by step procedure to create custome tab in crm portal.
    please suggest the way that is assigned to PCUI frame work.
    i will appreciate small help also

    You need to read through PCUI cookbook to resolve most of your questions.
    Thirumala.

  • How to create a business partner whose BP category is person in crm portal?

    How to create a business partner whose BP category is person in crm portal.When I use Partner and account management>Partner function in portal,I create a new partner,the partner category is default organization,can not change.
    But I what to create a partner with the partner category person,how can I do it?
    Is there any other special function to ceate a BP in portal matching the function  with T code Bup1(create BP)in sap gui?
    By the way,I have the whole privileges in portal and crm.
    thanks

    Hello,
    Standard CRM PC UI application offers three options when you push 'New' button: 'Person', 'Organization' and 'Group' (combobox appears). In your case, 'Person' should be selected.
    p.s. If you don't see combobox mentioned above, it could be security issue.
    Kirill

  • Unable to create opportunity CRM

    Hi,
    one User unable to create opportunity in CRM.That tab came as disable for that only perticuler user.
    Regards'
    Kumar

    Hi Kumar,
    As mentioned by Gobi, please check the PFCG role and also run the trace with the help of basis colleague to check the missing authorizations.
    Hope this will be helpful.
    Regards
    DJ

Maybe you are looking for

  • How to display a message dialog box

    I need to know how to display a message box from my application. Anyone can help me? Thanks in advance

  • How to keep a High Quality Movie Resolution using IDVD ?

    Hi, When I connect my camcorder to the TV directly, I can see very sharp resolution video (in normal TV screen format). If I download the same recording to Apple in widescreen format, add music to it using iMovie and then burn it using iDVD, I get ve

  • Changing my volume causes the application to minimize!!! How i can solve this???

    Dear Friends, I purchased a HP Pavilion dv6-2180us and I'm having this problem. Whenever I'm gaming or watching a movie on full screen and try to change the volume (my volume is touch sensitive) sliding to increase or decrease the sound, the applicat

  • Wrong position of barcode variables (Bar-One)

    Hello, I am using Bar-One to design barcodes. I am able to print them out of SAP (SE71). We are using the Zebra Z4mplus. But I have a problem with the SAP variables. The data are all printed correct except the postition of the SAP variables. They are

  • Nokia 5610 XpressMusic Startup Problem..

    Hi, I have Nokia 5610 XM startup problem with memory card.. (I tried with 3 different micro SD card also) I made video of problem.. video found here: http://www.youtube.com/watch?v=VqUaI3S3v5s&feature​=channel_page If I remove the memory card, then i