Issue while saving the Query Urgent

Hi all,
I had created the query and also transport it toht QA . but due to some problem i need to change query. when i am trying to make the changes i am unable to do it bcoz the whole query is in display mode only and i am getting a message that the query request is not available as it is released in to the QA .
I am working on BI 7. plz let me know how can i make the change i also tried it by copying the query still i am unable to do it.
Whats d steps that need to follow i know i am missing some where
Regards

Hi
Go to RSA1-> Transport connection-> here click on Bex icon (Red truck icon) and in the next screen assign/create new transport request and then assign this request to your Bex package. Once you complete this, you will be able to make & save changes to Bex query.
Hope this helps.
Pradip

Similar Messages

  • Sales report issue while saving the query

    Hi,
    I am working on Sales reports and that i came across a senario and facing a problem, can anyone help me over this
    Senario:
    I created a structure in Rows and added few keyfigures to the New structure which is in Rows.
    After that i added 2 charcteristics.
    Now the problem is that when i save the query i am getting the Keyfigure structure first and then characteristics
    But, i need the 2 charcteristics first and then i need the Keyfigures
    I changed the query as i want it like i placed 2 charcteristics first and then the keyfigure (structure) and the query saved sucessfully.
    The problem is that when i open the query again i found that the Keyfigure (structure) first and then the 2 charcteristics
    I did it all my possible ways still the problem perstists
    Edited by: MAHESH MUMAR on Oct 6, 2008 2:22 PM
    Edited by: MAHESH MUMAR on Oct 6, 2008 2:32 PM

    mahesh,,,
    can u xplain more what xactly is ur need.
    "After that i added 2 charcteristics."
    so do u want chars & keyfig in Rows only.
    this way i dont think u will have report output ..
    Take simple e.g. below:
    $----
    Quantity
    Material
    Channel112--
    1
    Channel223--
    34
    Is this how u want ur report to display?
    that means u will need material and channel in rows and keyfigures ($ & quantity ) in Columns.
    if this is not what u seek what else is your rek.
    sometimes such display helps to understand.
    Yes u can add chars in Rows and then add structure of keyfigure.
    Yes you can change the sequence of display in Rows among different structure.
    But do u still have something in columns.
    It is intersection of Rows & Columns that displays result data set...
    let us know in more detailed e.g.

  • Getting Brain Error while saving the query--Need Immediate solution

    Hello Experte
    I designed query like this.
    G/L account structure is defined in Rows. Before explaining about columns Let me Explain u about my ORG structure.
    Company codes are defined in R/3 like this.
    Company Code
    1000 for Local Currency(HSL01)
    2000 to 7000,IEL for group Currency(KSL01).
    Iu2019m extracting the data as it is from R/3 to DSO and again by writing routine I splitter the data for months(EX: HSL01 is ApriL,Hsl02 May,u2026u2026u2026u2026u2026u2026.KSL01 April, KSL02 may,u2026u2026u2026. Upto to 16 periods) this is R/3 data. This data I differentiated based upon currency types. If currency type is 10 then Local Currency 30 Means Group Currency.
    Again Iu2019m receiving the data from Flat Files for subsidiaries(IEAI,IEG,IEEL,ISSCI,IHAL,TTM-US,TTM-INDIA,TTIT). This data I loaded first into DSO by writing Routine at field Level for G/L account to convert G/L Descriptions into Numbers.
    After that I loaded data from first DSO to Second DSO by writing to convert respective currencies into INR and again loaded to cube by Direct mapping.
    Again Iu2019m receiving the eliminations data from R/3 through Ztable. This also Iu2019m extracting from R/3  and loaded into dso and again into cube.
    Now I will Explain about my Report.
    In Columns I defined 3 selections for each month.  U can observe that in Document. Like that for each month Iu2019m getting three selections and for subsidiaries 2 selections for each month. If we observe total Iu2019m getting 13 selections for India and 9 selections for each subsidiary. If subsidiaries increase I need to increase selections, automatically columns will increase. Now for Q4 2 new subsidiaries are  added I need to added. After adding and while saving the query then only Iu2019m getting brain error.
    Could any one sort out this.
    Thanks,
    Sony

    HI Ravi,
    Thanks for the reply.
    While saving the query in BEX i'm getting this error.
    Diagnosis
    Query ZQ3_MISGRPSUMMARYREPORT_010209 contains 8192 differing selection cells. However, only 8191 selection cells can be processed in a query.
    Procedure
    Please simplify query definition ZQ3_MISGRPSUMMARYREPORT_010209.
    This was the error i'm getting. How to simplify this....
    Any answers please.
    Thanks,
    Sony

  • Issue While executing the Query for Pagination using ROWNUM with like

    Issue While executing the Query for Pagination using ROWNUM with like.
    Database is Oracle11G.
    Oracle Database Table contains 8-9 lakh records
    1) SQL equal (=)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920'
    Execution Time:- 0.00869245 seconds
    Returns 2 resultsets
    2) SQL like (one %)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920%'
    Execution Time:- 0.01094301 seconds
    Returns 2 resultsets
    3) SQL like (two%)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE like '%KMF22600920%'
    Execution Time:- 6.43989658 seconds
    Returns 2 resultsets
    In Pagination, we are using Modified version of SQL Query 3) with ROWNUM as mentioned below :-
    4) SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) WHERE RNUM > 0
    Execution Time:- Infinite
    ResultSets:- No as execution time is infinite
    a) Instead of like if we use = in the above query it is returning the 2 resultsets (execution time 0.02699282 seconds)
    b) Instead of two % in the above query, if use one example REFERENCE like 'KMF22600920%' it is returning the 2 resultsets (execution time 0.03313019 seconds)
    Issue:- When using two % in like in the above query i.e. REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) , it is going to infinite.
    Could you please let us know what is the issue with two % used in like and rownum
    5) Modified version of Option1 query (move out the RNUM condition AND RNUM <= 20)
    SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' ) WHERE RNUM > 0 AND RNUM <= 20
    Execution Time:- 7.41368914 seconds
    Returns 2 resultsets
    Is the above query is best optimized query which should be used for the Pagination or still can improve on this ?

    This would be easier to diagnose if there was an explain plan posted for the 'good' and 'bad' queries. Generally speaking using '%' on both sides precludes the use of any indexes.

  • QD crash while saving the query

    Hello colleagues,
    I have created a query, which I doubt has some issues with the message server. I forcibly saved the query and then I'm receiving a dump - RSNSB VOID Erroneous FormVar.
    I can regenerate the query. But, please advice me how to prevent such errors in future.
    Regards,
    Arif

    Hi,
    The error you have received is a resultant of an erroneous formula variable defined in your query.
    In general, if you suspect an error in the query, it is better to check the query for errors before saving it.
    This way you can prevent unwanted dumps.
    Regards,
    Bharath

  • Errors while saving the query

    We are getting the following errors after saving the query:
    1)The system tried to insert a data record, even though a data record with the same primary key already exists 0
    2)An exception with the type CX_SY_OPEN_SQL_DB occurred, but was neither handled locally, nor declared in a RAISING clause 0
    3)Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION 0.
    Not able to save the changes in Query also.
    Always welcome for any ideas please...
    Thanks in advance.
    Bala

    Hi,
    Please apply the corrections from Note 1015402 using SNOTE transaction.
    Regards,
    Selva

  • Error while saving the query A299 Urgent

    I had created a Query on Multi provider  and when i am making changes to it while creating and saving the same it is giving me a error "[A299(BRAIN)] Terminate:System error in program Cl_RSD_MULTIPROV and the form GET_PART_iOBJNM_CMP-01 "
    Please Help in resolving the same thanks.\

    Hello Sreekanth,
    Generally this error is due to inconsistency in Multiprovider. Could you please do a dummy change for this
    multiprovider and re-activate it.
    This will resolve your issue,
    Regards,
    Arvind

  • Authorization issue while opening the query in Bex Analyzer

    Hi All,
    I get the below error mesage while executing a report.I have executed the same query in RSRT and i get the below message.
    I have created some roles and added to a test user for testing purpose and when i log in as a tets user i get the below meesage.
    I am not sure what i am missing in the roles.When i tried executing the query in my id then no issues.
    No authority for the node from characteristic 0EMPLOYEE__0MAST_CCTR, hier
    Your user master record is not sufficiently maintained for object Authori
    Kindly let me how to overcome this.
    Thanks in advance.
    Regards,
    Kumar

    Hi Harish,
    Just check this query by this way:
    Use Tcode RSECADMIN -> Analysis ->Execution as -> In Execute as user: Put your Test user Id also tick With log and select RSRT. Now use Start Transaction.
    Might be the chance to get more details about this issue for resolution.
    Also ensure, Have you did the User Comparison while assigning test user id in role?
    Regards,
    Abdullah

  • Unknown Error while saving the query to My Portfolio

    Hi,
    We have a report published on the portal and users are accesing these reports completely through portal. After running the report user is trying to save the report to My Portfolio on the portal and it is giving an error as "Unknown Error". Anybody who faced this particular error, please give your suggestion.
    Regards
    Vijay

    Hi Mike,
    Please follow the following steps to resolve the issue:
    a. Identify the list of users who are getting the unknown error while saving to My Portfolio
    b. Provide a role called COM.SAP.IP.BI.Business_Explorer_Showcase
    c. Once the role is provided to the users, they will get a new tab called Business Explorer in the portal and ask them to click on that tab and then click on My Portfolio button in the subsequent screens
    d. Once the user clicks the My Portfolio tab this will create the KM folders in the backend for the users to save the report at the run time
    e. Once this is done, ask the user to log off and log in again in to the portal
    f. There after users will be able to save the queries to My Portfolio
    g. Once this is resolved ask the security team to remove the  COM.SAP.IP.BI.Business_Explorer_Showcase role (this role need not be given for a long time).Points.
    Regards
    Vijay

  • Issue while saving the project plans into XML

    Hi,
    Could anyone of you please help me here.
    We are having one custom field(Type: Text) in the project level(Custom field name: ProjectComments) and end users are entering the data against this custom field more than 200 characters.
    The problem here is when we are saving the project plans into XML and opening the same file again thorugh MPP, the data for this custom field(ProjectComments)  is showing till 129 Characters only. Seems to be the data is truncating till 129 charachers.
    Could anyone suggest me how to resolve this issue without trucnating the characters in the custom fields.
    Thanks in advance!
    Regards,
    Venkat

    Hi,
    I cannot reproduce this issue with Project Pro 2010 SP2. Which SP do you have? How is configured your custom field?
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, MCP |

  • Problem while saving the query

    I have created transport request from solman, and when I try to save the query under the the request it is asking whether to create a new task under a different specific user, if I cancel it the query is not getting saved, please help me.
    thanks

    Hey Sudeer,
    This happens becoz the Query that u are changing is already locked by another transport request which is owned by diffrent user..
    Ask the relevant user to release the corresponding request, so that u dont get the prompt again....
    To avoid it, just create a new Query( totally new query ) and then assign your transport request to it..
    Reward points for usefull answer...
    Regards,
    Anand Rangarajan

  • Issue with Saving the Query output data in Excel format

    Hi,
    Recnetly we had upgraded from 4.6c to ECC 6.0.
    In ECc 6.0 environment, when user try to export the query output , we are getting only XML option to save the data.
    But user want to save the data in EXcel format, he was able to do that in 4.6C.
    pleas eprovide some inputs, on this issue.
    Thanks,
    Sanketh.

    I cannot for the life of me imagine, why a link to a post in the 'Business One Forum' where one uses ODBC to transfer query-data to MicroSoft Excel is of relevance to the OPs question, even if the same is not a security issue.
    Never mind. [note 40155|https://service.sap.com/sap/support/notes/402155] deals with various symptoms in the ALV-Excel combination as as of release 4.6C. There are various others, mostly in components BC-SRV-ALV and BC-ABA-LI - also: I remember that when we upgraded from 4.5B to 4.7C there was an issue with Excel-templates -> the solution was in the release notes somewhere. So, in addition to SMP you might want to check the release notes and/or upgrade guide for solutions.
    And yes, moderators ... this is not a security issue, this should go to ECC-Applications/Upgrade.

  • ERROR While Saving the Query

    Hi
    I am trying to save a a query, as YP_XXXXXXXXXX. it is giving me an error "Namespace /BIC/ must be set to changable". would anyone be able to help me out with the same
    Regards
    M

    Hi This has been solved.
    We needed to change the Object type"Query Element" to "Changeable Original". This solved our problem. there is also a realted note 337950 that can help in similar kind of problems.
    Thought of sharing it with you all.
    Regards
    M

  • Performance issue while saving the sales order

    Hi Guys,
    I am facing some problem in  creation of  sales order with 100 line items while i tried to save, it is taking too much of time to save the order. I had taken the trace and found that method Call M." /SAPSLL/CL_CUHD=>GET_OBJECT_PK" is taken 43.9 % of Net value. can any body tell me that what is the purpose of this method..??
    CAll : Call M. /SAPSLL/CL_CUHD=>GET_OBJECT_PK  
    Number : 6,321
    Gross: 37,042,153
    Net:37,042,153
    gross(%) : 43.9%
    NET(%):43.9%
    Program called: /SAPSLL/CL_CUHD===============CP  
    << Moderator message - Please do not promise rewards>>
    Thanks in advance..
    Mak.
    Edited by: Rob Burbank on Jun 2, 2011 9:44 AM

    please run the SE30 again, first switch on everything in measurement restrictions including internal tables.
    Then measure 3 (!!) times. Do you always get the same time for the gross time? Or is there some variance?
    The net time should be reduced because I would assume internal tables to need some or most of the time. If so then I would guess that you have a suboptimal internal table processing, quadartic coding.

  • Issues while saving the Webi Report locally in pdf and Excel Format

    Hi,
    I am getting issues with the images on a Webi Report when I try to save the reports locally on my machine in either a pdf format or in an Excel Format.
    I think the issue is that when I am trying to save the report it saves the address of the image binded in the report but it doesn't save the image/download the image and when the report is opened locally it couldn't refer to the image location.
    I am using BOXIR2 with SP2.8.
    I am not sure what should be the right solution for this. Any insight or resolution will definitely be helpful.

    Hi;
    I would investigate on the load balancer and/or Apache front end servers, are you sure you don't have a keep alive setting enabled somewhere on one of these servers? in the Tomcat connector maybe?
    Regards;
    Lionel
    OUPS BAD THREAD
    Edited by: Lionel Jeanson on Oct 21, 2008 3:30 PM

Maybe you are looking for

  • Reporting Agent and Process chain

    Hi All, We have requirement where every day we need to print some BW reports. For this we have created reporting agent. But when we execute reports manually through reporting agent it works fine. But if we include reporting agent in process chain it

  • [SOLVED] X server: driver mismatch after upgrade...

    after -Syu upgrade (without errors), screen is blank after starting X. Christmas is coming and I can't play Xmas music so it's turning into family panic too!! I've tried Xorg -configure but the logs show there is some driver mismatch which I don't kn

  • Bank charges but not in purchase history?

    so i checked my online banking and i have charges from 'APPLE/ITUNES PURCHASES LU' however i havnt purchased anything and it dont show up in purchase history? any ideas about this until i can contact apple protection on monday

  • What's the role and purpose of Qty f avail chk in sub po?

    Hi, when I view the components of a subcontract PO, I find a component with 3000 requirement qty and 2270 qty for available check. Then I recheck the availability of this component, the data don't change even though I have enough stock. I want to kno

  • Im just starting out, what do i need, help please x

    hi there everyone, im incredibly new to photoshop, so much so i dont actually evan have a copy of photoshop or any other design program to tell the truth, im a artist and i want to try and get into design based work on my pc, i have had a dabble with