How to suppress alert when refreshing Essbase/SmartView Table? - vba

I'm trying to get past this alert. Using DisplayAlerts=False does not work.

Related

Unexpected error Tracking number: c904462681469709

been trying to create a table in sandbox and i'm getting an "Unexpected error
Tracking number: c904462681469709". sometimes the table gets created, sometimes it doesn't.
any wizards that can help me with this?
cheers,
I ran into the same issue today, I do not know what causes the error, but I found that BigQuery has loaded my table. The steps I used are as follows:
Click the three dot drop down to create the table.
Fill out the source, destination, schema for the table.
After clicking 'create table' receive the error and close out the error window.
Close out of the create table window.
Refresh your BigQuery page.
Check the dataset you created the table under and it should be there.
I hope this method works for you as it did for me!
That happened to me too. So strange but yes I did the same thing Devin did. Took me forever trying to figure it out but it is what it is. Just refresh and keep going.

Warning pop-up only when data is available while navigating

How can I show a warning pop-up like (your changes will we lost) only when data is filled while navigating back and if data is not filled it should allow the user to navigate back without warning pop-up, please give me a solution as I am new to react native.

How do I permanently dismiss the ..."Powered by Data Catalogue" pop-up in BQ

Recently (last month or two) I've been noticing a popup that keeps showing up when I open BigQuery. It says:
Try search and autocomplete powered by Data Catalogue
When I hit "Dismiss" on this pop-up it goes away for a while but as soon as I come back to the BQ query editor it just comes back again. It's infuriating!
Does anyone know how to get rid of this advertising permanently without enabling it?
The issue has been reported on issuetracker platform, which says that:
The Prompt will not be visible by default once BigQuery UI's 'V2 Beta'
version is launched in November.
I will recommend you to subscribing the issue by starring it. When you star an issue, you receive email notifications about any upcoming chnages. Additionally, keep track of the latest BigQuery releases here.

Keep getting incorrect captcha

This used to work, but at some point in the last year it stopped working and we just found out today from a customer. It keeps on saying that you failed even if you type it right.
Also, if you press the voice button, it says a different number/word than the number/word it's displaying.
Here is a live link.
Figured it out. For anyone else that has this problem the solution was...
The page had multiple tables. In an update, the end of the form got outside of the main table, breaking the captcha. Once the was moved back inside the proper it worked again!

How to Click on pop up text using Robotium

I am getting an expected pop up, I know what text it will have and
what buttons will it have. I want to click on one of the buttons.
Once I get to the pop up screen, I see some text and 3 buttons. My
test passes if I use
Solo.searchButton("Text")
or
Solo.searchText("Text").
The problem is when I do Solo.ClickOnButton ("Text") or
solo.clickOnText("Text").
I tried using solo.getViews(); but still
running into same error.
No button or text with "Text" is found.
I was able to overcome this by using solo.getView()
View donebtn = solo.getView(R.id.pop_up_button);
solo.clickOnView(donebtn);
Try using longclick instead of just clickonbutton.
And is the message that pops up within the same package as your activity thats under test?