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.

Similar Messages

  • 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

  • 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

  • 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

  • Error at report designer while opening the query

    Hi
    in report designer i am trying to open query
    i am getting error like
    error while loading query meta data
    check the query and portal settings
    i am getting this error only this report only
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    System Response
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>" ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.

    Hi Suneel,
    If you are using any JAVA based applications or objects in the Report designer this error is thrown.
    It's better to install Java engine to correct this error.
    You must contact Basis people in order to solve this issue.
    With Regards,
    Ravi Kanth

  • 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

  • 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 |

  • XML Report Issue while generating the Report in EXCEL

    Hi All,
    I have Created the XML Report which will generate the output in EXCEL format. I am having the issue with the report output in EXCEL.
    In my Case,
    If I ran the concurrent it got completed normally and the output got completed normally and the output is generated successfully if the data for the input parameter combinations exists.
    Issue is if there is no data exists for the combinations of parameters choosen then it gives the output in excel with the headers alone some times. (meaning there is no combinations of data exists for the input given excel is having headers alone).
    wiseversa
    sometimes the output in excel there is no header part too..(meaning the excel is empty/null).
    Could anyone suggest how to resolve the issue so that the output in excel can include the header part if the data not exists for the input given. so that it should not generate the output as blank in excel i want the header alone should be included even if the report has no data for the input combination given.
    Its very urgent issue.
    Any suggestion will be a great help for me.
    Thanks ,
    Ravi.

    Hi,
    Please see if this thread helps.
    XML publisher output report in excel format
    Re: XML publisher output report in excel format
    Regards,
    Hussein

  • 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.

  • 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.

Maybe you are looking for

  • Getting error while invoking client interface method as a web service

    Hi, I have written one custom method inAppModuleImpl and include that custom method into the AppModule's Client Interface(AppModule-->Java-->ClientInterface). It autogenerates two java classes: ClientInterfaceImpl class and interface class. I right c

  • Can't install driver for HP laserjet p1102w

    I have a HP laserjet p1102w installed on my network wirelessly. It was working fine, but then I had to set up the network anew. Now I can't get it to work on one of our macbooks. The other one works fine, they both run 10.7.5 I tried to remove the pr

  • White lines of code on black background upon starting up

    I recently sent my Macbook in due to problems with the screen going dark for no reason. Upon recieving the laptop back, I noticed problems upon starting. When I restart my laptop, there are white lines of code on a black background. I called in to su

  • Itunes not syncing all data

    After updating to iOS 8.  I've had to connect and disconnect my iPhone several times to get my data over to the phone.

  • ODBC Driver with Access problem

    I have problems with fields of the number(9.3) datatype. in my linked access tables numbers like 1555.33 are shown as 155533. I'm using the oracle odbc driver version 9.2.0.54 with a 9i (9.2.0.1.0) Database. I've reading at an old post called "number