Changing transaction mode for each savepoint?

hi,
is there a way of changing transaction mode for each savepoint during a transaction?
Brgds.

By transaction mode is meant the mode set at the beginning of the transaction i.e READ ONLY or READ WRITE in Oracle (and not the isolation level).
We need to simulate several transactions within the same transaction for test purposes. Since each simulated transaction may be either readonly or readwrite we need some way to change the transaction mode several times during the transaction. What we have come with until now is to use SETROLE to toggle between a role with "readonly" rights and one with full "readwrite" rights. Are there other ways?

Similar Messages

  • How do I set the zoom at a particular level as the default to ensure pages are not too small and that i don't have to change the zoom for each page? in English

    How do I set the zoom at a particular level as the default to ensure pages are not too small and that i don't have to change the zoom for each page? in English
    == This happened ==
    Every time Firefox opened
    == From the beginning

    Some add-ons:
    Default FullZoom: https://addons.mozilla.org/en-US/firefox/addon/6965 (I use this one)
    No Squint: http://urandom.ca/nosquint/
    Also:
    http://support.mozilla.com/en-US/kb/Page+Zoom
    http://support.mozilla.com/en-US/kb/Text+Zoom
    http://kb.mozillazine.org/Browser.zoom.siteSpecific

  • Change fpla-rfpln for each item in the user_exit_move_field_to_fpla

    Hi,
    I used VA41 transaction to create a sale order (auart = u201CXXXXu201D) and i would like assign in the u201Cuser_exit_move_field_to_fplau201D a calendar number (fpla-rfpln) in my sale document, for each items line.
    But the program is passed on the u201Cuser_exit_move_field_to_fplau201D only for the configurable post (vbap-posnr = u201800010u2019) !!!!
    How can i do to go in this USER_EXIT for all items line and assign a calendar number? It is possible???
    Thanks
    Titou.

    Hello Titou,
    I don't know for your special case (this transaction) but in a user exit you can have access to global variables by using field-synbols.
    Declare a constant like this:
    constants : c_program3(30) TYPE c VALUE '(NameOfTheProgram)t_data'.
    You can dynamic assign of fiel symbols to get this global variable in your user exit.
    field-symbols : <k> type any,
                    <l> type any.
      ASSIGN c_program3 TO <k>.
      ASSIGN (<k>) TO <l>.
      if <l> is assigned.
      endif.
    So if in your program you have the all your items stored in a global variable, you can then modify all of them.
    Hope it helps.
    Olivier

  • How to change background image for each individual page in a template?

    I've been working for hours to try to figure out how to change the background image for each individual page in a template.  I have tried making a div in the body and adding a CSS and setting a background picture.  Unfortunately even after I made it editable all templated webpages changed.  I tried looking at different forum results which didn't really help me out. http://forums.adobe.com/message/2670005#2670005#2670005.  I've also tried embeding a CSS style on the webpage instead of the external CSS which again didn't work.  I'm not sure where to go from here.  Is there a good video that explains this clearly.  Please help.  Thanks.

    Adjust inline styles to suit your needs.
    <li><a tabindex="-1" href="giving/index.html" class="MenuBarItemSubmenu" style="background:none; color:#FFF; background: #000;">GIVING</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • RFC Adapter Receiver - change SAP User for each call

    Hi guys,
    I need to create one connection between PI and SAP, all right, i can use RFC Adapter Receiver, no problem.
    But, for each call i need to use User and Password different, then, I would pass SAP User and Password in my XML Payload.
    Can anybody help me, please?

    hi,
    >>But, for each call i need to use User and Password different, then, I would pass SAP User and Password in my XML Payload.
    sure we can help you but no in this way:)
    it is possible to change the user for RFC adapter but using
    principal propagation:
    /people/alexander.bundschuh/blog/2007/01/16/principal-propagation-in-sap-xi
    this is the way you need to go and not send password in XML payload
    (this is certainly not the way and no client will approve it)
    why use a password is anyone can see it ?
    Regards,
    Michal Krawczyk

  • Changing scaling factor for each cell in Bex Analyzer

    Hi,
    We have a query with 2 structure (1 structure in rows, 1 in columns). We execute the query with Bex Analyzer in Excel.
    We would like to change the scaling factor for each cell. If we use the function 'Properties' for the active cell (context menu), we can change the scaling factor only for one cell.
    Is it possible to change it for the complete table?
    We use BI 7.0, patch 14.
    Thanks,
    Peter
    Edited by: Péter Egyedi on Jan 25, 2008 5:18 PM

    Have you got the solution for this problem?

  • Change search help for each line of a web dynpro table

    Hi all i have got the following code to dynamically change the search help of a single field on a web dynpro app and was just wondering if anyone could show me the code for implementing it onto a table so that the same field on each row has a different search help assigned to it!
    CALL METHOD node_info->set_attribute_value_help
    EXPORTING
    name = 'DEPT'
    value_help_mode = '121'
    value_help = 'PREMN'.
    Regards
    Mart

    Hi,
    it is possible to have different search help for same table column for different context elements i.e. table lines. the way to acheive this is by using cell variants in table column.
    Steps to follow:
    1. In your table column insert cell variant. Depending upon number of variations for search help, insert that number of cell variants in table column
    2. Enter the value of variant key property of each cell variant for ex. 01 for first cell variant and 02 for second cell variant
    3. Insert cell editor for each of cell variant. for ex. if you have 2 different search helps for single column then insert two cell variant in table column and for each cell variant insert cell editor, let say input field in this case
    4. Bind the value property of each input field to different context attribute of the node. for ex: you have table with two columns i.e. Dynamic and fldate
    .  First column is Dynamic. It will have two cell variants and each cell variant have cell editor of type input field  i.e. depending upon the value of second column i.e. fldate, the search help of first column will be decided.
    5.  Create context node from structure "SFLIGHT" and select 3 components from structure i.e. Carrid, connid, fldate. Add another context attribute to same context node i.e. selected_cell_variant of type string
    6. Bind each of context attribute carrid and coonid to value property of cell editor i.e. input field of cell vairaints from column Dynamic
    7. Bind value property of cell editor i.e. input field of fldate column to context attribute fldate
    8.. Bind selectedCellVariant property of table column Dynamic to context attribute selected_cell_variant
    9. Now, Write method at the wddoinit of view to fill up the context node from table sflight table
    10.  Write event handler for event OnEnter of cell editor from table column FLDATE. in this event handler depnding upon the date set the value of context attribute "selected_cell_variant" to 01 or 02
    DATA lv_date TYPE S_DATE.
      ASSERT CONDITION context_element IS NOT INITIAL. " context_element is default paramter for event handler
      context_element->get_attribute(
        EXPORTING
          name  = 'FLDATE'    " NAME
        IMPORTING
          value = lv_date    " DATA
      IF lv_date > '20101016'.
        context_element->set_attribute(
          EXPORTING
            value =  '01'   " Attribute Value
            name  = 'SELECTED_CELL_VARIANT'     " Web Dynpro: Name of Context Element
      ELSE.
        context_element->set_attribute(
          EXPORTING
            value =  '02'   " Attribute Value
            name  = 'SELECTED_CELL_VARIANT'     " Web Dynpro: Name of Context Element
      ENDIF.
    11. Depending upon the value of selectedCellVariant the corresponding search help will show up in table column. So change the value of column fldate for each table row and see how search help gets changed.
    Thanks,
    Rahul
    Edited by: Rahul Yadav on Oct 17, 2010 12:09 AM

  • Need to change screen colours for each system in the landscape

    hi ,
    we are in need of having different themes for different systems in the landscape .
    that is
    if i click development system , the screen with 'theme1'
    if i click quality system system , the screen with 'theme2'
    if i click production system system , the screen with 'theme3'
    how to configure this colour setting in accord to the system for all the users

    Hi Susin,
    You would do this by changing the parameter sapgui/theme for each system. It uses the Tradeshow theme by default as of Web AS 6.40. As long as the SAPgui itself is set to "System Dependant" then it should work fine.
    Regards,
    Nelis

  • Change read mode for all queries

    Hello, this should be an easy question for someone.  I believe there is a way to change the "read mode" for all queries at once.
    Can you tell me how to do that ?
    Thanks very much !!
    Keith

    Hello Bhanu,
    Iam not able to change query in my BW system but when i add authorization of SAP_NEW and SAP_ALL ,then iam able to change ,can i make modification in this table and then
    change or its a authorization problem.If this issue can be resolved with changing this table, kindly tell me how i have to call this table and wt parameters to change,kindly revert at earliest.I have sent u a mail also,kindly plz check.
    Regards,
    Saumya

  • Separate blend mode for each clone source

    If each clone source could have it's own blend mode (not to mention its own opacity and hardness) setting it would be more effective. The current blend mode setting in the clone source affects the preview only.
    I often have to jump back and forth between Normal, Lighten, and Darken modes, and would like the convenience of clicking between sources already set to what I want.
    Thanks

    What goes on in the new "Clone Source Panel" is unrelated to Tool Presets oddly. It would be possible, to optionally allow recording of the settings in the Panel, as part of the Clone Tool Presets. But they never bothered to do it. Its as if this feature was designed with no understanding of the importance of Tool Presets at all. This would solve your problem.
    The shortcut for Lighten Darken and Normal are Alt > Shift > G, K and N, respectively. This may speed up your work.

  • How can i find who change transaction mode in system

    hi Experts,
    here i need some guide lines from you
    in my production some one changed my sap-mm  transaction status from display mode to change mode now i need to trace out who changes that status .
    please reply me how can i trace which user changes that status
    Regards

    Hi,
    If you are asking in regards to change of transaction values in particular role, you can get the details from SUIM t-code.
    Go to SUIM--> expand change documents and click on role and provide the details (select overvie of change documents under change document header in that screen)and execute.
    you get the details when ever the role was changed and on what dates and by whom.
    Hope that helps you, if not please provide more details on what exactly you require.

  • How do I change the Issurer for each site and what initial entry sets the issuer value?

    Cert Server 4.7; I have many web sites with at least three domains; all accessed through a reverse proxy(s) version 3.4. If I have a site www.cf.com and a site tst.www.cf.com, do they each require a different issurer, namely www.cf.com and tst.www.cf.com or just a common domain name cf.com? If I am using one reverse proxy for two sites - tst.cf.com and dev.cf.com How do I handle the server certificut install?

    Once you have loaded the site into SEO Tool, click the arrow down next to the site name in the left column and then select an HTML file to add the Meta Description to.
    Do this with every HTML files in your website.
    MobileMe is not the best place to publish a website for a number of reasons but you should be OK if you upload your sitemap.xml file to the Web/Sites folder on your iDisk. Upload it using drag and drop. From the Finder Go menu, follow the path iDisk/My iDisk/Web/Sites.
    Info about sitemaps...
    http://www.iwebformusicians.com/SearchEngines/Sitemap.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • A family of 5, have new iphone 4s phones.Because we shared an itunes     account previously, now when installing the new phones, it does not allow us to update to individual itunes accounts.  How do we change the accounts for each phone installation?

    A family of 5, have new iphone 4 s phones.
    Because we shared the itunes account previously, on installation of the new devices, the computer does not recognise individual itunes accounts.
    So all 5 devices are sharing the same itunes account!!!
    How do we set up new accounts on each individual phone?

    The iTunes stores in different countries are entirely separate.  You can only use an iTunes store credit in the country in with it was created and purchased content cannot be shared across countries.  Family sharing groups must be country-specific, using iTunes store credits for purchases only within that country, and sharing purchases that were made in that country.  You can contact iTunes store support for more details on these restrictions here: https://www.apple.com/emea/support/itunes/contact.html.

  • Change of mode for Reference key-1

    Dear Friends,
    Could I know how to bring the field of XREF1 ( Reference key-1 ) in change mode as we need to update some data there after saving of vendor invoice ( MIRO /  FB60 ).
    Please guide me.
    Thanks
    G. Jana

    Hi
    Try OB32
    Thank You,

  • Report which shows Transaction code for each company

    Hi Experts
    There is a requirement for a report which must display the following
    Parameters
    Tcode : S_ALR_87013340
    User       Tcode                         Description      Profit Center         Profit Group    
    MEND    S_ALR_87013340      XXXXXXXXX        PCH00013534     PCGH232323
    How can I like profit center and profit group with t codes
    Regards
    Piroz

    Hi ,
    This is more over security related question.  I think you can use t-code SUIM to get that list.
    Regards,
    Naveen Veshala

Maybe you are looking for