Problems with the display of score:Scores not displayed in sap infosteward
Hi All I am stuck up with a problem while configuring the score card setup in SAP Information Steward , The scores are not getting displayed automatically as expected:-Please help me out with the...
View ArticleRe: Problems with the display of score:Scores not displayed in sap infosteward
Hi,after specifying the quality scale dimensions under kdd, add rules and rule bindings for that quality scale dimensions and then go to workspace-->rule result tab select the table or view on which...
View ArticleRe: Problems with the display of score:Scores not displayed in sap infosteward
Hi Krishna Thanks a lot for the quicker response. I was wondering the graphical view of the scores are not displayed.I have got two rules under the Accuracy Dimension ,none or the rules are available...
View ArticleSyntax for matching the string patterns in Match Regex() in information Steward?
Hi All I need to check whether the given address is valid only if contains the strings like "Ave", "St", "Blvd" ,"Rd" . I tried using the match Regex() function with the following...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi,please try the below rule. beginif(upper($address) in ('ave', 'st','rd','blvd','dr'))return true;elsereturn false;end or u can use this one also beginif(upper($address) like ('%ave%',...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi The same is not achievable by MatchRegex() or MatchPattern()???
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Those are used for identifying special charecters in the string the name itself says match regular expression.just check user guide for more info.
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi I tried with the "In" syntax, however there is no change in the test results,Its still the same as with the previous MatchRegex() results Regards
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
The "in" example is not correct, it will only return true, if the input matches exactly one of the specified values.Try with "ave" for $Address.
View ArticleHow to trigger email to owner when there is a change in metadata...
Hi, How to trigger email to owner when there is a change in metadata objects/metapedia term ? BRNethaji Guru
View ArticleRe: Data Quality Regex
SAP Information Steward. However, regexes are independent of a product, i.e. they have the same syntax everywhere.
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi The solution described above(using In) isn't providing the desired results . The In example is returning all the values either all false or all True(if we alter the positions of true and...
View ArticleRe: SAP Information Steward - no Scorecard calculation
Hi Vincent Did you get the solution towards your problem?Even I am facing similar problem, and I am about to follow the steps mentioned above now!! RegardsMoumita
View ArticleRe: Problems with the display of score:Scores not displayed in sap infosteward
Hi Adrian I have tried the steps mentioned above but still there is no change in the graphical display its stills the same nothing is displayed
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Actually, his other exampkle with like is not correct either. Not at all! Why do you mark that as a helpful answer??? It's not helpful at all, just misleading, I am sorry. The "in" operator has...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi Moumita You might want to try the syntax below. It does however introduce false positives (see highlighted example) so you going to have to refine the regex: Regards Abdul *Edit: Dirk sums it up...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi Dirk The like is working, even for 'First Orchard Square', I just removed Lower() before each of the string, and Capitalized the first letter,like Rd, Ave:-However the same (First Orchard...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
It's the last parameter. It says case_INsensitive, doesn't it?
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi I am just a beginner, and I am seriously thankful and grateful towards the spirit of helping and contributing towards a problem,to such an extent by experienced programmers,consultants at any...
View ArticleRe: Syntax for matching the string patterns in Match Regex() in information...
Hi Dirk Wo!! Its working now,finally problem solvedThanks a lotThanks Regards
View Article