Filter BO2 "where BO2 pk not in (Select fkBO2 from BO1)"


Author
Message
Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
I have a BO1 typed to a table which has an FK that is the PK of BO2 ( no relationship setup between the BOs )



I want to filter BO2 to exclude records where the pk is found in the FKs of BO1



Guidance as to SF best practice for this appreciated Smile







Trent Taylor
Trent Taylor
StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
So really you just want to create a filter, correct?  So the most simple case, unless I am missing something, would be applying a filter like this:

MyBO2.Filter = "FKField = " + MyBO1.PK.ToString();

When you do this and add new records, however, you will want to remove the filter BEFORE adding a new record, set the filter properties, then reapply the filter.  Also keep in mind that you can use the MyBO.RegisterForeignKey command to have the BOs manage the FKs for you even if they are not setup within the database.  Just FYI. Smile

Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
A little more complex than that (perhaps)



I want to create a filter on BO2 based on a collection of values in BO1.



I have a list of bo1.itemplatekeys (not the pk)



I want to filter BO2 such that BO2.ikey is not in that list.



Basically a subquery Select * from BO2 where BO2 not in ( Select BO1.itemplateskey from BO1)



If my list is keylist, I have tried



BO2.filter = "keylist.contains(bo2.ikey) = false"



but get an error (at runtime) saying I am trying to use an undefined function in a filter

Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
I reread your post, Trent, and thought I might be missing something glaringly obvious ( Lord knows it would not be the first time Smile )



I thought perhaps you were telling me that the



MyBO2.Filter = "FKField = " + MyBO1.PK.ToString()




would test FKField against a collection of all the pks in MyBO1. I even tried it as MyBO1.PK().Tostring()



But it seems it just compares it to the currentrow value, so would only get one record. Did I misunderstand or do it wrong or it that just the way it is?



I created a function to return a string of integers from my keylist and can build the filter that way, but I still feel there is some magic I'm missing



( I thought this function might already exists somewhere in the framework but couldn't find it )



Public Shared Function keyarraytoString(ByVal keyarray As List(Of System.Int32)) As String

Dim keystring As String = ""



For Each key In keylist

keystring += key.ToString()

If keylist.IndexOf(key) <> keylist.Last Then

keystring += ","

End If

Next



Return keystring



End Function





So then I filter my templates :



Me.TemplatesBO1.Filter = "ikey not in (" & keystring & ")"




It works fine and I can certainly create overloads of the function to handle other types in the passed in list.



But I can't help but feel that while it is a solution it is not the solution. Cool



Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
just to keep from confusing lurkers - to get the keystring the line that precedes the above code :



dim keystring As String = keyarraytoString(_ExcludedTemplatekeys)




where _ExcludedTemplateKeys is a property holding the list of key gathered from the other business object.







Trent Taylor
Trent Taylor
StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)StrataFrame Developer (8.5K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Well, you could go about this several ways. You could take the Custom BBS approach like you do for a report and create collections. Look at the StrataFlix sample to see how to do this. Fo example, take a CustomersBO and an OrdersBO. When I am on the customer record I want to reference the orders for that customer and have things already filtered out:



Customers.Orders[0]




In the above example, you would go ahead and retrieve all of the records that you need then have the class automatically filter these out. Again, instead of me re-hashing a lot of code, look at the reporting samples that come with the StrataFlix sample. Specifically the data source of one of the reports.



The other is to use the auto-filter options of the BO, but until I hear back then this might be a better avenue.
Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
I know the techniques you are talking about and they work very well. This is something that came up in a wizard, where there is not really a parent-child relationship, but rather a situation where there is a checkedlistbox on page1 that displays PDF names. They are derived from a table which has, as one of its fields, the PK of the template (in the Templates table) used to generate the PDF in the first place.



The user selects PDFs.



The second page has a checked list box of templates which the user may select to generate further PDFs, but we don't want to show templates for PDFs that have already been generated.



So, on leaving page1, I am pulling the iTemplatekey from the PDFs bo based on the collection of PDF pks from the checkedlistbox. They become a collection to compare against the PKs in the TemplatesBO and set a filter.



I can visualize many instances of clientside data munging where this stuff is going to come in handy. I love the stuff built into the BOs on parent-child relationships, but this just adds another technique for stuff like this wizard thing.



( In exploring other ways to play with subsets of data already pulled, yesterday McGuffey dazzled me by figuring out filling list controls on the fly from the results of a LINQ query. Very useful in these kinds of situations. I'm getting pretty excited about LINQ in conjunction with the SF framework )

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search