How to link two authorizations to an object.

Hello,
In the EWA report I received the following recommendation:
"If you do not want to disable development in your system, you have to exclude OBJTYPE=DEBUG with ACTVT=02 from the profile and allow any other object type for S_DEVELOP. This means that development and debugging with visualization are still possible.
You can do this by linking two authorizations to object S_DEVELOP: One with all object types (except "DEBUG") and all activities and another for object type DEBUG only with all activities (except 02)."
How to achieve this?
Thanks
Galina

> I try not to maintain transactions in SU24. 
>...
> We have a small user population. 
I can understand that, however it still has a downside when your user base grows, or you move on and someone else needs to take over, or the functional consultants leave the building and when you upgrade or apply support packs and need to make some changes, then you don't know why the authorization was added manually - at least not without having to sieve through a sea of documentation and mails etc.
It is easier to find a transport request and it's documentation IMO, and who knows about it, approved it, tested it, etc.
It is just a little organizational discipline thing, but it does go a long way.
Cheers,
Julius

Similar Messages

  • How to link two combo boxes? (urgent)

    Hello,
    I am wondering how to link two combo boxes in Acrobat Pro 9. Basically, I need to link a building with a list of rooms. There are 3 building choices in my first combo box. For the sake of example, Building A, Building B and Building C. When one of the buildings is selected, I want a 2nd combo box to display the rooms that are located in that building. So by selecting building A, you would then be able to choose a room from the list of available rooms in the second drop box. The buildings cannot share a list of rooms because they have the same room numbers. Is anyone able to help?
    - Travis

    You can also use ajax. When the first combo box element is selected, it will call the ajax function and that ajax function will bring the data from the database and place it in second combo box.

  • How to link two selectOneListBox?

    Hello, I'm trying to link two selectOneListBox. The operation is as follows, when you select a value in the first select, the second select will be charged with the values related.
    I'm building the components in a programmatic way. A example code for the first select is:
    ProcesosBean.java
    HtmlSelectOneListbox select= new HtmlSelectOneListbox();
    select.setId("select"  +i);
    select.setSize(1);
    UISelectItems items = new UISelectItems();
    ArrayList arr = new ArrayList();
    for (int i = 0; i < list.size(); i++) {
         arr.add(new SelectItem((ListBean) list.get(i)).getId(), ((ListBean) lista.get(i)).getValue()));
    items.setValue(arr);
    comboCampos.getChildren().add(items);
    MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{processAction .loadSelect}",     new Class[] { ActionEvent.class });     
    comboCampos.addValueChangeListener(new ValueChangeListener() {
         public void processValueChange(ValueChangeEvent arg0) throws AbortProcessingException {
    comboCampos.setValueChangeListener(mb);     I tried to use "addValueChangeListener" and "setValueChangeListener" but does not work.
    In the ProcessAction class, I will get the values of the second select, for the selected value, and it will charge the second select, in a programmatic way.
    I thought this could be done with javascript, but I don't know how to call the ProcessAction method. Any suggestion?
    Edited by: dcastellar on Oct 15, 2009 1:03 AM

    Well, I found a problem in the first implementation (with the a4j function), you can't change the view (ej: the values of the inputs), but it's works fine in the rest.
    The second alternative, I was wrong about the object that I used. It wasn't the ValueChangeEvent not the ActionEvent. This alternative works correctly.
    a example of the code that I use is: (I do not use the jsf tags, I show the components programmatically)
    the bean class
    HtmlSelectOneListbox select= new HtmlSelectOneListbox();
    select.setValue("");
    MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{processAction.loadSelect}",new Class[] { ValueChangeEvent.class });
    select.setValueChangeListener(mb);the action class
    public void cargarComboFormato(ValueChangeEvent  event) {
    }thanks for all, and sorry for my bad english.

  • How to link two databased

    I have to link two tables from two differen databases.
    select vendor from table a database e
    select vendor from table b database c
    how can i combine this two tables

    You create a database link. Assuming you are on database e:
    CREATE DATABASE LINK c_link
      CONNECT TO name_of_c_database_user_with_select_privilege_to_table_b
      IDENTIFIED BY password_of_c_database_user_with_select_privilege_to_table_b
      USING 'c_database_tns_entry_name'
    /Keep in mind 'c_database_tns_entry_name' must exists in tnsnames.ora on database e server.
    Now you can:
    select vendor from table_a
    union all
    select vendor from table_b@c_link
    /SY.

  • How to link two XL Reporter  templates into single sheet

    Hi
    I'm Using SAP Business One 2005B, PL 04.
    I want to link one template into another XL Reporter Template. Kindly guide me, how to link.
    Thanking You

    How to create a to  new template with these two templates,  linking it  to a  base table.
    I have taken delivery document based on Item delivered. I have grouped it by item Group. I want to link the Instock based on warehouse for those Items. If i try it in a single template i cant get the value for either one of them. How to get these data.

  • How to link two tables?

    Hello,
    I'm trying to create invoices with Pages, but my question is how can I link two tables in one Pages document?
    Or having two Header Rows with some 'normal' rows between would also be great. (even better)
    I'm trying to calculate my subtotal etc. below my overview of articles.
    Thanks in advance!
    Andy

    (1) no way to link two tables in Pages.
    (2) you may have several header rows, several footer rows but you can't have standard rows between header (or footer) ones.
    You may achieve what you describe without the asked feature.
    Use correct ranges and you will be able to calculate subtotals.
    Yvan KOENIG (VALLAURIS, France) lundi 28 décembre 2009 19:02:38

  • How to Link two Portlet

    Hi ,all.
    I am beginning study Porttal, I had build two Portlets by Java, The Portlet1 and Portlet2 .
    How to link to Portlet1 from Portlet2 ?
    How to pass value to Portlet1 and Portlet2 ?
    Thanks and Best Regards!

    Steps
    1) create 2 Oracle PDK portlets (p1 and p2 with same parametr name. let say 'param') using Jdeveloper and register with Portal
    2) p1's code
    <%@page contentType="text/html; charset=windows-1252"
    import="oracle.portal.provider.v2.render.PortletRenderRequest,oracle.portal.provider.v2.http.HttpCommonConstants,oracle.portal.provider.v2.ParameterDefinition,oracle.portal.provider.v2.url.*"
    %>
    <%
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    %>
    <P>Welcome <%= pReq.getUser().getName() %>.</P>
    <P>This is the <b><i>Show</i></b> render mode!</P>
    <%
    ParameterDefinition[] params =
    pReq.getPortletDefinition().getInputParameters();
    %>
    <p>This portlet's input parameters are...</p>
    <table align="left" width="50%" ><tr><td><span class="PortletHeading1">Name</span></td><td><span class="PortletHeading1">Value</span></td></tr>
    <%
    String name = null;
    String value = null;
    String[] values = null;
    for (int i = 0; i < params.length; i++)
    name = params.getName();
    values = pReq.getParameterValues(name);
    if (values != null)
    StringBuffer temp = new StringBuffer();
    for (int j = 0; j < values.length; j++)
    temp.append(values[j]);
    if (j + 1 != values.length)
    temp.append(", ");
    value = temp.toString();
    else
    value = "No values have been submitted yet.";
    %>
    <tr>
    <td><span class="PortletText2"><%= name %></span></td>
    <td><span class="PortletText2"><%= value %></span></td>
    </tr>
    <%
    %>
    <form action="<%=UrlUtils.htmlFormActionLink(pReq, UrlUtils.PAGE_LINK)%>" method="get">
    <%=UrlUtils.htmlFormHiddenFields(pReq, UrlUtils.PAGE_LINK) %>
    <input name="param" type="text" size="10">
    <input name="submit" type="submit">
    </form>
    </table>
    3) no change in P2's code.
    4) run portal you can pass value from p1 to p2
    cheers

  • How to link two ID account to only one

    I have two Apple ID account, and I would like to link them into one account without losing my purchase on both account. How this is possible?

    You cannot link two Apple ID's together.  You can only log into one and download its purchases, and then log out and into the other account.  You should choose one to continue using for the foreseeable future, and hope that someday Apple allows you to link accounts.

  • How to link two modules of data when querying the data ?

    Hi ,
    I am using Designer editor to create a form .
    I am having two modules with the tables EMPLOYEE and department .
    In my form ,I want to display the data of each employee with the department data .
    How to link the two tables data in the designer ?
    How to View the generated triggers in the designer ?
    Thanks
    Sai

    Two modules means two forms. These are unrelated.
    Or do you mean that you have one form with two blocks (master-detail)?
    How to link the two tables data in the designer ?You have to define the foreign key on the tables. Based on this FK Forms Generator will generate the code if you create two Module Components (master-detail) in the module. Don't forget to define the Key Based Link on the master block.
    How to View the generated triggers in the designer ?You can't. You have tom open the generated FMB file in Forms Builder to see what code is generated.

  • How to link two .java files together?

    hello everybody,
    is it possible to link two or more .java files together? I mean is if I have 3 .java files. (a.java, b.java, c.java) then I have 3 .class files too. How do I use the method in other .java files. For example :
    public a extends Applet {
    // call b.class
    b();
    public b extends Applet implements ActionListener {
    void title1() {
    How to call the b.class? How to call the title1() method?
    Is it related to JAR or package??
    Thanks for helping me. v(^_^)v

    O.K, you do not link ".java" files together.
    You compile them into class files and they can create new instances of each other and and access their variables and work together.
    I recommend "Sam's Teach Yourself Java in 21 Days".
    It will start you out with the basics.
    --Ian                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

  • How to link two controls?

    Hi,
    I'm trying to link two controls together, a slider and a numeric, so that if I change the value of one control, the other will also show the new value.
    Does anyone knows how to do that? Is that even possible?
    Thank you for your help
    Solved!
    Go to Solution.

    altenbach wrote:
    Tim's answer is correct and appropriate. No code needed.
    That's different.  Usually Christian shows me yet another, more efficient way, to code something.  Well, I guess you can't get more efficient than no code.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I'm using pages 5.2 and feeling completely stupid by not knowing how to link two text pages together. Can anyone help? please...

    Hi there, I'm trying to use pages 5.2 for the first time and I cannot find how to connect two consecutive pages together as I use to do with earlier versions of Pages... Any help?

    Word Processing templates have what is called a Document Body.
    That is the area defined by the margins and holds a default text area which flows from page to page.
    Examples of WP templates are the Letters, Reports, CVs etc.
    Layout templates have that switched off and require you to add Textboxes or Shapes into which you can type text. Each page is an individual Section and no text flows from page to page.
    Examples of Layout templates are the Brochures, Business Cards, Posters, Newsletters etc
    In Pages '09 you can manually link Textboxes to flow in your own set order and across pages. Pages 5 has dropped this along with 100 other features.
    Peter

  • How to link two rows together? Weights should be tied to returns!!

    Hello CB experts! I have a question. It may be simple or it may not; not sure. So, I’m looking for some guidance here. I have historical return on my sheet named ‘Symbols’. In my ‘Returns’ sheet, I have Shares, Return, Volatility, and Weights, along with a Covariance Matrix and a Correlation Matrix on the sheet. I put an Efficient Frontier curve in there and the top performing components of the Dow. I also, have a sheet named ‘Returns-CB’; this is where my CB analysis is. So, from E6:AH6 and E8:AH8, I have defined CB assumptions (they are pretty much all the same). Anyway, my question is this: how do I link the items in row 6 to the items in row 8? If I have 12% return and 30% return for stock AA and stock BA, I should NOT have 0% weight; I want to invest in these stocks. Similarly, if I have a weight of 15% for stock CAT, I should NOT have 0% return. This doesn’t make any sense. Can someone please tell me how to link the returns and weights. It works perfectly fine in the ‘Returns’ sheet; I used MS Solver to get this working. I was trying to do something similar in the ‘Returns-CB’ sheet.
    You can download the file from here:
    http://www.mediafire.com/view/?5lk0gtcd261cy3c
    Thanks everyone!!

    I know this has something to do with constraints. For instance, Cell C8 must = 100%. Cells E8:AH8 will change, depending on the weights of the stocks (this is contingent on risk; defined assumptions and parameters of the distribution curves). Likewise, Cells E6:AH6 must change, depending on the potential future returns of the stocks (this is also contingent on the risk). It seems like, if I define an assumption, it wipes out any formula that I have in the cell. So, I'm not sure how to 'link' the E6:AH6 range and the E8:AH8 range. Does anyone here have any ideas on this?

  • How to link two text boxes so that text flows from one to the other.

    In Adobe Acrobat XI Pro,  I have managed to link two text boxes with JavaScript.
    I have deselected the "scroll long text" and selected auto text size.
    I have entered the script into the "custom keystroke script"
    if ( event.fieldFull || event.willCommit ) this.getField("Details2").setFocus();
    Now my problem is this works for IE but I can't get it to work with adobe reader or pdf expert on iPad.
    I need my forms to work with both, windows & ios.
    Any suggestions?

    See the following article:
    JavaScript - setFocus Method for tabbing to next form field
    And see if iOS can even handle the sample form.
    iOS and android devices are not a powerful as your desktop of laptop computer and have limited support for JavaScript within PDF forms. This limitation for specific apps ranges from none to quite a bit but not all JavaScript.

  • How to link two hierarchies

    Is it possible to link two hierarchies?
    Like , I have two hierarchies, Date and time. Date hierarchy have (Year->Month->Week->Day) and Time hierarchy have (Hour->Min->Sec).
    Now I want the drilling from day to hour. If user will click on Day then it should drill to hour.
    Is it possible? .
    Regards,
    Sudi

    I have done the same thing. But it showing error.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14025] No fact table exists at the requested level of detail: [SA,Date,Hour,User,]. (HY000)

Maybe you are looking for

  • PK Columns in Tabular Form not able to hide

    Hello everyone, I'm running Apex 2.0 on 10.2.0.1 Standard Edition. When I create a tabular form on a table with a primary and secondary key, the primary and secondary key columns appear in the actual tabular form, despite the "show" checkbox being un

  • TM Drive Ejecting

    After updating to 10.6.4 have problems where from time to time the TM drive will just ejected itself. I power it off and then on and all will work again for 5 to 10 backups and then it again just ejects. The drive is a OWC unit. I changed its hookup

  • Windows and Mac on external bootable drive

    Hi, I am looking for a way to have two partitions on an external drive, one being a bootable Mac partition, the other a bootable windows 7 partition. The two partitions will be used on two separate computers (I have a Mac that I will use the Mac part

  • Using the Ariba adapter

    Can anyone tell me how to use the Ariba adapter, and where to find documentation?

  • Export report to XML not working w/embedded &'s in data

    I saw a post about this from April but no one responded. I'm getting an error trying to export a report to XML when the data contains ampersands. Is there a way around this problem? The XML page cannot be displayed Cannot view XML input using XSL sty