SRM calls solman rfc for any transaction

Hi,
When I execute any tcode in SAP SRM or want to check any settings through SPRO it is directing me to Solman RFC and asks for user / password.
How can I check where this settings are maintained?
Thanks & Regards,
Yogesh Cheulkar

Hi Juan,
Even I am surprised why this RFC is being called for simple transaction.
After entering  user and password for rfc logon screen I am able to continue with transacaction.
But even if I skip this step of user and password without entering password it is allowing.
Only problem is it is continuously asking for each steps.
Thanks & Regards,
Yogesh Cheulkar

Similar Messages

  • How to create an RFC for MIGO transaction?

    How to create an RFC for MIGO transaction?
    I want my RFC to accept all details as accepted in MIGO transaction.
    For the entered PO no, display the materials against it and allow user to enter the quantity for the same.
    Then the user should be able to post the PO by executing the RFC.
    Kindly revert asap.
    Thanx in advance,
    Bhakti

    Put good movement header data in structure header
      l_header-pstng_date = sy-datum.
      l_header-doc_date = sy-datum.
      l_header-ver_gr_gi_slip = space.
    Assign goods movement code
      l_wa_goodsmvt_code-gm_code = c_gm_code.
    Add material, plant, and other line item details in
    goods movement item table
      l_wa_goodsmvt_item-material = l_wa_selected-matnr.
      l_wa_goodsmvt_item-plant = l_wa_selected-werks.
      l_wa_goodsmvt_item-stge_loc = l_wa_selected-lgort.
      l_wa_goodsmvt_item-batch = l_wa_selected-charg.
      l_wa_goodsmvt_item-move_type = l_wa_selected-mov_type.
      l_wa_goodsmvt_item-entry_qnt = l_wa_selected-deviceid.
      l_wa_goodsmvt_item-entry_uom = l_wa_selected-meins.
      l_wa_goodsmvt_item-move_plant = l_wa_selected-zwerks.
      l_wa_goodsmvt_item-move_stloc = l_wa_selected-zsloc.
      l_wa_goodsmvt_item-move_batch = l_wa_selected-rec_batch.
      l_wa_goodsmvt_item-serialno_auto_numberassignment = space.
      APPEND l_wa_goodsmvt_item TO l_i_goodsmvt_item.
      CLEAR l_wa_goodsmvt_item.
      l_wa_serial_num-matdoc_itm = l_c_mat_doc_item.
      l_wa_serial_num-serialno = l_wa_selected-sernr.
      APPEND l_wa_serial_num TO l_i_serial_num.
      CLEAR l_wa_serial_num.
    To call BAPI BAPI_GOODSMVT_CREATE to transfer material of transfer
    type one step
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header       = l_header
          goodsmvt_code         = l_wa_goodsmvt_code
        IMPORTING
          goodsmvt_headret      = l_goodsmvt_headret
        TABLES
          goodsmvt_item         = l_i_goodsmvt_item
          goodsmvt_serialnumber = l_i_serial_num
          return                = l_i_return.
    cheers
    Aveek

  • Shortcut for any transaction

    Hi All,
    can any body tell me how to create a shortcut on the desktop for any transaction.
    Ex-i am having a TCode BP when ever i click on the shortcut i should get the BP screen directly without going through the logon pad- BP .
    Regards,
    SAP.

    Thank you for your quick reply.My problem is that i am having a SA38 query which is created based on Quick viewer, for that query i need a shortcut on the desktop. exp-
    What i am doing-
    1. I have created SA 38 query and i will execute in SA38 when i execute that query i will get one more screen based on my selection screen.
    What i want-
    when i execute SA38 query the screen which i get i want that screen as shortcut on my desktopI
    Regards,
    VRS.
    Edited by: rajasekhar on Jan 19, 2010 7:59 AM
    Edited by: rajasekhar on Jan 19, 2010 8:05 AM

  • Method (se24) to search badi's for any transaction code

    hi,
    is there any other way to search badi except se18 name? my friend told me that we can search badi by using one method(se24) also but he also don't know the name of that method. can any one tell me?

    Hi
    1) First go to any transaction->iN THE menu bar SYSTEM->STATUS->Get the program name ->double click->u will go to the program attached to the tcode.Now search term will be CALL CL_EXITHANDLER.Now u will get list of BADI'S available..
    2) Goto SE24->Give class name as CL_EXITHANDLER->Display->double click on get_instance mathod->Now u will go inside the method->Now put break point on the cl_exithandler.Now go to any transaction code and pass dat..U will see that it will be stopped on the break point which u set on the cl_exithandler...In the exit name u can find list of badi's attached to the tcode..
    or
    1) Go to Maintain Transaction  (TCODE- SE93).
    Enter the Transaction Ex:- VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    Go to TCode: SE84->Enhancements->Business Add-inns->Definition
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI?s for the given package MB.
    Above replace VD02 by your Transaction for which you need BADIs.
    Regards
    Bala Krishna

  • Inplace viewer for any transaction code?

    Hi all, have to say Im a beginner in the ABAP Field...
    I would like to split the SAP-GUI screen in two parts for any SAP-transaction:
    First screen : any transaction S000, SE80 whatever...
    Second screen:  a static document, to show for example a guideline for the even called transaction
    Thanks a lot for any suggestion : )
    @Gurus
    I found this demo report:
    OM_DEMO_OBJECTMANAGER_SINGLE
    Do you think it could be possible to modify for my needs ?
    Edited by: carmine dagostino on Feb 6, 2008 4:10 PM

    You could try writing a program that works like the ABAPDOCU transaction..
    On the left hand side have a Tree type structure and on the right have the documentation, or whatever.
    Try debugging the ABAPDOCU transaction . The interesting bit from your point of view is expanding and executing the ABAP code that appears on the right of the screen.
    I think the actual sap program is SAPMSABAPDEMOS_TREE.
    Cheers
    jimbo

  • How to update a BP status Using CRMXIF_ORDER_SAVE for  any transaction .

    Hey i am able to perform deleting a transaction or inserting a BP for a transaction using CRMXIF_ORDER_SAVE .
    But i am not able to delete or update a BP for a transaction using my program .
    REPORT  ZCRMBUSIPART1.
    data : t_crm type CRMXIF_BUSTRANS_T ,
          wa_crm like line of t_crm ,
          wa type CRMXIF_PARTNER ,
          i_ret type BAPIRETM .
    *PARAMETER : p_input type CRMXIF_BUSTRANS-object_id .
    wa_crm-OBJECT_TASK = 'U' .
    wa_crm-object_guid = '220939E0B523274FB6C0E380766BCEEA' .
    wa_crm-partner-datax = 'X'.
    wa-partner_fct = '00000031'.
    wa-partner_no = '0000000025'.
    wa-object_task = 'U'.
    wa-kind_of_entry = 'A'.
    wa-addr_type = '2'.
    wa-display_type = 'BP'.
    wa-MAINPARTNER = ''.
    wa-input_fields-PARTNER_FCT = 'X'.
    wa-input_fields-partner_no = 'X'.
    wa-input_fields-kind_of_entry = 'X'.
    wa-input_fields-addr_type = 'X'.
    wa-input_fields-display_type = 'X'.
    wa-input_fields-MAINPARTNER = 'X' .
    append wa to wa_crm-partner-data .
    append wa_crm to t_crm  .
    CALL FUNCTION 'CRMXIF_ORDER_SAVE'
      EXPORTING
        data          = t_crm
    IMPORTING
       RETURN        =  i_ret
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      WAIT          =
    IMPORTING
      RETURN        =
    write 'done'.
    IF any1 can please point out the reason , it wud be appreciated .
    THanks guyz

    Hi ,
    PUT a break point in CRM_ORDER_MAINTAIN and try to change the partner in order and you will come to know which values needs to be passed.
    example.
    REF_GUID                                                                  pass the ref guid
    REF_HANDLE                                               0000000000
    REF_KIND                                                                  pass the ref kind
    REF_PARTNER_HANDLE                                             0000
    REF_PARTNER_FCT                                             pass the old partner function
    REF_PARTNER_NO                                             pass the old partner no
    REF_NO_TYPE                                             BP
    REF_DISPLAY_TYPE                                             BP
    PARTNER_GUID                                             pass the guid
    KIND_OF_ENTRY                                             pass the kind of entry
    PARTNER_FCT                                             new partner function
    PARTNER_NO                                             new partner no
    DISPLAY_TYPE                                             BP
    NO_TYPE                                                                  BP
    Regards,
    Gangadhar.S
    Edited by: gangadhar rao on Mar 7, 2011 11:31 AM

  • How to call a variant for a transaction

    Is it possible to call a specific variant (say test) for a transaction like MMBE?

    Dear Pinkey,
    You can use transaction SHD0 (Transaction Variant)
    http://help.sap.com/saphelp_webas620/helpdata/en/eb/5fab41d79b11d296190000e82de14a/content.htm
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components -> Application Personalization -> Tailoring of Application Transactions -> Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Hope this will help.
    Regards,
    Naveen.

  • Getting Common Error for any Transaction posting- Fund Management

    Hi,
    I have created Budget against Commitment Items and linked those commitment Items to GL.
    When I am posting any Transaction in F-02, for the same Commitment Item for a less amount, I am getting an error message as shown in the screen shot
    When I try posting with another Commitment Item unlike before, I get the same message and same amount.
    Now I want to check why in case of both the transactions I am getting the same Budget exceeding message. Please advice how to check the budget.

    Hi,
    It depends... First of all, I'd suggest running FMAVCREINIT transaction in order to make sure that your AVC ledgers are in good shape.
    If you still have the problem, please, revert back.
    Regards,
    Eli

  • How to Find implemented Enhancements impementations for any Transaction ?

    Hi Folks,
               We are having standard transactions to find User Exits, Customer  Exits, Filed Exits, BAdis..
    Accordingly, in any program, we can find out the enhancement code..
    Similarly, If I implement any implicit enhancement , and if others run any transaction containing similar code in part of there application, how can these implementations can be traced out by others, with out debugging entire code..??
    <<Text removed>>
    Cheers..!!
    Edited by: Matt on Feb 16, 2009 10:12 AM - Do not offer points

    Goto CMOD
    F4 for project,
    information system
    Yow can find the PLUS button on the pop up window.
    Deselect inactive and partially active check box and press enter
    You can find the projects activated.
    Regards,
    santosh reddy

  • Generic approach to call a method for any business object

    My requirement is to call the DISPLAY method of a business object when I have the objectType and objectId.
    Say I have BUS2012 and Id 4500001111, now I want to call a method which invoke the DISPLAY method for this object with objectId (say ME_DISPLAY_PURCHASE_DOCUMENT for purchase order). I even have the key fields for the business object.
    Is it possible ?
    Thanks in advance !
    Ruhi Hira

    Hi Ruhi,
               Yes you can call the method for display.Before we can do that we need to fix the procedure for the calling of the method.If you want to call it programitically or you want to call it in task builder or you want to use it as a activity in the work item.we can check for the BUSXXXXXX what ever number is there and we can also check for the activity type pre defined by SAP for it.If suppose you dont have the activity we can create the method for the BOR object type using SWO1.May be it helps your query.
    Have a best day ahead.

  • BDC Migrations for Both Call and Session for same Transaction

    Hi Friends,
    When am trying to migrate 100 records for MM01 by using both call transaction and session method but i got the error at 50th record..i would like to know what was happen in both of them and how can i resolve those errors please can you let me know
    Regards,
    Sreenivas

    Hi,
    I don't understand, did you check the log of SM35 ?  did you try to execute the BDC in display error ?
    regards
    Fred

  • Documentation or step-by-step guide for any transaction.

    Hi i have just finished ABAP Training.i want to learn more and more transaction  myself.but whenever try to learn any new transaction it seems  very hard as confused with many functionality.For ex.if i want to learn SM36 transaction which is related to scheduling background jobs.i want some guidance to learn more transaction.Where do i get documentaion about that transaction or step-by-step guide.
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Jan 7, 2012 10:20 PM

    wrong place mate. this is not a training forum, yes you can search with the key words in SDN and you will find WIKIs which will kind of serve you for training guide.
    just google it. you will find a lot of stuff in web. or even help.sap.com would help you with almost every thing you wanna know,
    this forum will come handy when you are stuck with something.
    happy learning

  • BackGround code for any transaction

    Hi Experts,
    I want to see the back ground code for transaction "LISTCUBE".
    Please guide me how can i do that.
    Thanks in advance.

    HI,
    When you enter the t-code above you will find sytem.
    Go to system, then there you will find status, click on it.
    A new window will open, there under SAP data you will find program(screen) double click on it, it will display the program.
    Hope this helps.
    Thanks,
    Rahul

  • BADIs for a Transaction

    Hi Gurus,
    Can anyone please tell me how to findout the available BADIs for a Transaction?
    regards
    sunil

    Hi Jaya,
    There are 2 methods to find a BADI for any transaction.
    Method 1:
    step 1. Execute transaction SE37 or SE80 and find function module SXV_GET_CLIF_BY_NAME'.
    step 2. Insert a breakpoint in it.
    step 3. Now go to the SAP transaction you want to find a BADI in.
    step 4. When you execute it, it will stop at the above function module.
    step 5. Look at the value of field EXIT_NAME.
    step 6. This will provide you with the name of the BADI that is available in your SAP transaction code.
    Method 2:
    step 1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.
    step 2. In 'Display' mode, go to 'Methods' tab.
    step 3. Double click the method 'Get Instance' to display it source code.
    step 4. Set a breakpoint on 'CALL METHOD l_exithandler=>get_class_name_by_interface'.
    step 5. Then run your transaction.
    step 6. The screen will stop at this method.
    step 7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI for that transaction.
    Regards,
    SB.

  • Blocking a company code for all transactions.

    A compnay code is having two plants assigned. No open documents in that company code.
    How to block the company code for any transactions including purchase document creation?
    However all the past data to be available for viewing and reference.
    Thanks in advance.
    Narasimharao

    Dear Narasimharao ,
    You can remove authorization from user profile to use this company code.
    And when someone try to save any documents , error message will be send.
    hope this could help you.
    best regards,
    Carlos Moçatto

Maybe you are looking for

  • Frist Gen Shuffle no longer recognized.

    I had a original iPod shuffle that i used for years. I misplaced it and recently found it again. It worked fine when I last used it. iTunes does not see the shuffle. It does not show up in the system profiler under any OS and I've tried 4 different M

  • Nodes in hierarchy viewer

    Hi, in hierarchy viewer we have option to display no of nodes . now I want to display those no of nodes on the top of the page . If I have master-child-sub child in the hierarchy viewer, then I have to display like nodes in child level-- 5(or i have

  • S.O.S : problems packages!!!!!

    Hi everybody: I have a problem creating packges. When doing portlets, with HTML informtaion (I do not want to use Built-in portlets, I want to create a new one, a database portlet to practise)I do not know how to create a link which goes to next page

  • What has happened to my built in maps on iphone 4?

    I was really enjoying the maps app: however it's not working any more.  Since installing new operating system it is practically blank when opening Maps.  All that shows is a grey screen and the bottom left arrow and bottom right page turning icon.  N

  • Problem Dynamically Creating Listener

    I can dynamically create a UI from XML, but I can't get the clickHandler to work. Can someone please help me to get this to work? Thanks !!!