Grant rights to change the query only to its owner

Hello everybody,
is there a way to allow only the user who created a query to make changes on it?
thanks
Marco

Granting authorizations for working with query components depending on the component creator is possible with the authorization object S_RS_COMP1  You can either grant those authorizations for a team or grant authorizations for self-created queries with low maintenance effort by entering a variable ($USER).
Check the HOw to paper How to…
grant authorizations for query components by creator
https://websmp109.sap-ag.de/~sapidp/002006825000000015622004E.gif
Jaya
Message was edited by: Jaya Mogali

Similar Messages

  • Suggestions required to change the query to improve its performance.

    By using the following query I Created a View. If i query the view for the required data it is taking around 1 minute to fetch the data.
    The output of the query gives all the time slots for which each seat is available on each day starting with the effective start date in the xxcgs_adm_seat_mst table
    It ends with last CAL_DAY of the xxcgs_admin_calendar table.
    The XXCGS_SEAT_MST table contains all the seats data and XXCGS_ADM_ALLOCATION table contains all the allocated seat data.
    Tables used in this view
    1)
    CREATE TABLE XXCGS_ADM_ALLOCATION
    SEAT_ID NUMBER,
    ALLOCFROM_DATE DATE ,
    ALLOCTO_DATE DATE ,
    TIME_FROM VARCHAR2(11),
    TIME_TO VARCHAR2(11));
    The table is having the following sample data:
    Insert into xxcgs_adm_allocation Values(1121, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    Insert into xxcgs_adm_allocation Values(1140, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    Insert into xxcgs_adm_allocation Values(1122, '12-DEC-2007', '27-12-2007', '04:30', '10:59');
    Insert into xxcgs_adm_allocation Values(1054, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    Insert into xxcgs_adm_allocation Values(1141, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    Insert into xxcgs_adm_allocation values(1142, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    Insert into xxcgs_adm_allocation Values(1120, '12-DEC-2007', '27-12-2007', '00:00', '04:59');
    COMMIT;
    2) CREATE TABLE XXCGS_ADM_SEAT_MST
    SEAT_ID NUMBER,
    EFFECTIVE_START DATE,
    EFFECTIVE_END DATE);
    Sample data:
    Insert into xxcgs_adm_seat_mst Values (1053, '15-OCT-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1049, '15-OCT-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1054, '16-OCT-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1121, '12-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1120, '12-JAN-2007', NULL);
    Insert into xxcgs_adm_seat_mst Values (1080, '11-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1100, '11-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1122, '01-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1140, '01-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1141, '01-DEC-2007',NULL);
    Insert into xxcgs_adm_seat_mst Values (1142, '01-DEC-2007',NULL);
    COMMIT;
    3)
    CREATE TABLE XXCGS_ADMIN_CALENDAR
    CAL_DAY DATE,
    SL_NO NUMBER
    This table contains 3 years data.
    In this table I inserted data with this code:
    declare
    v_cal_day DATE ;
    V_SL_NO NUMBER;
    BEGIN
    V_CAL_DAY := '01-JAN-2007';
    V_SL_NO := 1;
    LOOP
    INSERT INTO XXCGS_ADMIN_CALENDAR VALUES (V_CAL_DAY,V_SL_NO);
    V_CAL_DAY := V_CAL_DAY+1;
    V_SL_NO := V_SL_NO+1;
    EXIT WHEN V_CAL_DAY > '31-DEC-2009';
    END LOOP;
    END;
    4)
    CREATE TABLE TIME_SLOTS
    S_NO NUMBER(2),
    HOURS VARCHAR2(6 BYTE),
    FROM_TIME VARCHAR2(6 BYTE),
    TO_TIME VARCHAR2(6 BYTE)
    Data in this Table:
    insert into time_slots values(1, '00:30', '00:00', '00:29');
    insert into time_slots values(2, '01:00', '00:30', '00:59');
    insert into time_slots values(3, '01:30', '01:00', '01:29');
    insert into time_slots values(4, '02:00', '01:30', '01:59');
    insert into time_slots values(5, '02:30', '02:00', '02:29');
    insert into time_slots values(6, '03:00', '02:30', '02:59');
    insert into time_slots values(7, '03:30', '03:00', '03:29');
    insert into time_slots values(8, '04:00', '03:30', '03:59');
    insert into time_slots values(9, '04:30', '04:00', '04:29');
    insert into time_slots values(10, '05:00', '04:30', '04:59');
    insert into time_slots values(11, '05:30', '05:00', '05:29');
    insert into time_slots values(12, '06:00', '05:30', '05:59');
    insert into time_slots values(13, '06:30', '06:00', '06:29');
    insert into time_slots values(14, '07:00', '06:30', '06:59');
    insert into time_slots values(15, '07:30', '07:00', '07:29');
    insert into time_slots values(16, '08:00', '07:30', '07:59');
    insert into time_slots values(17, '08:30', '08:00', '08:29');
    insert into time_slots values(18, '09:00', '08:30', '08:59');
    insert into time_slots values(19, '09:30', '09:00', '09:29');
    insert into time_slots values(20, '10:00', '09:30', '09:59');
    insert into time_slots values(21, '10:30', '10:00', '10:29');
    insert into time_slots values(22, '11:00', '10:30', '10:59');
    insert into time_slots values(23, '11:30', '11:00', '11:29');
    insert into time_slots values(24, '12:00', '11:30', '11:59');
    insert into time_slots values(25, '12:30', '12:00', '12:29');
    insert into time_slots values(26, '13:00', '12:30', '12:59');
    insert into time_slots values(27, '13:30', '13:00', '13:29');
    insert into time_slots values(28, '14:00', '13:30', '13:59');
    insert into time_slots values(29, '14:30', '14:00', '14:29');
    insert into time_slots values(30, '15:00', '14:30', '14:59');
    insert into time_slots values(31, '15:30', '15:00', '15:29');
    insert into time_slots values(32, '16:00', '15:30', '15:59');
    insert into time_slots values(33, '16:30', '16:00', '16:29');
    insert into time_slots values(34, '17:00', '16:30', '16:59');
    insert into time_slots values(35, '17:30', '17:00', '17:29');
    insert into time_slots values(36, '18:00', '17:30', '17:59');
    insert into time_slots values(37, '18:30', '18:00', '18:29');
    insert into time_slots values(38, '19:00', '18:30', '18:59');
    insert into time_slots values(39, '19:30', '19:00', '19:29');
    insert into time_slots values(40, '20:00', '19:30', '19:59');
    insert into time_slots values(41, '20:30', '20:00', '20:29');
    insert into time_slots values(42, '21:00', '20:30', '20:59');
    insert into time_slots values(43, '21:30', '21:00', '21:29');
    insert into time_slots values(44, '22:00', '21:30', '21:59');
    insert into time_slots values(45, '22:30', '22:00', '22:29');
    insert into time_slots values(46, '23:00', '22:30', '22:59');
    insert into time_slots values(47, '23:30', '23:00', '23:29');
    insert into time_slots values(48, '24:00', '23:30', '23:59');
    commit;
    The query
    Part 1:
    This Query maps the seat_id in the master table with each time slot and with effective start date between sysdate-60 and sysdate+365 assuming that a seat can be allocated not more than a year. so if there are 10 seats in this table then this table contains 10*48*425 records
    SELECT mst.seat_id
    , cal.sl_no
    , cal.cal_day
    , tm.s_no
    , tm.from_time
    , tm.to_time
    FROM xxcgs_adm_seat_mst mst
    , xxcgs_admin_calendar cal
    , time_slots tm
    WHERE cal.cal_day >= NVL (mst.effective_start,SYSDATE - 60)
    AND cal.cal_day <= NVL (mst.effective_end, SYSDATE + 365)
    Part 2:
    This query is based on the allocation table and it checks the allocated seats with all the time slots and between the allocated date range and marks the timeslot as 0 if it is not allocated and 1 if it is allocated
    SELECT seat_id
    , sl_no
    , cal_day
    , s_no
    , from_time
    , to_time
    FROM
    (SELECT alloc.seat_id
         , cal.sl_no
         , cal.cal_day
    , tm.s_no
    , tm.from_time
         , tm.to_time
    ,SUM(DECODE(LEAST(alloc.time_from,tm.from_time),alloc.time_from,
              DECODE(GREATESTalloc.time_to,tm.to_time),alloc.time_to, 1,0),0))AVAILABILITY
    FROM
    xxcgs_adm_allocation alloc
    ,xxcgs_admin_calendar cal
         ,time_slots tm     
    WHERE
    cal.cal_day >= alloc.allocfrom_date
    AND cal.cal_day <= alloc.allocto_date
    GROUP BY alloc.seat_id
    ,cal.sl_no
              ,cal.cal_day
              ,tm.s_no
              ,tm.from_time
              ,tm.to_time
    ORDER BY cal.sl_no, tm.s_no) a     
    WHERE a.AVAILABILITY = 1
    Part 3:
    Here i am substracting the 2nd query output from the 1st to get all the available time slots for all seats
    SELECT mst.seat_id
    ,cal.sl_no
         ,cal.cal_day
         ,tm.s_no
         ,tm.from_time
         ,tm.to_time
         FROM xxcgs_adm_seat_mst mst
         ,xxcgs_admin_calendar cal
         ,time_slots tm
    WHERE cal.cal_day >= NVL (mst.effective_start,SYSDATE - 60)
    AND cal.cal_day <= NVL (mst.effective_end, SYSDATE + 365)
    MINUS
    SELECT seat_id
    , sl_no
         , cal_day
         , s_no
         , from_time
         , to_time
    FROM
    (SELECT alloc.seat_id
         ,cal.sl_no
                   ,cal.cal_day, tm.s_no
                   ,tm.from_time
                   ,tm.to_time
                   ,SUM(DECODE(LEAST(alloc.time_from,tm.from_time),alloc.time_from,
                   DECODE(GREATEST(alloc.time_to,tm.to_time),alloc.time_to, 1,0),0))AVAILABILITY
    FROM
    xxcgs_adm_allocation alloc
    ,xxcgs_admin_calendar cal
         ,time_slots tm     
    WHERE
    cal.cal_day >= alloc.allocfrom_date
    AND cal.cal_day <= alloc.allocto_date
    GROUP BY alloc.seat_id
    ,cal.sl_no
              ,cal.cal_day
              ,tm.s_no
              ,tm.from_time
              ,tm.to_time
    ORDER BY cal.sl_no, tm.s_no) a     
    WHERE a.AVAILABILITY = 1

    Any chance to get your Oracle version, release and patchset ? Any chance to get your OS and plateform ? Any chance to use tags &#091;pre&#093; and &#091;/pre&#093; around your code to keep tabs as well on the forum side ?
    Any chance to get explain plan as well explained When your query takes too long ... ?
    Nicolas.

  • Changing the query on a view object

    I have a view object right now, based on an entity. It is the default view object, so that means the query in the view object is straight forward, it grabs all of the attributes from the table. And there is no WHERE clause.
    In reality I only want to show a finite set of rows from my table. Every time a record is changed/edited in this entity and committed, a new row in the database is created with the same information (I'm using CreateWithParams) except for a few columns.
    I actually don't really have update on this table, just creation of new rows. But to the user, I want it to 'look' like they are editing something in the table.
    Example:
    12, 11:32,Thompson, 60 (the user edits this information in an adf table, and a new row is created in the db)
    12, 11:55, Thompson, 75
    I have a timestamp (see above) field in the database that is used as part of my primary key, so that I know which record is the latest.
    When the VO query is run, I want the user to only see the latest row from the db.
    12, 11:55, Thompson, 75
    So...
    I went to my VO, and I changed the WHERE query to add this:
    where t1.TimeStamp = (Select MAX(t2.TimeStamp) FROM rcl.x t2 where t1.uid = t2.uid);
    Now, this isn't a mysql/sql question. There's actually a better query that I'd rather run, but the VO editor doesn't allow me to change the query itself....
    When I save the new WHERE to my VO, run my page again, I get the expected result (showing me only the latest records).
    However, when I try and sort on the table in which my data is displayed, I am now getting ORDER BY errors.
    I don't want my VO to be read-only sql based. I want to be able to update my table, so I have my VO running off of the entity.
    Why doesn't the VO allow me to change the query itself? (Like do a subquery, instead of having my where clause do the work)
    Why are order by errors being thrown when I sort on my adf table after changing the where clause in my view?
    Hopefully I wasn't too convoluted in the explanation of my problem..
    Thanks in advance,
    Joel

    HI Joe,
    Regarding your problem you can do one of the following tasks:
    1- easily to tuning on your view object, I mean in the tuning page of the view you can set that only return 1 record or 2-3 record fetch not all the record.
    in the order by you will order by the timestamp field and descending.
    2- you can order by the timestamp descending and in the where clause only set the rownum<2 (will return the last record) you can also set rownum<5 and get the 4 last record etc.
    3-editing the view query in the expert mode is not advised at all because of many consequences that you will face.
    4- maybe it is not bat that you add a readonly view for the table you mentioned and every time you unpdate the entity just re-execute the read-only view.( this method maybe is good maybe is not it depends on your business logic)
    Regards.
    Edited by: Amir Khanof on Sep 3, 2010 11:11 PM

  • Programaticly changing the (suggested only) file name in the save prompt when signing a document?

    When you sign a document in Adobe X (or XI), the system says it needs to save the file first.   Is there some way to change the (suggested only) file name to a different value for that save?
    Right now, people open a blank form - lets call it formX.pdf.   They fill it in and sign it.  The suggested file name for the save is FormX.pdf.   I can generate a unique file name which i'd like to put in place of the suggested default...

    AFAIK, you can't do it with code. Your best option might be to use a form field to show a message to the user when they sign the document with that information.

  • Problem while changing the query of the field in Oracle apps 11.5.10

    Hello All,
    Requirement:
    User want to change the query of the LOV attached to Ordered item field on Line items tab on the Sales order form in Order managment
    Block name = 'LINE'
    Field name = 'ORDERED_ITEM_DSP'
    LOV attached to this field in FMB: ITEMS
    LOV attached to this field in front end: ENABLE_LIST_LAMP
    Problem: Following code is firing at all points (Debug messages are appearing at all points) but Query of the LOV attached to item is still same.
    How can in FMB LOV is "ITEMS" and in front end "ENABLE_LIST_LAMP"
    My guess is there is some problem with the LOV name which we are passing in the code below. Because LOV name attached to item are different in front end and FMB. There is no LOV in FMB which has “SYSTEM ITEMS Description” kind of structure.
    I have written following code in custom.pll (l_chr_rg_query is query taken from the record group attached to “ITEMS” named LOV with some modifications ex: rownum<6 so that it will show only 6 records in LOV if it is really firing our query for LOV)
    IF ( form_name = ‘OEXOEORD’
    AND block_name = ‘LINE’
    AND field_name = ‘ORDERED_ITEM_DSP’
    AND event_name = ‘WHEN-NEW-ITEM-INSTANCE’
    THEN
    MESSAGE (‘message1’);
    l_chr_rg_name := ‘XXLION_UNIFORM_CODE_RG’;
    l_chr_rg_query :=
    ‘SELECT item, item_id, item_description, inventory_item_id,item_identifier_type,null           item_identifier_type_meaning, ‘
    || ‘inventory_item, address, cust_address, item_definition_level ‘
    || ‘FROM oe_return_items_v ‘
    || ‘WHERE (sold_to_org_id = :parameter.lov_num_param1 OR sold_to_org_id IS NULL)’
    || ‘ and rownum < 6 ORDER BY item’;
    MESSAGE (‘message2’);
    l_rg_id := FIND_GROUP (l_chr_rg_name);
    MESSAGE (‘message3’);
    IF ID_NULL (l_rg_id)
    THEN
    MESSAGE (‘Creating record group here’);
    l_rg_id :=
    CREATE_GROUP_FROM_QUERY (l_chr_rg_name, l_chr_rg_query);
    END IF;
    errcode := POPULATE_GROUP (l_rg_id);
    MESSAGE (‘ERROCODE is : ‘ || errcode);
    L_lov_id := FIND_LOV (‘ITEMS’); --My guess is this LOV name is the source of problem.
    MESSAGE ('Error code is4');
    SET_LOV_PROPERTY (l_lov_id, group_name, l_rg_id);
    MESSAGE ('Error code is5');
    SET_ITEM_PROPERTY ('LINE.ORDERED_ITEM_DSP', lov_name, 'ITEMS');
    END IF;

    I found that there is no problem with code. My problem is not technical, its a functional problem.
    It is related to Inventory's "System Items" KFF.
    Can anybody tell me, to this "System Items" KFF, one value set is assigned. but it is of none type of value set. so from where the values in LOV are coming?

  • Multi Provider Changes - The Query cannot be executed

    Hello,
    I added a new characteristic to an existing multiprovider on which queries already exist.
    I changed one of the existing queries adding that newly added characteristic.
    Now the query cannot be executed. Please see the log...
    I could successfully execute the query in RSRT....
    Diagnosis
    Characteristic 0BILL_TYPE is used in the Query Designer, but was deleted from the InfoProvider.
    System response
    The query cannot be executed.
    Procedure
    Characteristic 0BILL_TYPE is used in the query to be executed even though it was deleted from the InfoProvider. The problem can be solved by changing the query in the Query Designer. Here, you get a repair proposal, which removes the missing InfoObject from the query. Afterwards, check whether or not the query was defined correctly.
    You can also delete the query.
    Additional technical information:
    IOBJNM = 0BILL_TYPE
    ELTUID = Sell-In Qty
    ELTTP = SEL
      Notification Number BRAIN 407 
    Close 
    Any siggestions of how to adjust the multiprovider.
    Thanks,
    Vish

    The check in query designer says that query is correct.
    Only when I try to execute using the web it says that Char doesn't exist in infocube.
    The query works fine in Analyzer & RSRT....I guess something got to do with the Browser or web..
    Thanks,
    Vish

  • Precautions to be taken while changing the Query read mode in PED system

    Dear Experts,
    I got a task to change the Query Read mode for more No. of queries in Production system directly itself.
    Request you to let me what are the steps to be followed/precautions to be taken while changing the Query Read mode in PED.
    one more doubt regarding this.....If i plan to change the Read mode of Query say Q1, how can i come to know weather the Q1 is executing or not executing by that time.
    Thanks in advance for valuable response.
    Thanks & Regards,
    Ramesh - Kumar

    Hello,
    You can change the query read mode in transaction 'RSRT', here are the steps:
    1) Access transaction RSRT and enter the query name
    2) Select the 'Properties' option
    3) Un-check the 'Info provider' setting next to the 'Read mode' --> This enables you to change the read mode of the query --> Execute
    4) Choose the option 'Generate Report' to re-generate the query program
    Hope this info helps.
    Thanks
    Bala

  • Error when trying to change the Query in Bex??

    Hi Gurus,
    I have a query based on infocube. When I am trying to change the query, its giving me the error "This component was edited with a more recent version of Editor. You also have to use the more recent version to edit further. Further processing not possible. Update your front end".
    Please help with this.

    Hi, I am actually stuck here. Can you please let me know which among these is the higher version.
    1) Final Release 3.50
       Version 3500.3.016
    2) Final Release 3.50
        Version (Revision 481)
    Because it is working fine in the 1st one whereas its throwing that error pop-up in 2nd one(as soon as we select the Change query global definition option) .

  • I recently changed my wallpaper and when i was on safari the rainbow wheel popped up and i had to restart my computer, now theres no wallpaper it just a grey denim and when i try change the wallpaper only the tool bar changes not the background, help ?

    i recently changed my wallpaper and when i was on safari the rainbow wheel popped up and i had to restart my computer, now theres no wallpaper it just a grey denim and when i try change the wallpaper only the tool bar changes not the background, help ?

    Hi. When you were in the recovery drive doing permissions, did you try and run a repair of the boot drive? Did you try single user mode? Try these first and then go back and try to reinstall the operating system.When I say repair boot drive I don't mean permissions. There are both options in disk utilities.When you open disk utilities ,you will see in the left column  two drives plus possibly  a boot partition that look like an external driv. click on the second drive and in first aid use repair disk. If you still can't boot and it will not let you restore, you may have to do a clean install.   http://support.apple.com/kb/PH18869?viewlocale=en_US  

  • How to change the query of detailVO,

    Hi,
    I have 2 VOs, say HeaderVO and LinesVO, these VOs are used to create a view link - HeaderToLinesVL - HeaderVO is Master VO and LinesVO is DetailVO. These VOs and VL are used in HGrid. Depending on the search criteria entered by user I have to change the query of HeaderVO and LinesVO. I am able to change query of HeaderVO using setQuery, but when setQuery used on LinesVO, it is throwing an exception saying Query can't be changed because it is detail VO. Is there any other way to change the query. Or any other idea to implement this functionality.
    Thanks
    Shaneed

    Hi,
    I have 2 VOs, say HeaderVO and LinesVO, these VOs are used to create a view link - HeaderToLinesVL - HeaderVO is Master VO and LinesVO is DetailVO. These VOs and VL are used in HGrid. Depending on the search criteria entered by user I have to change the query of HeaderVO and LinesVO. I am able to change query of HeaderVO using setQuery, but when setQuery used on LinesVO, it is throwing an exception saying Query can't be changed because it is detail VO. Is there any other way to change the query. Or any other idea to implement this functionality.
    Thanks
    Shaneed

  • How to adjust the green (starting) and the red (end) rectangles pixel by pixel (top, bottom, left and right) by changing the number of pixels in ken burns.

    How to adjust the green (starting) and the red (end) rectangles pixel by pixel (top, bottom, left and right) by changing the number of pixels in ken burns. Help please.

    If you look closely at the top of the canvas pane, as you move either of the boxes (green or red) there is an indication of pixel positions... "top, bottom, left, right," and "scale."
    Admittedly, it doesn't seem as if you can "enter" the dimensions with your keyboard, however, as you move the boxes, you have a real time indication of the boxs' locations.
    (I couldn't take a screen shot, as you have to actively move the box with a mouse or other input device... thus, I could not also take a screen shot with same device.)
    I hope this helps.

  • Can i change the handset color if its being replaced

    can i change the handset color if its being replaced.I have  A faulty iphone 5 and the store says the set has to be changed.Fully unlokcked set ,purchased this month.

    You can try, normally you can't change the color. You'll get exactly the same model.

  • Bica: change the query cause error in the pas model

    Dear  friends,
    We have very simple scenario: one query 'SSM_SQL_KPI_MAY'' for feeding  the pas model- 2 demensions and 2 measures. With this query I load the schema and data to the pas model.Everithing was fine. After that we added new  dimension to the query.Ichanged the  existing query and load the data with bica.But when I try to open the model I get the next  error every time
    DAT316:
    No internal Dimenson unique name to position cache exists for 'EZOR_KEY' on Linkid 'BI' Cube 'SSMKPI/SSM_SQL_KPI_MAY'
    We try to resolve the issue by deleting data and schema but every time I get the same error.
    How is it possible to resolve this issue?
    What is a best practice in the case of changing queries working with bica?
    Thanks.
    Best regards,Orit.

    Dear Orit,
    Keep in mind that dimensions provided by a BICA query connection must have a HIERARCHY associated to the base characteristic in BW. PAS uses this hierarchy to define the "Result" (rollup) levels of the dimension. Check your BW query and verifiy that all the included dimensions have associated hierarchies in use. I'm guessing this is the issue with your new dimension.
    You can also check the dimensions in PAS by selecting your model, then "Dimensions" and right-clicking on the affected dimension name and then the "View" option (or "List" or something related to displaying the dimension definition). You should see a PAS script that describes the dimension, including the dimension member IDs, descriptions and rollup levels. This should be consistent with your query results and hierarchies).
    Also, from the same menú you may also choose to "Delete" a dimension.
    Good luck!
    Regards

  • Changing the Query Names

    Hello,
    I have created a query on an info provider and now I want to change the description as well as the technical name of this query. Is there a way to achievce this? I know I can copy the query rename there. But is there any other way to do this task?
    Thanks in advance...

    Hi,
    you can use the save as function to store the query under a new technical name. The text/description can be changed at any time but not the technical name. The only solution for that is what I mentioned at the beginning. After doing that, delete the 'old' query.
    regards
    Siggi

  • Changing the Query in Production

    HI
    My requirement is to make a small change in a query which is available in production with out changing in Quality .When i am trying to change i got the error message like Error :System is not set to changeable - Objects are not changeable.How to change a single  report with out accessing tcode se06 and scc4 .Please advise.
    Regarsd
    Arun

    Hi there,
    No it isn't with a not changeable system. The only option is the one I've mentioned, which is make the query elements changeable even if you have a not changeable system, but this will be for all the queries and not a single one.
    Diogo.

Maybe you are looking for

  • Imaq 5.0 installation nivissvc.dll

    Im trying to install labview version 6i with imaq version 5.0 on a pc running win2k. Labview seems to run fine without installing imaq. Once I install imaq and try to use (for example) the IMAQ ReadFile vi I get the following error: "The procedure en

  • Hit Error Screen output without connection to user.

    Hi all, I am working on ABAP ess screen currently and I hit the above error. The situation is when i try to create the OBJID using FM 'RH_OBJECT_CREATE', it hits error. The error also include cx_sy_send_dynpro_no_receiver. The error occurred on the a

  • HT1535 reset my ipod and lost music in itunes

    i reset my ipod and now all old songs are deleted from my itunes library?  Can I get these songs back somehow?

  • Size of picture

    I have noticed that some commercials are larger than my screen, much like wide screen movies that are not shown in letter box. I don't know if this happens with any other stuff because I don't know what is supposed to be on the edges but with commerc

  • New to Soundtrack, looking to use song created in iWeb

    I am just starting to utilize my new mac. I am creating an iWeb page for my brother's wedding. I used Soundtrack to cut specific verses from various songs to use on the webpage. Now I am trying to get the .stmp file into a usable format for the iWeb