Defaulting BP role in transaction BP

Hi,
I would like to default the BP role to "Sold-to" when calling transaction BP instead of the "general BP role" which is standard.
Is this possible somehow ?
thanks
Guest01

Hi,
You can achieve this using application transaction. In transaction BUSF you can check out some transactions are mentioned like BUI1. If you try using BUI1, BP will open only with role prospect. Same way you can define your own transaction for role sold to party in BUSF.
If you want other roles also should be present with this role in BP, then there is no way through customzing to get it. Instead you can use the method 'start_with_navigation’ of class ‘cl_bupa_dialog_joel’ is used instead of calling transaction BP.For going directly to ‘Sold to party', you need to pass the role  to method ‘start_with_navigation’.
Thanks and warm reagrds,
Smita.

Similar Messages

  • Default value in MIGO transaction for PLANT specific

    Hi Experts,
    I am looking for default vaule in MIGO transaction.
    Whenever goods receipt is entered for one particular PLANT ,i want vaule to be dafaulted in Quantity tab No.of container unit value to be PC for english and ST for german.
    Is is possible to achiece by creating new role ? if then how ?
    Note : It is for PLANT specific and for only one user.
    Thanks

    >
    Dhina wrote:
    > Is is possible to achiece by creating new role ? if then how ?
    This is not possible using security.  You will be able to do it via some form of customisation but you need to judge whether is it worth it.

  • Set the default field value to transaction code field, when calling from WD

    Hi all,
    Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field.
    Is there any way to pass the value to this transaction field. I have also tried out to set the parameter ID 'AUN' for VA03 transaction VBELN field. But it did not work for me.
    Is there any way to set the default field value to transaction code field, when calling from WD?
    Please suggest, if anyone have any idea.
    Thanks
    Sanket

    Hi,
    I am using the below code to open a standard transaction. It will help you to explain my point more easily.
    DATA: url TYPE string,
              host TYPE string,
              port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'VA03'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Note*
    One more query I want to add to this thread, that is there any possibility to call a custom transaction as well?

  • Report to view all the Roles and Transactions assinged to a particular user

    Hi,
    I need to develop a report to view all the Roles and Transactions assinged to a particular user along with the Authorization values. So, if provide the Username, the report should be able to give Roles, Transaction Codes and the fields and thier authorization values for that TCodes..
    Regards,
    Sreenivas Raju

    Try this FM once - SUSR_USERS_LIST_ALV . It provides a list with Roles, Profiles, and also a detail button to check the authorization values etc.
    Also try this FM - SUSR_USER_DISPLAY_WITH_AUTHS, SUSR_USER_AUTH_FOR_OBJ_GET , SUSR_USER_DISPLAY_WITH_S_TCODE

  • Badi for setting default values in the transaction in APO.

    BADI NAME: SMOD_APOCF005 which is used for setting default values in the transaction.
    I have implemented the BADI using the below code but that BADI is not triggering. Please can you provide any solution for resolving this.
    As per my requirement I am trying to set default values for these three fields RRP_TYPE, WHATBOM, CONVH.
    DATA: LS_MATLOC LIKE LINE OF IT_MATLOC.
    LOOP AT IT_MATLOC INTO LS_MATLOC.
    LS_MATLOC-RRP_TYPE = '4'.
    LS_MATLOC-WHATBOM = '5'.
    LS_MATLOC-CONVH = '999'.
    MODIFY TABLE IT_MATLOC FROM LS_MATLOC TRANSPORTING RRP_TYPE WHATBOM CONVH.
    ENDLOOP.
    DATA: LS_MATLOCX LIKE LINE OF IT_MATLOCX.
    LOOP AT IT_MATLOCX INTO LS_MATLOCX.
    LS_MATLOCX-RRP_TYPE = 'X'.
    LS_MATLOCX-WHATBOM = 'X'.
    LS_MATLOCX-CONVH = 'X'.
    MODIFY TABLE IT_MATLOCX FROM LS_MATLOCX TRANSPORTING RRP_TYPE WHATBOM CONVH.
    ENDLOOP.

    The  BADI name: SMOD_APOCF005 .
    T.code at APO : /sapapo/mat1
    Once we enter in that T.Code with some Product and Location data.
    There under PP/DS tab.
    Under Planning Procedure there is a field PP Plng Procedure which I want to set as 4
    And under Order Creation there is Plan Explosion which needs to be set as 5
    And Under Horizons there is PP/DS Horizon which needs to be set as 999.
    BADi is implemented and active.
    And once the data is CIF from ECC to APO
    These default values are not set in the T code in APO and the BADi is not triggering.

  • User settings for Default plant in some transactions

    Hi gurus,
    is it possible to get a default plant in any transaction that you enter ...
    e.x In any Tcode or  tcode MD04, i want my relevant plant ,ie ABCD to appear by default always.Whta would be the user settings I need to do
    Thnx in ADVANCE
    HKR

    Dear Hemanth,
    for every t-code u have settings options in tool bar
    next to that u have save option
    give plant & save from that option
    then check the result
    Regards
    kumar

  • CRM Architecture: relations between business roles and transaction

    Hello Experts!
    I am dwelling on the topic of the relations between Business Roles, Transactions, Transaction Types etc. Do you know if there is any architectual diagram to make clear how these objects are related, and how they depend on each other?
    Thank you for help!
    Karolina

    Hi Javier,
    As far as I understand you want to restrict transaction types per business role.
    You can achieve this by customizing. You can create a transaction profile in customizing for each business role and assign the transaction types you have created to this transaction profile.You can find this customizing activity in spro transaction.
    Then you can assign transaction profile you have created to your business roile by assigning function profile 'transaction profile' to the business role in crmc_ui_profile tcode.
    In this way when you login with the business role the transactions you have maintained in transaction profile will only be shown up in the pop up.
    I hope this helps yiour requirement. Let me know if you require any further information. Thanks.
    Regards
    Yogesh

  • Job role design - transaction role and auth object role

    Hi all, please kindly comment following job role design:
    (1) transaction role:
    Keep transactions in single job role to represent business processes in different application areas, e.g.MM: maintain PR, PO, OA.   CO: maintain cost center, internal order   HR: maintain org structure, personnel management.
    The single job role will only keep role menu, object S_TCODE and inactivated all other application related authorization objects.
    (2) authorization role
    Keep application component related authorzation objects except S_TCODE in single job role by different application area, e.g. Objects of MM_B, MM_E, MM_G in MM role. Objects of K_CCA, K_CSKS_SET in CO role.  Objects of HR in HR role.
    Then maintain org level of MM, CO, HR roles for different companies, e.g. Company A MM role, company A CO role, company A HR role, company B MM role.;....
    User will be assigned transaction role + auth object role.   For example, user of company A to perform MM and CO functions will be assigned
    with MM transaction role + company A MM role + company A CO role.
    Please let me know the pros and cons of above design.  Thanks.
    Regards,
    Donald
    * I can see the disadvantage of this design is during SAP upgrade (SU25), revised of authorization object will not reflect in authorization role

    Brent Van Dyck wrote:
    Keep in mind the project was for an HCM implementation where there's already hardly any connection between tcodes and authorization values so it may have made more sense in that context than it would in a classic SD/MM.
    That is correct - but it still exceeds "horrible" beyond imaginable boundaries if you try to split the fields of the objects into different roles and expect it to work or that there will be less roles.
    In the case of HCM and also BW the auths admin needs to know more about the data and organization than what classic ERP auths admins can get away with. That is why they take longer to migrate away from manual profiles and have a greater tendency to have manual authorizations inserted into roles - which could however also be achieved by maintaining fields proposed without values and at least proposing those (such as activity type fields) which are known.
    But splitting cube / characteristics / key figures  or infotype / personel group / auth code into different roles can only go wrong.
    Another mistake some "value role experts" sometimes make is that they don't want Su24 proposals in PFCG because they don't understand them. So what they do is that they clean out the SU24 tables completely... Well... the side affect of that is that all SU24 check indicators flagged as "no check" suddenly become alive in their system although there are mostly good reasons not to have the checks active.
    Cheers,
    Julius

  • How to set a default value to a transaction property?

    Hi All,
    I have a table in which one of the columns is production_date. I need to retrieve and display the data corresponding to the month as selected by the user in the front end. But prior to the selection, the user should see the data of the current month. I am able to show the data of the user selected month, but am unable to show the data of the current month. Instead of the current month, the transaction returns the data of the month of January by default. Can anybody help?
    Thanks and Regards,
    Lipsa.

    Jeremy,
    I am not at all bothered about the selected month. I think, you too did not get my question. Let me explain you the scenario once again.
    In the left hand side of the user's dashboard, there is a link to view current status. Once the user clicks the link, he should see two things.
    1. a chart to display the data of the current month.
    2. a drop down list to select a month of his choice.
    The data is available in the database table. This table is having a column called Production_Date. Once the user selects a month from the list, the selected item is set to an applet parameter. I have designed a BLS which calls the query template having this parameter. The QT queries for all the data from the database. The BLS is having a transaction property called 'month'. The parameter value is assigned to this property. Now, this property has the month selected by the user. Finally, I have the logic where I repeat the column Production_Date, get the month out of the date, compare the month with the property value in a conditional block, and get the data once the condition is true. Using these steps, I can get the data of the month selected by the user.
    My issue is, the user should see the data of the current month prior to selection from the drop down list which I am unable to do. Any suggestions as to how can I achieve this?
    Regards,
    Lipsa.

  • Customer pricing procedures As default value in BP Transaction (CRM)

    Hi,
    Is it possible to set a default Customer pricing procedure in transaction BP when choosing a Sales Area?
    My problem is that we set just one Customer pricing procedure and the field is set as compulsory. But in some cases users manage to save the BP without precising the customer pricing procedure. Since it"s compulsory the replication to SD ends as a Bdocs notice partially sent BP to SD.
    Most users have a red messaging saying they have to fill in the field with a "standard' customer pricing procedure but sometime they find a way to switch to next sales area without setting this information.
    Thus came to my mind to set a default Customer pricing procedure so that users wont forget.
    Is it possible?
    Many Thanks

    Hi
    did u try to have a look into the BAdI BUPA_INITIAL_SCREEN_IMP??
    I think your requirement shoul be anyway intercepted by a BAdI.
    Regards
    CArmine

  • Default material populated in Transaction of IC Webclient 4.0

    Hi Experts,
    Might sound silly but I dont have any answer for the following requirement.
    Requirement is to have a material/product defaulted in the Order type of IC Webclient. I mean, as soon as the IC agent create a transaction, the order type should already have the Product defaulted in it with a quantity of 1 or more.
    Can someone guide me as to how this can be achieved?
    thanks
    Yash

    Hi Yash,
    I can think of one way to do this: create an order containing this item. Add the partner data of all your IC agents in this order (employee responsible). Save this order and tell your agents to use this order as a template for all order entry through ICWC.
    Not a very esthetically sound solution. Another option may be to (mis)use the Free Goods functionality within CRM Marketing for this purpose: add the required item to any order, independent of other order items.
    Hope this gets you started,
    Kind regards,
    KZ

  • Change default document type in transaction F-47

    Hi guys,
    any idea how may I change the default value (not on user level) of the document type in transaction F-47.
    Thanks and regards

    Use transaction OBU1 (path: IMG Financial accounting / general ledger accounting / business transactions / G/L account posting / Carry out and check document settings / default values)

  • How to populate default values in standard transactions

    Hi abapers,
                    what r the different ways to populate fields with default values while entering into standard transactions
    thanks in advance.

    Hi,
    You can either create trasaction variants with Default values and then create transaction suing these Variant transaction and use this transaction instead of irignal transaction.
    SHDS-> to create Variant transaction
    SE93-> to create transaction of this Variant Transaction.
    or you can also use SAP memory statements like GET and SET PARAMETERS to set one value in one internal session and get that in another session in an External session.
    Regards,
    Sesh

  • Problem to set the custom layout as the default layout in std. transaction

    Hi all,
    I want to change the standard layout that is displayed in a standard transaction (EL31) as default. I want few more fields of the structure also to be displayed in the default layout of the standard transaction. I have made a custom layout that i want to be displayed but cant make that layout as the default layout for all users. Please suggest me some way to make the custom layout as the default layout for a standard transaction.

  • Set  a default tab  in ME23N transaction

    Hi Guru's
       How can i   set  a default tab (Purchase order history ) in ME23N transaction ?
       Thanks and Regards .
       Priyank Dixit

    Hi Anil ,
        i am calling ME23N Trancation in a report ...when i click on any purchase order of alv out put ,it calls the transaction ME23N..
      Now i want the Purchase order history tab as default  for any item which have a  GR  .
    Thanks and Regards ..
      Priyank Dixit

Maybe you are looking for

  • Error with ant build and JUnit task in IntelliJ

    Hi, I seem to be having a very annoying error in IntelliJ. Here are the stats: - IntelliJ 4.5.1, Build 2239 - Using own version of ant (1.5.1) - removed junit37.jar from my ant1.5.1/lib dir, and instead added junit version 3.8.1 of junit.jar to that

  • Choice of Slide Resolution

    Having read the HELP Topic with Keynote 08 on Slide Resolution I feel that there's important detail missing. ANYONE OUT THERE WHO CAN HELP BEFORE I CREATE LOTS OF SLIDES?? 1) Since (I've noticed) that if I decide to change the slide size of a present

  • SAP Kernel on Drive D: in dual boot Scenario.

    Hello, I am trying to install SAP 4.7 IDES on my system. My system is Intel Core 2 Duo, 4GB RAM and 320GB HDD. This is a dual boot system with Windows 7 on drive C: and Windows Server 2003 (x86/SP2/Enterprise Edition) on drive D:. Drive D: has a part

  • What do I need to know about transfering a 4th gen touch to a new 5th gen touch?

    My daughter will be getting a new 5th generation touch today. She has a 4th generation touch now. What do I need to know about transfering informaiton from one device to the other?

  • System.Web.HttpException: Request timed out.

    Hi, In custom web part I am getting the bulk data from SharePoint audit logs. We are getting the below error when we have moved this to production. System.Web.HttpException: Request timed out.  Please let me know to avoid the same. Please provide you