Show Single Category
Show Single Category
(OP)
Does anyone know how to only access a subcategorie?
e.g. I have theese categories:
Software
Software\Applications
Software\OS
Hardware
When I enter "Software" in the formula for SSC i see all documents that are in Software or in any subcategory of Software. thats great.
But what to enter to only see documents that are in Software\Applications and below?
because "Software\Applications" or something like this gives me the same result like "Software"
Regards
Stephan Hofmann
e.g. I have theese categories:
Software
Software\Applications
Software\OS
Hardware
When I enter "Software" in the formula for SSC i see all documents that are in Software or in any subcategory of Software. thats great.
But what to enter to only see documents that are in Software\Applications and below?
because "Software\Applications" or something like this gives me the same result like "Software"
Regards
Stephan Hofmann
RE: Show Single Category
Are you trying to display the categories and sub categories in a listbox in a document or are you trying to filter a view using a selection formula?
If you can give us some additional information and some examples of formulas you are trying to get working it will help greatly in getting an understanding of what you are trying to do.
Cheers!
RE: Show Single Category
on S you see all documents in any level under S
all documents under S\A are to bee seen too
on S\A you see all documents in any level under S\A
and that should work with multiple levels
I'm now on a point to say "It wouldn't work" because SSC only work with one level of categorization.....
so now I'm working on displaying it with a search...
Regards
Stephan Hofmann
RE: Show Single Category
That way, when you choose to view by main category, you get the first view, then when going down you switch to the new view and apply the more complex key.
Pascal.
RE: Show Single Category
Stephan
RE: Show Single Category
That should not prove too difficult.
Pascal.
RE: Show Single Category
the problem is that the specification sais that there is no limit on categorie level........
so i will search in an other direction
but thanks for your consultant
regards
Stephan Hofmann
RE: Show Single Category
i craetat the views
in a form i wanted to embed the views.
so at "embedded view" --> "embedded selection"
i wanted to insert:
test:=Eingabe
@if(
!@contains(test;"\\");"Kat0";
!@contains(@ReplaceSubstring(test; @Left(test;"\\")+"\\";@Left(test;"\\"));"\\");"Kat1";
!@contains(@ReplaceSubstring(@ReplaceSubstring(test; @Left(test;"\\")+"\\";@Left(test;"\\")); @Left(@ReplaceSubstring(test; @Left(test;"\\")+"\\";@Left(test;"\\"));"\\")+"\\";@Left(@ReplaceSubstring(test; @Left(test;"\\")+"\\";@Left(test;"\\"));"\\"));"\\");"Kat2";
NULL)
Kat0 to Kat2 are the different views
test holds the value of the listbox above the embedded vie
the if close is:
is there no "\" then kat0
when i take one "\" away and ther is no more "\" then Kat1
and so on...
i littlebit tricky but it should work
but every time i refresh the object in the programmers panel f***** Domino Designer erases this formula
is it my fault?
or where should i decide which view to take
regards
Stephan Hofmann
RE: Show Single Category
The embedded view should just call the two fields, and you're done.
RE: Show Single Category
Regards
Stephan Hofmann
RE: Show Single Category
RE: Show Single Category
Regards
Stephan Hofmann
RE: Show Single Category
Another field should contain the formula defining the criteria to use for selecting the type of documents to be displayed in the view. Lets call that field DocCat.
Once you have inserted those fields, you just go to the Embedded View Properties and input EmbedViewName as name of view to use, and DocCat as Category.
In that manner, refreshing the field values should update the embedded view and the documents displayed.
Pascal.
RE: Show Single Category
Thank you so much for your help and patience, Pascal.
What had I done without you.
Regards
Stephan Hofmann
RE: Show Single Category
Pascal.