page not searching as per the argument passed from a splunk page - splunk

i am redirecting to a knowledge base page from a splunk view.
i am able to pass the value from splunk to KB and it is populating in the search box, but the issue is,
first time when the page (KB page) is opened, it is populating the value in its search box , but some other default result is displaying, but when once the search button is clicked, from next onwards it is showing the correct search results.
Please help
Thank you

Related

Microsoft Access Report - How to cycle through all pages of a report in print view?

I have a report that lists business names and the details of that business.
Each business is typically on one page of the report in print preview.
I've managed to create some code that grabs all of the business names and the current page number that they are on and then adds them to a table(BusinessPage). I have placed this code in the 'On Print' section of the report.
Once I cycle through the report, all of the business names and their pages are added to the table (BusinessPage).
The index page then displays the corresponding page numbers for those particular businesses.
Now this works reasonably well, the only problem is: I have to cycle through each page of the report before the index page displays anything (This is because the table is only populated when the page 'On Print' code is activated. Page has to be viewed first before any information is added to the table).
My question is, is there a piece of VBA code that I can use to cycle through all of the pages of a report and then back again? If I can achieve this, it means it will return you to the start of the report and display all of the pages on the index page correctly because the report has already been cycled through.
The solution was to move the code from On Print to On Format.
On Print is only executed when a page is actually printed or previewed.
On Format is executed when the pages are prepared, e.g. by going to the last page in print preview. Or if the page footer contains [Pages]: to calculate the total number of pages, all pages must be prepared, so the code is executed too.

LiveCycle Designer ES 4 Master Page Assistance

I am a new user to LiveCycle (LiveCycle ES4 to be exact) and am having an issue with my second Master Page. I only want the second Mast Page to appear if the content from Page 1 overflows onto Page 2. I have tried changing the "Presence" on the second MasterPage to Hidden but the program won't allow me to choose any option other than Visible.
I have tried Google and Adobe and both have basic information regarding Master Pages but nothing specific enough to help me in this situation. Actually, I haven't been able to find a source with any real helpful information regarding LiveCycle.
On the main page that represents your flowed page, in the Object properties tab, if you select the Pagination tab, you can set overflow properties of this page to use your second master page (ensure it is named so you can reference it). If your first page never overflows, then you should never see the other master page.

How do i find the location of a page break in SSRS in RDL source?

I have a report with a page break in it that I want to remove, but I don't know where the break is being added. It could be on a table, a group, or I don't know where else.
I checked the tablix properties and group properties for each portion of the report to see if "add a page break before" or "add a page break after" were checked, but didn't find anything.
Is there something i can search for in the RDL source code that will help?
I usually find this occurs when the item (tablix, chart etc) will fit entirely on a new page but not entirely on the page where the control starts. For example if you have a header on page 1 but not on page 2 or you have a chart before your tablix and the tablix will not fit entirely on Page 1 but will fit entirely on Page 2 it chooses to put the tablix on Page 2 instead of half on Page 1 and half on Page 2.
If this is your issue try placing all elements inside another element (such as a rectangle, list or another tablix).
We would need more information to give a more specific answer. Can you post screens of the pages either side of the elusive page break?
I was exporting to report type Web Archive (MHTML) and the page break was coming from the interactive height of the report. Once I set it to zero I no longer got the page breaks.

Search field is still populated with previous search value after refreshing the page

I am using ActiveScaffold 3.2.3 and Rails 3.2 and ruby 1.9.3
Enter search team
Click Search - Results get displayed
Click Reset - list get reset but Search Field is still populated with previous search term (bug).
Refresh page - Search Field is still populated with previous search term and list is displaying according to the search term(bug)
Reset button next to Search button just closes the search tab. To reset the list(all records) there is button in top-right(main box) with the label 'Click to reset'.

iterating through a list of records in a second (html) page, where the first page orders the results

I'm building this site using jsp / servlets on the backend.
The first page (or "search" page) allows one to search for records from a table, and also allows the user to sort the records. The sorting mechanism is quite complicated, and is not just a matter of appending an "order by" to an sql query.
The first page then also fills in the results after the user hit's "search". Basically, it's just a list of the items in "short" format, where each item also contains a link to display the item in the second page. The sorting mechanism is run in the first page, while the list is being created. The mechanism uses java code to sort, not sql (for reasons I won't get into, but they are definitely needed).
When the second page (or "details" page) loads, it grabs the id of the record from the url, then displays the details for that record.
Problem is that we now want to put "back" / "next" type iteration features in the details page, so that the users don't have to return to the search or list page to then navigate to the next item in the list.
I'm looking for some ideas on how to implement this as something tells me I'm missing the obvious here. Basically, the problem is that the details page has no concept of the sorting used in the search page, and so has no idea of what the next or previous record in the list should be. There are a few ideas running around but they all suffer from one problem or the next.