on 2006 Jan 06 5:44 AM
Hi Experts,
Happy new year!!
i have a reqt in which <b>i need to display only the result area.</b> i have the query heading, and filters(sales rep ID, sales Organization, etc). is there a way where i can supress the filter area, and heading of the query?
i will be very glad if someone can help me out. its realy urgent.
Thanks in advance
kavi
hi kavi,
in bex analyzer or webtemplate ?
in bex analyzer you may hide the rows of heading and filter area then save as query view or save as workbook.
in web you may set the remove mark for 'generate caption' and not use navigation block.
hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The delete warning when you move the results area is only for that action. Once you move it to another location, do a refresh and you will get the desired result as well. Of course A.H.P option is the best way to do it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kavi,
The following code placed into SAPBEXonRefresh(queryID As String, resultArea As Range) Sub does the job.
Dim ws As Worksheet, Range1 As Range
Dim RowsRange As String
Set ws = resultArea.Parent
resultArea.Name = ws.CodeName & "_results"
Set Range1 = resultArea
firstrow = Range1.Cells(1).Row
RowsRange = "1:" & Trim(Str(firstrow - 1))
Rows(RowsRange).Select
Selection.EntireRow.Hidden = True
Best regards,
Eugene
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kavi,
Using some VBA code you can hide what you don't want to show.
It's easier to move result area into another worksheet:
Layout->Move result area (toolbar icon or menu)
and save the workbook.
Best regards,
Eugene
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Eugene.
well, i tried your option before posting it here. but it says "moving the result area will delete its result area's contents.", which i dont want.
so, now with AHP's answer i used the hide option and it worked. you were talking about VBA code. can you please provide me with some code, which does this work automatically.
Thanks
kavi
User | Count |
---|---|
71 | |
11 | |
11 | |
10 | |
9 | |
9 | |
7 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.