Lotus Notes search syntax for GetResourceObjects method

This works for finding something that "contains" a value:
<s>searchFilter</s>
<concat><s>@IsAvailable(ShortName) amp;@Contains(@LowerCase(ShortName);"</s><downcase><ref>accountId</ref>
</downcase><s>")</s></concat>
What is the syntax if I need an exact match? Tried "=" and @IsEqual
Thanks in advance, -T-

In case anyone cares, the syntax that works is:
<concat>
<s>@IsAvailable(ShortName) & "</s>
<downcase>
<ref>accountId</ref>
</downcase>
<s>"=ShortName</s>
</concat>

Similar Messages

  • Please do not enter data for payment method Cheque papel error in IT0009

    Hi Experts,
    Whenever i try to  maintain bank details infotype for payment type C(Check Papel),the  system is throwing error "Please do not enter data for payment method Cheque papel". As per SAP std, I had deleted the entries for bank key, bank account and bank control key and maintained IBAN field in IT0009.While saving i am getting the error""Please do not enter data for payment method Cheque papel" and I couldn't save the record.
    Then i  deleted the entries for bank key, bank account and bank control key and IBAN field also in IT0009. While saving i am getting the error "Fill in all required entry fields". System behaves  as if Iban a required field in IT0009. Our bank details infotype is country specific.We made it country
    specific through feature P0009 and setting in table T588M.As per our conf setting IBAN field is optional. Even though IBAN field is optional, this field behaves  as that of a mandatory field in IT0009.Iam  facing this issues only for a few countries like Spain,Italy etc.For other counties i am able to change of create Bank details record  for payment type C.
    I have checked in Payment Methods by Country in FBZP (Payment Method Classification is set to Check and BANK DETAILS box is unchecked) but still no solution. Do i need to check in any other setting.
    Please shed some light on this issue.Thanks in Advance.

    Hi Jobish,
    It's weird but I tried the below method and it works
    Here's what you can try in case you do not want to enter the bank details for payment method 'C'..
    Tcode FBZP - > payment methods by country - > select payment method as 'C' and make below changes (make a note of these changes as you will have to undo them after saving the table):
    a. Payment method by classification - select bank transfer
    b. Reqd master record specifications - check the bank details options and select the options which you want to be entered (a/c no required, IBAN rqd, SWIFT code rqd)
    Save the table.
    PA30- > Edit any record once again and save it.
    Again go to FBZP and undo the above changes, i.e, revert to the original entries and again save the table.
    Try editing the record now in PA30 and it allows to save. This is the second weird workaround that I have come across and still not sure why
    After above workaround, I didn't get any error while maintaining the record, for this or any pernr.
    See if it works.
    Regards
    Neha

  • Search syntax for Safari history? how to remove items from specific pages?

    I'm using Safari 5.0.3 and I prefer keeping the browsing history quite long for accessing contents I had been searching in the net some weeks ago.
    However, that way I'm collecting lots of clutter and therefore I'd like to remove selected entries from the history, e. g. from the page where I'm reading daily news etc.
    I tried to use the search field (accessible with Cmd-F in the history view) to search for parts of the corresponding web address, e. g. "http://www.heute.de", but I do not only get the history items from that site but many others from google and other pages.
    So I'd like to know: is there a search syntax to use the search field, like address=www.heute.de* which enables wild cards, operators like OR/AND etc.?
    If not, is there a 3rd party tool which can help or can I use spotlight/the finder to find and remove the unwanted items from the browser history?

    Hi beckmart
    there might be ready-made apps or add-ons to do that - but this may help...
    quit safari, open Home/Library/Safari/History.plist using PrefSetter
    enter the url you want removed in the search box, no need for quotes - say www.google.com
    expand the 'web history dates' section at left to see individual results, then select the first one & shift-click the last (don't use select all) to highlight/select all the results - then press the delete key to remove them. Then save the file.
    Naturally, a backup copy of history.plist would be wise - but the above seems to work very well.

  • Lotus Notes Search

    Does SAP Netweaver Enterprise Search provide search on Lotus Notes database too?
    MD

    Hello Detlev,
    Keep me updated as and when you develop this solution. My company has delayed the project for ES at the moment. But can start again anytime with this LN search as the main area of interest.
    Maulin Doshi

  • Syntax for calling method

    Hi,
       I've a component controller : Z_FPM_SPL_REC_SD, which is used a shared data component in my WD application.
    It has a method: read_tspl_obj.
    The usage defined in another component for it is: Z_FPM_SPL_REC_SD.
    I want to call this method read_tspl_obj in process_event method of this component.
    What shall be the syntax for the same?
    Thanks in advance!
    Rohit.

    try this
    String b = (String)am.invokeMethod("getValue", params);
    Thanks,
    Prasanna

  • My itunes will not search computer for all songs stored.

    I rencently reinstalled itunes to try to get it to reconize a external burner. It will now not automatically search the computer for all the songs that were orignally there.

    Yes.
    You should have copied everything from the old computer to the new one.
    Type "move itunes library" into the google search bar

  • Can not search bugs for 12.2(33)XNF2 corresponding to 2.6.2 on ASR 1002

    When selecting the IOS version in the bug navigator , I can only see XNE1 and XNE2 corresponding to version 2.5.1 and 2.5.2.
    Does it mean that XNF1 and XNF2 versions have no bugs ??? ;o)
    Is it possible to allow bug search for this specific software version ?
    Thanks

    Hi Eric
    This is a known issue, and we are working with ASR1K engineering & their release operations teams to resolve this problem.
    In the mean time, i would recommend reaching to Cisco TAC for assistance.
    Thanks
    Arun Solleti
    Product Manager
    Cisco Bug Toolkit

  • ADO Database Connection: Need help with correct syntax for 'Execute' Method

    My server Windows 2008R2 taking more than 30 hours to complete backup
    so next backup getting fail
    is there any option to set start backup after 24 hours if previous backup complete

    I have a script that I am trying to cobble together, but I am stuck at attempting to execute an SQL query against and ADO connection. My code is as follows:Powershell $FQDNUpper = $Computer.ToUpper() + ".domain.dn1.dn2" $FQDNLower = $Computer.ToLower() + ".domain.dn1.dn2" $shell = New-Object -ComObject "Wscript.Shell" # for use later in script $cnn = New-Object -ComObject "ADODB.Connection" $cnn.ConnectionString = "Connection_String" $cnn.Open() $query = "SELECT CAST(ID AS nvarchar(50)) ID FROM Machine WHERE Name=$FQDNUpper AND Role = 0" $rs = $cnn.Execute($query,' ',1) #If statement that will qualify if $FQDNUpper returned anything else try $FQDNLowerWhen executing the code I receive an error:
    PowershellArgument: '2' should be a System.Management.Automation.PSReference. Use [ref].At line:9 char:5+ $rs = $cnn.Execute($query,' ',1)+ ...

  • Naming convention for Lotus Notes folders in Mail adapter

    Hi,
    I am trying to configure a sender Mail adapter to pull messages from Lotus Notes then move the email to a 'processed' folder in Lotus Notes.
    Retrieving the email work fine (I am using IMAP) however when it tries to move the email to the processed folder, it says 'Mailbox does not exist', no matter what I specify in the input field for 'Folder for deleted messages'
    Could somone please tell me what the syntax is to specify a folder called 'processed' that I have created under the Folders branch in Lotus Notes?
    thanks for any help,
    Brian

    Hi Brian,
    I don't think the Mail adapter would be a nice choice for you to complete your scenario. First of all, the Lotus Notes is a document-oriented database. The mail adapter or JDBC adapter can not communicate with the Lots Notes database efficiently. Or you will have a lot of problems to handle the Notes views, folders, fields, just like your question here.
    If you have a lot of integration scenarios with the Lotus Notes, maybe the following information could be interesting for you: http://www.conetweaversuite.com. We have built a specific adapter for the Lotus Notes.
    BTW: If you open the email database in the Notes Designer, you can find out the alias name for your u201Cprocessedu201D folder. Maybe you should enter this name in the mail adapter. 
    Best regards
    Xiang

  • Round up syntax for Formatted Search

    Hi all,
    I need help on writing the formatted search syntax for below scenario.
    Discount % = 2 decimal place only
    Unit Price = 99,376.00
    Discount = 30.97%
    Price After Discount = 68,599.25
    I want the Price After Discount to be rounded up to 68,600. Any idea how to achieve this? Will do this round up in another UDF so that my layout will show the rounded up price to customer.
    Even if the Price after discount is 600.02, i wanted the result to be always rounded up to nearest $1 as long as the original price has some amount at the decimal. For this case, should round up to 601.00.
    Anyone can help? Thanks in advance.

    Hi Too Mui Hwee
    Will the UDF be varchar or numeric? Do you want the udf to show the currency as well?
    I have done both for you. The problem with SQL 2008 & 2012 is that they don't have a roundup function. This is however in version 2014 which is not yet supported by SAP Business One.
    Without currency:
    SELECT CASE WHEN ROUND($[$38.17.NUMBER],0) < $[$38.17.NUMBER] THEN ROUND($[$38.17.NUMBER],0) + 1 ELSE ROUND($[$38.17.NUMBER],0) END
    With currency:
    SELECT CASE WHEN ROUND($[$38.17.NUMBER],0) < $[$38.17.NUMBER] THEN $[$38.17.CURRENCY] + ' ' + CAST(ROUND($[$38.17.NUMBER],0) + 1 AS VARCHAR(20)) ELSE $[$38.17.CURRENCY] + ' ' + CAST(ROUND($[$38.17.NUMBER],0) AS VARCHAR(20)) END
    Kind regards
    Peter Juby

  • Syntax for how to call method of one comp in other comp     wd java.

    Let us assume,
    there is method1 in view1 comp1.
    tell me syntax for calling method 1 in view2 comp2
    thanks in advance.
    Edited by: madhu1011 on Nov 9, 2011 11:31 AM

    Hi Madhu,
    This is the situation:
    comp1-> method 1 , view1
    comp2-> view2
    You need to access method1  in view2 of comp2.
    For that, do the following steps:
    1.) First create a method (for eg: method1) in comp1 (under implementation of view1).
            eg: public void method1(){
                    <......some logic...>
    2.)Save the meta data.
    3.) In comp2, you will find an option called used components. In that right click and add the component comp2. (Carefully select comp1 itslef).
    4.)Save the meta data.
    5.) Then go to view2 of comp2 and take implementaion part and right the following logic in wddoinit() (or any other standard or custom method).
    wdThis.wdGetComp2Interface().getMethod("method1"); 
    By this way, we can access the method1 of comp1 in comp2.
    Regards,
    Jithin

  • Lotus Notes connectivity in WebDynpro for Java

    Hi,
    in case we want to implement some content stored in an Lotus Notes database. For example a simple corporate phonelist. What are our options to get these data represented in our portal if we dont want to use the standard "Notes DB web-enabled" output.
    Is it possible to develope for example a webDynpo for Java application which connects via JCo(??) to Notes, greps the data there and interacts with it so that we can use the standard portal UI-Elements?
    Do you know where to find some specified information for that issue?
    Thanks and best regards
    Markus Armbruster

    Hello Markus,
    I already tested several options for connecting Web Dynpro to Lotus Notes/Domino. You may use Java technology (IIOP) or web technology (simple HTTP/XML or HTTP/SOAP).
    in order to use IIOP, simple include NSCO.jar in the lib path of your SAP J2EE engine instances. Then you are able to use the classes stubs for NotesFactory(), NotesSession() etc. within WD.
    if you use HTTP then connect using web services. The data is then transferred e.g. via XML or DXL.
    I have some samples running in case you need more information I can send you the source.
    Regards
    Michael

  • How can I Purchase Lotus Notes (IBM) for MacBook Air?

    Dear Friends,
    Can you help me,
    Please guide me to Purchase Lotus Notes Software (IBM) for my MBA.
    Thx
    Dodijp

    http://www-01.ibm.com/support/docview.wss?uid=swg21599884
    Hope this helps.

  • LOTUS NOTES 7

    hi all,
    Does anyone have Lotus notes 7 client for Mac OS???
    I search it on Google for weeks but found NOTHING!!!!
    could someone give me a clue, thanks!!
    Ken

    Lotus Notes 7 is VERY OLD.  It's not supported any more by IBM.  It won't run on Mountain Lion:
    http://www-01.ibm.com/support/docview.wss?uid=swg21160099
    You need 8.5 or later.

  • Pdfmaker and lotus notes

    using Acobat 8 pro.pdfmaker tool bar doesn't link up with lotus notes 6.5?

    Thanks,
    Still doesn't load?
    The Notes.ini file is located at C:\NOTES. I have copied and attached the
    text from that file.
    KitType=1
    Directory=C:\NOTESDAT
    InstallType=2
    FaultRecovery_Build=Release 6.5.1
    Timezone=6
    DSTLAW=3,2,1,11,1,1
    FileDlgDirectory=C:\Documents and Settings\cmaltase\My Documents
    Enableplugins=1
    PhoneLog=2
    Log=log.nsf, 1, 0, 7, 40000
    DST=1
    MailType=1
    $$HasLANPort=0
    Location=Home (Network Dialup),9FA,790
    UPDATE_TIMER=12/09/2010 12:00:50 PM
    SUDIALOG_ON=0
    WWWDSP_SYNC_BROWSERCACHE=0
    WWWDSP_PREFETCH_OBJECT=0
    EnableJavaApplets=1
    Preferences=-2147480463
    DESKWINDOWSIZE=0 0 976 669
    AltNameLanguage=en
    ContentLanguage=en-US
    WeekStart=1
    ViewWeekStart=2
    NavWeekStart=1
    XLATE_CSID=52
    SPELL_LANG=1033
    SPELL_PREFERENCES=0
    Region=en-US
    DatePickerDirection=0
    Passthru_LogLevel=0
    Console_LogLevel=2
    VIEWIMP1=Lotus 1-2-3,0,_IWKSV,,.123,.WK1,.WK3,.WK4,.WKS,.WR1,.WRK,,4,
    VIEWIMP2=Structured Text,0,_ISTR,,.CGN,.LTR,.STR,,1,
    VIEWIMP3=Tabular Text,0,_ITAB,,.PRN,.RPT,.TAB,.TXT,,1,
    VIEWIMP4=vCard,0,_IVCRD,,.VCF,,1,
    VIEWEXP1=Comma Separated Value,0,_XCSV,,.CSV,,1,
    VIEWEXP2=Lotus 1-2-3,0,_XWKS,,.123,.WK1,.WK3,.WK4,.WKS,.WR1,.WRK,,4,
    VIEWEXP3=Structured Text,0,_XSTR,,.CGN,.LTR,.STR,,1,
    VIEWEXP4=Tabular Text,1,_XTAB,,.CGN,.LTR,.RPT,.TAB,,1,
    VIEWEXP5=vCard 2.1,0,_XVCRD,,.VCF,,1,
    VIEWEXP6=vCard 3.0,0,_XVCRD3,,.VCF,,1,
    EDITIMP1=ASCII Text,0,_ITEXT,,.C,.H,.PRN,.RIP,.TXT,,1,
    EDITIMP2=Binary with Text,0,_ISTRNGS,,.*,,1,
    EDITIMP3=BMP Image,0,_IBMP,,.BMP,,18,
    EDITIMP4=CGM Image,0,_IFL,,.CGM,.GMF,,8,
    EDITIMP5=GIF Image,0,_IGIF,,.GIF,,18,
    EDITIMP6=HTML File,0,_IHTML,,.HTM,.HTML,,1,
    EDITIMP7=JPEG Image,0,_IJPEG,,.JPG,,18,
    EDITIMP8=Lotus 1-2-3,0,_IW4W,_IWKSE,.123,.WK1,.WK3,.WK4,.WKS,.WR1,.WRK,,4,
    EDITIMP9=Lotus PIC,0,_IPIC,,.PIC,,8,
    EDITIMP10=Lotus Word Pro,0,_IW4W,,.LWP,,2,
    EDITIMP11=Microsoft Excel,0,_IW4W,,.XLS,,4,
    EDITIMP12=Microsoft RTF,0,_IW4W,_IRTF,.DOC,.RTF,,2,
    EDITIMP13=Microsoft Word,0,_IW4W,,.DOC,,2,
    EDITIMP14=PCX Image,0,_IPCX,,.PCX,,18,
    EDITIMP15=TIFF 5.0 Image,0,_ITIFF,,.TIF,,18,
    EDITIMP16=WordPerfect 5.x,0,_IW4W,,.DOC,.WPD,,2,
    EDITIMP17=WordPerfect 6.0/6.1,0,_IW4W,,.DOC,.WPD,.WPT,,2,
    EDITEXP1=ASCII Text,2,_XTEXT,,.C,.H,.PRN,.RIP,.TXT,,1,
    EDITEXP2=CGM Image,2,_XCGM,,.CGM,.GMF,,8,
    EDITEXP3=Microsoft RTF,2,_XRTF,,.DOC,.RTF,,4,
    EDITEXP4=TIFF 5.0 Image,2,_XTIFF,,.TIF,,18,
    EDITEXP5=vCard 2.1,0,XVCRD,,.VCF,,1,
    EDITEXP6=vCard 3.0,0,XVCRD3,,.VCF,,1,
    DDETimeout=10
    NAMEDSTYLE0=030042617369630000000000000000000000000000000000000000000000000000000000000001 010100000A0000000000000100A0050A0000006400A0050A000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000009404000000000000
    NAMEDSTYLE0_FACE=Default Sans Serif
    NAMEDSTYLE1=030042756C6C657400000000000000000000000000000000000000000000000000000000000001 010100000A000000000000000008070A000000640008070A000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000049404000000000000
    NAMEDSTYLE1_FACE=Default Sans Serif
    NAMEDSTYLE2=0300486561646C696E650000000000000000000000000000000000000000000000000000000001 0101010B0C0000000000000100A0050A0000006400A0050A000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000009404000000000000
    NAMEDSTYLE2_FACE=Default Sans Serif
    DefaultMailTemplate=mail6.ntf
    AddInMenus=C:\PROGRA1\Adobe\ACROBA1.0\PDFMaker\Mail\LOTUSN1\PDFMLO1.DLL
    AdobePDFMInst=1
    EXTMGR_ADDINS=AdobePDFMToolbarInst
    Work Safely,
    Cliff Maltase
    Crawford Station
    MidWest Generation
    DevyaniB <[email protected]>
    03/22/2011 04:36 AM
    Please respond to
    <[email protected]>
    To
    cliff maltase <[email protected]>
    cc
    Subject
    pdfmaker and lotus notes
    Hi "http://forums.adobe.com/people/mwgen",
    Could you please check if the following PDFMaker entries are made in
    "notes.ini" -
    *+AddInMenus=C:\PROGRA~1\Adobe\ACROBA~1.0\PDFMaker\Mail\LOTUSN~1\PDFMLO~
    1.DLL+*
    EXTMGR_ADDINS=AdobePDFMToolbarInst
    AdobePDFMInst=1
    [Please note the location of "notes.ini",
    For single-user install of Notes, at ?C:\Program Files\lotus\notes?.
    +For multi-user install of Notes, typically at ?C:\Documents and
    Settings\\Local Settings\Application Data\Lotus\Notes\Data\?.]+
    In case the entries are absent, please make the modifications as suggested
    in http://kb2.adobe.com/cps/333/333476.html.
    I'd suggest you make a temporary backup copy of the file before making any
    modifications to it. Thanks!
    - Devyani.

Maybe you are looking for

  • My images do not show up on my published website.

    I am a beginner in Dreamweaver (having only made one other website 3 years ago in college). I have my images in my Assets folder, I place the image in dreamweaver, save it, test it, and it works fine. But when I "put" my website on the internet, my i

  • How to export to .wmv

    Ok I've got a 5 min 10 second video I want to export to .wmv...for some reason the option is not in my export options...tried it in the render que for .wmv and it came out over 45gb file with choppy animation and such. My friend gave me the specs she

  • How does it work BufferedImage ?

    This code that I have copied from Sun docs examples doesn't work.There is a NullPointerException using the buffer... Why? Thanks in advance,regards Lando. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> java.lang.NullPointerException a

  • BEST Way to Revert back to ipod Version 1.0

    u can do it without restoring. 1. Open "My Computer" 2. Double-click your iPod drive 3. Make sure your computer is set to view hidden files (if it is not, go to Tools > Folder Options and click on the view tab. Select "Show hidden files and folders,

  • Help with short method explanation..!!

    Hi guys can someone explain what each line does public MyComboModel(Vector cars){              for (int k=0; k<cars.size(); k++) {               String car = (String)cars.elementAt(k);               addElement( car); }