Using Search Strings

Dears
We have a scenario where bank is using NTRF both for check and Bank Transfer. Only way to distinguish that it is check is that immediately after External Transaction the check number is of 6 character otherwise it is Bank Transfer. In the EBS configuration with each External Transaction we can assign only one Posting Rule and algorithm. 
We come to know that through search strings we can change the posting rule and algoritham. We went to many answer on net to work on search strings but so far nothing successful. Can someone guide us how to use it.
Thanks

Hi Expert,
Please refer to the below link which will help in configuring Search Strings for your scenario.
http://help.sap.com/saphelp_46c/helpdata/es/af/0a242bc925d311b60f0060b03c2bff/content.htm
http://help.sap.com/saphelp_46c/helpdata/en/6d/0cdf4b142e11d3963800a0c9426c73/content.htm
Regards,
GK
SAP

Similar Messages

  • Posting rule to be specified in target field of mapping area/Mapping prefix in Search string use?

    Posting rule change using search string configuration
    Hello Friends - I have defined Search string and specified Posting rule in target field of mapping area and set up done on Search search use tab.
    When I imported the Statement, based on text found on statement, Posting rule specified in Search string is determined.
    I see Search strings already maintained in my system that Posting rule is maintained in Search string use tab - Mapping prefix.
    My doubt is that if Posting rule can be maintained in any of the below:
    Either at Posting rule to be specified in target field of mapping area or Mapping prefix in Search string use?
    Thanks

    Hello Kalim - Thanks. I have already configured Search string the way you suggested me last time and imported the statement during testing. It is working fine.
    Can you pls tell me in which scenario "mapping prefix field" should be maintained. Now, I will try to understand this from F1 help.
    For Search Strings already defined in our System long ago that Posting rule is not specified in Target field in mapping field, but maintained Mapping prefix.
    Thanks,
    GT

  • Electronic Bank Statement Search Strings Customer Item Clearing

    I have configured EBS and I am trying to clear open items from customer accounts using Search Strings.
    I have mapped the customer account on the bank statement to the SAP customer account. For example, Victor Osagie is mapped to account 1400036.
    When I process transactions with exactly the same note to payee as above, open items in the customer account clear. However, when the note to payee field changes for example to Victor Osagie 110000000. The customer is recognised but the item is not cleared from the customer account.
    The statement format is BAI and we are using the BAI processor.
    How can I manipulate the search strings to allow the clearing of items like this?
    Victor

    Problem solved. Applied note 1085596
    Anil

  • Simple Search Strings

    HI
    We have EBS in place just to explore new things to enhace EBS for clearing we are trying to use Search strings.
    We  just create dummy EBS file to check a scenario as below example
    We receive check number 6=4 digits after NCHK pref CH#1028. In our payr table check number is only 4 digits without prefix CH#. For this we create a Search String as CH##### and in mapping we blank CH# and rest #### keep as it is. Now in TEST when we enter the value CH#1028 it brins the value as 1028 which is exactly we need. We now define search strings use where target field is CHECK/DME EBCHECT.
    But when we upload the file system not done accordingly. Even when we checked table FEBEP value in CHECT field still coming as CHECT. Please advise
    Thanks

    Hi Expert,
    Please refer the below link to Define Search Strings.
    http://help.sap.com/saphelp_46c/helpdata/es/af/0a242bc925d311b60f0060b03c2bff/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb33cc358411d1829f0000e829fbfe/content.htm
    Regards,
    GK
    SAP

  • EBS Search strings

    Hi All,
    I am trying to use search string to use posting ruels. I created search strings and assigned the posting rules  but system is not picking up them. system is picking up the posting rules that are assigned to BTC  in global setttings. Is there specefic setings that need to be done in this regard?.
    Thanks

    Did you set up the search string usage?
    Regards,
    Shannon

  • EBS search string for check number

    Hello Gurus
    My client is using MT940 FORMAT for EBS,requirement is in a bank statement we are having 10 transactions which are having the same amount for ex:rs.1000 for ten payment transactions. now system is not able to post the document when we import the bank statement.
    I wanted to use search string for check number,  note to payee in bank statement is check number.Please find the below refference
    /EI/400229001       010013
    0000010013
    Reference 010013
    How could i use search string for this i tried but im not getting the solution im getting the following error difference is too large F5 263.
    Appreciated for our help............
    Thanks a lot in advance...............

    Hi Paulo,
    Thanks for the reply. However i have the following setting and it still does not work..
    Mapping -> AB01
    When i do the simulation it shows the Number and the hits and mapping.
    In the Seach String use i have following settings:
    CC 1000
    Interpretation : ALL Interpretation
    Search String : TEST1 ( this is the name that i gave to above search string)
    Target : Posting RUle
    Active checked.
    But still when i upload the bank statement it is posting to Rule AB03 and not AB01
    Also when i try FEBSTS it says no document hits ???
    Your answer is greatly appreciated.

  • Use of special characters in Search String

    What is the use of special charaters like
    in the search string in the Find & Replace of ABAP editor ?
    I want to search for all strings starting with V which are followed by alphabets like
    VA
    VB...
    If I use V*, it also gives me results like
    V/R...
    Whether it is possible to specify such a condition?

    Hi,
    While giving ur search in FIND & REPLACE,
    use the match case or match whole word only..
    Then u will get search results only where the exact case of that variable is used..
    As per my knowledge there is no signification of special characters ,- : ; in the search string..
    Hope this helps...
    Cheers,
    Simha.

  • How is it possible to use Index Seek for LIKE %search-string% case?

    Hello,
    I have the following SP:
    CREATE PROCEDURE dbo.USP_SAMPLE_PROCEDURE(@Beginning nvarchar(15))
    AS
    SELECT * FROM HumanResources.Employee
    WHERE NationalIDNumber LIKE @Beginning + N'%';
    GO
    If I run the sp first time with param: N'94', then the following plan is generated and added to the cache:
    SQL Server "sniffs" the input value (94) when compiling the query. So for this param using Index Seek for AK_Employee_NationalIDNumber index will be the best option. On the other hand, the query plan should be generic enough to be able to handle
    any values specified in the @Beginning param.
    If I call the sp with @Beginning =N'%94':
    EXEC dbo.USP_SAMPLE_PROCEDURE N'%94'
    I see the same execution plan as above. The question is how is it possible to reuse this execution plan in this case? To be more precise, how
    Index Seek can be used in case LIKE %search-string% case. I expected that
    ONLY Index Scan operation can be used here.
    Alexey

    The key is that the index seek operator includes both seek (greater than and less than) and a predicate (LIKE).  With the leading wildcard, the seek is effectively returning all rows just like a scan and the filter returns only rows matching
    the LIKE expression.
    Do you want to say that in case of leading wildcard, expressions Expr1007 and Expr1008 (see image below) calculated such a way that
    Seek Predicates retrieve all rows from the index. And only
    Predicate does the real job by taking only rows matching the Like expression? If this is the case, then it explains how
    Index Seek can be used to resolve such queries: LIKE N'%94'.
    However, it leads me to another question: Since
    Index Seek in
    this particular case scans
    all the rows, what is the difference between
    Index Seek and Index Scan?
    According to
    MSDN:
    The Index Seek operator uses the seeking ability of indexes to retrieve rows from a nonclustered index.
    The storage engine uses the index to process
    only those rows that satisfy the SEEK:() predicate. It optionally may include a WHERE:() predicate, which the storage engine will evaluate against all rows that satisfy the SEEK:() predicate (it does not use the indexes to do this).
    The Index Scan operator retrieves
    all rows from the nonclustered index specified in the Argument column. If an optional WHERE:() predicate appears in the Argument column, only those rows that satisfy the predicate are returned.
    It seems like Index Scan is a special case of Index Seek,
    which means that when we see Index Seek in the execution plan, it does NOT mean that storage engine does NOT scan all rows. Right?
    Alexey

  • Using EBS search strings to allocate a customer profit center

    Hi All,
    I am using IHC for my incoming payments. I use substitution for profit centers in customer orders, I would like the EBS to automatically deposit into the customer's account using the same profit center used when creating the customer orders. I have been researching on the use of search string, whoever am failing to see how to set this up.
    Any suggestion is greatly appreciated.
    Thanks & Regards,
    Godhelp

    Hi Shannon,
    Thanks for your response.  Here are the results of my latest test.
    I set the algorithms in both the transaction mapping and the search string allocation to "021".  FEBSTS did not find the imbedded reference numbers.
    I left the algorithms in the transaction mapping at "021", but added "000" to the search string allocation (so that both "000" and "021" were active there).  FEBSTS did execute the search strings and returned the reference numbers.
    Unless there is some magic somewhere or I am really misunderstanding something, all of my tests are telling me that the simulation (and presumably the live program) will NOT execute the search strings properly unless "000" is active in the search string functionality, and that means the document retrieval must be done in the user exit.
    This may be part of why SAP recommends that one does not use MT940, but one must deal with what one has.
    Patricia

  • Creating Bookmarks in form using JavaScript on searched string.

    Hi all,
    I am currently working on SAP Adobe Form to which I need to add bookmarks
    dynamically where the Searched string is found and this should be done during
    its Assembly. Any help is appreciated.
    Edited by: gopbhav on Jul 19, 2010 8:12 PM
    Edited by: gopbhav on Jul 19, 2010 8:28 PM

    Otto,
    We have forms created with bindings as well as document (word document) are being (merged)/populated dynamically.
    After it has been compiled I need to do a search for "string" and where the first "string" is matched I need to add a bookmark to that particular page. Bookmarks are used widely in Acrobat and there is a JavaScript to create bookmark available but the code for Adobe LC/ SAP Adobe Form is different. So I need help if someone knows how I go about do this.
    gopbhav

  • EBS-  How to map search string using wild card

    Hi Gurus
    I got two similar string on bank statement which needs to be mapped to two different posting rules.
    MV-WORLDPAY- 1805 MOTO
    MV-WORLDPAY -1805 WEB
    in above string 1805 could be any no,( it is not fix no). I have tried using different wildcards and symbols like
    +,*,?,# but it is not piciking the right posting rule, also search string use is also activated. so please guide me.
    Many Thanks
    Sam Rathod.

    Hi
    Try keeping the 1st two digits of search string as b;ank. i.e. ############ (12 digits) mapped to __##########. I used underscore to denote balnk space. Using this when you recevie say 000000001618 (12 digits), it will be mapped to 0000001618 (10 digits). Then your interpretation algo will use this 10 digit number.
    Thanks
    Nikhil

  • Blueprint shouldn't use entire lines of code as the search string.

    If I have the editor open on some MXML code, and a range of characters is selected in the editor, then invoking Blueprint uses the selected text as the search string. This seems like the right thing to do.
    However, if there is NO text selected, Blueprint uses an entire line of code as the search string (whatever line the insertion point happens to be in). I my experience this is almost always wrong, because (a) most lines of code e.g. "}" or "allPanels[1] = new LayersPanel();" or "private var allPanels : Dictionary = new Dictionary(); do not usually produce very useful search results, and (b) because these strings clutter up the search history.

    Thanks for the suggestion!
    We will reevaluate the use case for using an entire line of code as a query.
    Mira Dontcheva
    Research Scientist
    Adobe Systems

  • What is the use of search String?

    Hello there, I am trying to find the use of search string (DE01 and DE02). thanks.

    Hi,
    In your system DE01 and DE02 might be something configured for your client.
    Please check the below link to understand the logic of your search strings:-
    [http://help.sap.com/saphelp_erp2004/helpdata/en/43/0bd87b43de11d1896f0000e8322d00/frameset.htm]
    Regards,
    Gaurav

  • How to make search string for the searched text containing single quote?

    Hi all,
    When trying to search some Contacts from Eloqua, I have to make a search string which would list out some specified EmailAddress.
    Unfortunately, I meet several emails who have single quote in their spelling.
    I got 'invalid format' error when both using them directly and making single quote twice.
    Any suggestions?
    Thanks,
    Biao

    When testing, the following examples:
    GET /Api/rest/1.0/data/contacts?search=emailAddress=bm'[email protected]
    GET /Api/rest/1.0/data/contacts?search='emailAddress=bm'[email protected]'
    GET /Api/rest/1.0/data/contacts?search=emailAddress="bm'[email protected]"
    GET /Api/rest/1.0/data/contacts?search="emailAddress=bm'[email protected]"
    All return:
      "elements":
        "type":"Contact",
        "id":"1421620",
        "createdAt":"1419611518",
        "depth":"minimal",
        "name":"bm'[email protected]",
        "updatedAt":"1419611519",
        "emailAddress":"bm'[email protected]"
      "page":1,
      "pageSize":1000,
      "total":1
    Likewise, the following returns nothing:
    GET /Api/rest/1.0/data/contacts?search=emailAddress='bm'[email protected]'
    Hopefully this helps,
    Bojan

  • Highlight search string in a pl/sql report

    Hi all,
    I followed the example of QBE by Scott Spendolini. I got it working. But I am trying to add the highlight search string functionality, in the report created. The report is created from a dynamic pl/sql query. Can you give me any ideas or an example? Thank you for your time in advance,
    Rgds,
    Suma.

    Hi Suma,
    Your Search button runs a process called "RUN_REPORT". Presumably, this process picks up the values from the tabular form to construct the new SQL statement.
    Given that you don't have a normal report definition - ie one that you can use the Highlight Words option - the only other possibility is to adjust the SQL query results.
    Let's assume that you have in your RUN_REPORT process a variable called vJOB that holds the JOB value from your QBE grid. Your SQL statement could then be adjusted to something like:
    SELECT EMPNO,
    ENAME,
    '<span style="color:red">' || JOB || '</span>',
    etc
    FROM EMPTABLE
    WHERE JOB = vJOB;
    Obviously, without seeing your code, I can not say exactly how it should be constructed to highlight the word(s), but the above should give you an idea of what you need to do. If you're still not sure, can you please paste into this thread the RUN_REPORT code.
    Regards
    Andy

Maybe you are looking for

  • Connecting a mini displayport to HDMI does not work

    I recently purchased an new MacBookAir and bought a new mini diplay port to HDMI adapter. However, when I connected the port to my LED Samsung TV, only the display screen from the laptop was projected on the LED TV Screen. The icons were missing and

  • Unable to edit cash flow in Interest Rate Instrument

    Hi Experts, I am facing a strange issue while trying to change Cash Flow in Int. rate instrument. Scenario: I am trying to edit a flow in FTR_Edit and system is allowing me to change most of the flow. Please see below: But if try to change the very n

  • G4 Mirror HD expansion help

    Hi. I'm trying to figure out how much internal HD space I can install on my MAC. Right now I have 2 - 60GB HDs internally and 3 external 200GB drives. I'd like to install a 500GB drive internally but can't find out if that is doable. Or maybe even la

  • Oracle 11g zip file Checksum

    Hi, i have downloaded oracle 11g R1 zip file for linux x86.The checksum of the zip file on the download page is "302838609" However, when i find out checksum through md5sum.exe dos utility after downloading the zip file, it gives me the following che

  • Z-Table Values, can it be pulled into Sales Order?

    Dear Gurus, If i maintain values for different disocunts in Z-Tables, can it be possible to pull those values into sales order? If so, please show me the way forward... SKumar