How to ignore some of filters on dashboard - gooddata

I would like to ask you, how is it possible to ignore some of filters on dashboard in the report? I know there exists a syntax construction WITHOUT PARENT FILTER, but it probably doesn't support EXCEPT keyword to allow keeping active some of filters.
Could you please give me an advice how to solve it?
Thank you!

When you edit a "dashboard", you can click to edit properties "Report". One of these features is the "Filters" where you can select which dashboard filter will affect report and which does not.

Related

Not Allowed Access for all modeul (Document model: ir.filters)

I got an error on my Odoo like on the picture, I've checked the user already has access to the user group. It's very thankful if you can help me.
I need more information but whenever you parform the action you are doing a security record rule is trggered, you can try the hard mode, go to security record rules and disable one rule and try and re enable after.
I add this setting (see on the picture) on the user's group I want to give access and it's solved. Apparently it's because the user does not have access to Object ir.filters which most of my modules use this.

Value Suggestion for SAP Dynpro input field

I need to show suggestions when someone types something into my input field.
It's a field for a transport request. So if someone starts to type something in it shows at the moment last entered entries but it should make suggestions what to type in (like it happens for example in transaciton VA02 ). I want a dropdown of a selection of the table E070 where I can see the request and the short text.
I did use google but i just found this, but i've got a normal dynpro and no WebDynpro.
The keyword you are looking for is Enhanced Search. You can provide your own enhanced search implementation by creating a search help and activating the proposal search feature. Note that the enhanced search can be turned off in the GUI Settings, though - and many users and organizations do so because it tends to be irritating for long-time experienced users.

Best approach to build a DYNAMIC query-by-example form in AngularJS?

I'm relatively experienced with Angular having written many directives, but I have a new requirement where I have to build a query-by-example form into which a user can enter different search criteria. My problem is that I do not know ahead of time what the possible criteria will be. This criteria information will be coming from the server via an ajax request and can differ per user. Thus I will need to dynamically construct a suitable user interface based on the information I get from the server.
I have built individual directives suitable for capturing the search criteria (for example a custom calendar control for date criteria) but I am unsure of the best approach to adding these directives to a form dynamically. Is this even possible in Angular?
I have built something like this before in jQuery but its not so clear to me how I would best do this in an 'Angular way'?
Any suggestions would be most appreciated!
Everything that you can express as a model-to-view projection can be implemented in AngularJS.
I think here you can make a model consisting of "query params". Each of them has name, type and data for filter builder. For example, for the "select" type a data can contain a list of all possible values to choose from.
Then you iterate through the list of "query params" with ng-repeat, rendering each control differently according to its type. That's all.
If I understood the task wrong, please provide more info.

Is there an existing concept for handling permission in a vaadin JPAContainer?

I have a vaadin application using JPAContainer an want to implement some sort of access control. The container should filter all entities that the user is not allowed to read and restricts modification to those users explicitly allowed.
My question is now if there is an existing solution to help implementing this. I searched for it and didn't find anything. Not even a discussion or description of a concept. So i assume the answer is "No" and I'm basically asking to provide a better search result for the next one looking for this.
Nevertheless would I be happy if someone points me to something that helps me implementing this properly.
Thanks
Raffael
There is no such a thing in jpacontainer nor in vaadin.
Vaadin applications are secure and safe if say, the "Edit" or "delete" button is not visible, there is no way to hack it. Or you can have the button disabled only, but do not attach a click listener to it if the user has no permission to do it.

Need Help in social engine signup process

HI please help me in the sign up process of social engine,
I need to add a country/state/city cascading dropdowns on my signup process.
I know how to do it in PHP ajax but finding the hard time to do it in this social engine framework.
Can any one help me in this!!
Thanks
You can use admin panel. You need menuitem Settings > Profile Questions. Then choose needed profiletype and add question with type 'selectbox'.
If you need cascading dropdown in wider meaning, you may use jxlib putting all code into application/modules/User/views/scripts/signup/form/fields.tpl
I have also solved this by using jquery.
You could get the id of the two field involved and then use jquery to add the options of the select field.