Matching functionality

Dear All,
Could it be possible to apply this statement in B1 :
The system has a module to match payments against open invoices
The invoice matching functionality allows lookup:
   a. by invoice number
   b. by sales order number
   c. by customer name
   d. by customer number
   e. by customer PO number
   f. by tax invoice number
Pls give advice. Thanks
Edu

Hi Edu,
Yes we have this functionality in B1. It is called Internal Reconciliation.
The internal reconciliation functionality enables you to internally reconcile transactions created for business partners or for G/L accounts. You can perform manual, semi automatic or automatic internal reconciliation. In addition you can reconcile transactions created for more than one business partners.
In the Reconciliation Selection Criteria window, you should be able to define:
- Reconcile for BP or for G/L account
- Reconcile for which BP/ GL account. You are allowed to choose BP Code, BP Name, G/L account Code or G/L account Name here.
- Credit Side Date From...To ... Only the credit side of transactions within the date range you define will be reconciled.
- Debit Side Date From...To... Only the debit side of transactions within the date range you define will be reconciled.
- Display Transaction Reconciled by System: Select to view transactions that were reconciled automatically by SAP Business One, such as incoming payments based on invoices.
However, it is not possible in the current system to filter by document number in Internal Reconciliation window.
Hope this will be helpful.
Regards, Summer
Edited by: Summer Ding on Jul 2, 2008 4:06 AM

Similar Messages

  • Using Match function in FR Reports

    Hi,
    Can anyone pls. let me know how i can use Match function in FR ? I've a Report where i'm using 2 Grids. In one Grid1 i'm using Entity under page and ICP dimension as Column. In Grid2, i'm using ICP under page and would like to use Match function where the condition is, if i select ICP member from Page, it should show the corresponding Entities in Grid1
    Thanks,
    PVR

    I don't think what your trying to do is available "out of the box", we have used a workaround to do what you want:
    - include idescendants for the member but apply suppression on the member names that ended in rollup.
    (we were lucky in that the parent members were standardized to contain rollup as the description name).
    Cheers, Iain

  • MATCH function support

    Hi
    I am having problems with the match function
    Basically I am using it to find the first and last position of a value in a range.
    =MATCH(B1,D5:D30,0)
    works fine to return the first value, but
    =MATCH(B1,D5:D30,1)
    to find the last value only works in the spreadsheet, not in the SWF.
    Anyone got any ideas?

    Ok, just be aware that countif can be a hit on performance so I would recommend only using it on small data sets.
    As for who to request this, thats a good question, you could raise a ticket with SAP via your Account rep, but other than placing the issue on here, I really don't know
    I'll check version 5.2 and 5.3 this evening an post the results on here.  Which version are you using?
    Edit:
    Version 5.2.0 and 5.3.0 have the same behaviour.
    Edited by: Charles Davies on Feb 1, 2010 6:36 PM

  • I just subscribed to imatch while logged in to iTunes on a mac computer that belongs to someone else. (I was logged in to MY iTunes)  my iPhone will not turn on the MATCH function, saying I am no subscribed. I've powered off and on.  can anyone help?

    I just subscribed to imatch while logged in to iTunes on a mac computer that belongs to someone else. (I was logged in to MY iTunes)  my iPhone will not turn on the MATCH function, saying I am no subscribed. I've powered off and on.  can anyone help?

    Hi,
    I am having the same problem. Itunes reports that it's uploaded all the music etc.
    When I turn the match function on, it says "you are not currently subscribed to itunes match".
    I have restarted the phone and coputer, logged in & out several times to no avail.
    Any ideas or suggestions?

  • Regex matches function

    Hi
    I am trying to come up with a regex that I can use with the matches function to validate the user id I accept. The user id can contain alphabets, numbers and 3 special chars ".","-" and "#".
    The regex I came up with was: user_id.matches("[a-zA-Z\\d\\.\\-#]"). The string I am trying to match is 'user-1'. But this fails to match.
    I am not confident about the regex I am using to match my string to. Please let me know what I am doing wrong.
    Thanks

    I would use '+' rather than '*'; I doubt that an empty string would be considered a valid user ID. ^_^   String regex = "[a-zA-Z0-9#.-]+";

  • HT204406 help! cannot perform Itunes Match function

    I've owned a iMac for 2 years. Itunes match function used to perform correctly, until about a month ago. My softwares are up to date, including Lion I just installed successfully. Itunes version is the latest.
    When I try to perform Itunes match: Step 1 completes correctly, but NOT step 2. Step 2 stops, then loops back into step 1, and again and again ( loop..)
    Makes me a little sad...
    Anyone to help?

    never mind...just needed to restart the phone...seems to be working now...

  • Improve MATCH() function speed

    I am using a match() function to compare email addresses, looking for matchs of new emails to old. Old emails are in a data set of approx 40k and new emails total 16k. The process takes more than an hour. How might I improve on this performance? Is MATCH the best function to use?
    Thanks
    Kevin

    Hi Kevin,
    Do you need to know where the matching addresses are in the 'old' table, or would knowing whether an address in the 'new' list is matched one or more times in the 'old' list be sufficient?
    If the latter, here's a method that may do the job. I've assumed the 'old' table ("Table 1") has the addresses listed in column C, the 'new' table (Table 2) has them in column D, and that there is one header row on each table
    Add a column to the right of column D in the 'new' table. It will become Column E.
    In E2, enter this formula:
    =COUNTIF(Table 1::$C,D)
    Copy cell E2, click on the column reference tab for column E to select the while column, then command-click on E1 to remove it from the selection.
    Paste.
    The formula will be pasted into every cell in Table 2::E.
    Calculation time will depend on the number of rows in Table 1 and the number of addresses in Table 2.
    Any row with a result in column E of 1 or more contains a duplicate (or more than one duplicate) of the address in the cell to its left. Addresses with zeroes to their right are unduplicated in the 'old' table.
    Regards,
    Barry

  • @Match Function Usage

    Hi All,
    I am trying to use the @Match function within Datacopy but it gives me an error. Here is my code. Any help is appreciated.
    FIX (No_GEO, Plan, Functional)
    Datacopy @Match(Entity, "CC_????_S") TO @Match(Entity, "CC_????");
    ENDFIX

    A syntax issue -- you're not going to be able to use the @MATCH function on the left hand side of the equal side.
    Here's the formula you need:
    FIX(everything you listed in all of your FIXes bar Plan and Entity)
    FIX(@MATCH("Entity", "CC_????"))
    "Plan" = @MEMBER(@CONCATENATE(@NAME(@CURRMBR("Entity")), "_S")) ;
    ENDFIX
    ENDFIX
    This formula:
    1) Selects the current member in the Entity dimension through @CURRMBR
    2) Makes #1 a text string with @NAME
    3) Concatenates the _S
    4) Turns #3 into a member name with @MEMBER
    5) Assigns the value to the Plan Scenario
    The FIX around the members is so that just the CC_???? members get impacted.
    Regards,
    Cameron Lackpour

  • Pattern Matching functions in DP Macro

    Folks,
    Can anyone tell me if there are any pattern matching functions in DP Macros? Here is the requirement:
    If the time bucket is a quarter, then hide some rows. If the time bucket is  a month or something finer, then show the same row. Assume that all the time buckets in the data view will be the same (no telescoping buckets profile)
    So, suppose that I use BUCKET_DESCRIPTION and get the name of the bucket. If it is Q.* (using pattern matching lingo here), then I would like to set the row attributes accordingly. If it is M.* then set the row attributes to visible.
    Can you please throw some light on this? Would you do it some other way?
    Thanks,
    Satish

    Hi,
    You may try with the macro function BUCKET_DAYS(). This will find number of days in a given bucket.
    Then you can write condition, If bucket days is more than 1 and less than 7, then it is weekly.
    If bucket days is more than 7, then it is monthly.
    Please see if it is helpful for you.
    Regards,
    Manimaran M.

  • Regular exression for matching function declarations or calls

    Hi guys,
    I used a regular expression like \\w + (\\s*) \\( .*\\) (\\s*) [\\{;] to match function
    declarations.This regular expression works fine for all the declarations of the form init_queue(TREE **NODE) {  and even for declarations of the form
    init_queue (TREE **NODE)
    But the problem occurs when i have a declaration of the form
    init_queue(TREE **NODE ,
    int size ) {
    when i have a declaration of this form my regular expression doesnt parse function names.The regular expression . (DOT) means it recognizes anything except for line terminators.So i used the DOTALL option in pattern matching so that .(DOT) matches even line terminators.But using this has a negative effect like i am not able to match declarations of the form
    init_queue(TREE **NODE) { 
    can anyone help me out in solving this
    Thank you,
    Akash

    multipost: http://forum.java.sun.com/thread.jspa?threadID=5168705

  • Variant Matching - Function module to obtain material no from Char Values

    Hi,
    We are not using standard functionality.
    We have a set of characteristic names & values. Our aim is to fetch material number from these. (Variant matching part of CU50)
    We have tried debugging but in vain.
    In the MRP 3 view of these material masters, characteristic values are maintained (under configurable material)
    Please suggest some function modules or table names for fetching material number from characteristics.
    Regards,
    Mahesh Patil

    Hi Mahesh ,
    try out below functional module , may be its of your use.
    CAVC_C_TYPE_MATCHING
    regards
    Ritesh

  • Producing warnings when cvi function parameters do not match function prototypes

    Is there a function prototype in cvi code which would generate an error/
    warning that my parameters do not match those of the function prototype. I
    am using MSVC 6 for development.
    Ed Manlove
    [email protected]

    There is a parameter in the Options>>Build Options menu that do that : check "Require fonctions prototype".
    I think that a function can't do that because you have to check that during the compilation. If you want to check parameters at the run time ( like , scanf function ) you have to do by yourself inside the function.

  • Downloading selected playlists to phone, but keeping iTunes Match functionality?

    I did look around for the answer to this, but found nothing that answered the question specifically. 
    I have an extensive music collection by most standards.  It's about 180gb and "weeded" out to eliminate the bad songs.  I have it organized into playlists that I listen to almost exclusively, as the collection is too large to just hunt and find stuff when you just want to hear music.  I essentially do a genius playlist and save it as a new one to listen to. 
    I travel a lot to places without cell service, and that is where I listen to music essentially 100% of the time.  Out on the river on a boat for example.  iTunes match is horrible for this, as I found out the first try, and had to dig out CD's to get me through the trip. 
    I have paid for iTunes match, and listen to iTunes Radio primarily at the house every day streaming from the phone.  Works great.  Because of the lack of coverage though, I need to download my music onto the phone and keep it there, which has required me to shut off iTunes Match on phone.  This turns the radio into a commercial machine though.  Even though I own iTunes Match, if I don't have it enabled on the phone, it acts like I don't have it and I get commercials. Weak. 
    Lastly, I have downloaded the music onto my phone, turned on iTunes Match once downloaded (someone elses solution) and it deleted it as soon as I synced my phone again
    How do I download say 50gb of music onto my phone and have it not delete it as soon as it syncs again? 

    There are two methods to get large amounts of music onto your iPhone.
    1. Turn off iTunes Match, sync the music via USB, then re-enable the service. The music shouldn't actually be deleted. The service isn't supposed to work that way.
    2. Download the playlist to your iPhone via Wi Fi while on your home network.

  • Usage of the xp20:matches() - String  function -reg

    Hi,
    Our current requirement is that if we receive the message that matches the pattern (Ie input starting with A to L) both inclusive(for eg : A123 , B567,... ,L890),we need to perform some routing in the mediator depending upon the message. I have tried to make use of the xp20:matches() function for checking the input, as per the dev guide.
    Sample code used in filter expression in mediator:
    <condition language="xpath">
    <expression>xpath20:matches($in.request/cb1:singleString/cb1:input,'^[A-L]*$')</expression>
    </condition>
    Is there anything wrong in the usage of the matches function, as there seems to be some issues in the filter expression.
    All the other logical functions and Startswith function seems to work well.
    Any pointers would help.
    Thanks
    Swathy

    Hi there,
    If you want to match any word which starts with A-L character then use ^[A-L]
    If you want to have exactly three numbers after first character (and nothing more) use ^[A-L][0-9]{3}$
    Regards,
    Milan
    Edited by: 849823 on Apr 5, 2011 12:59 AM

  • Question for GR IR functionality - audit requirement (three-way) match

    Hello,
    I have a question in regards to three way match functionality in SAP (matching of PO, GR and IR).  Auditors asked us if  GR-IV indicator is checked for every PO, and for our company this indicator cannot be checked for every PO due to drop shipments, LC terms, etc.  However, AP is ensuring that GR document is posted prior to posting IR for all POs.  In this case, even though GR-IV indicator is not checked at PO item level, does SAP enforce automatic three way matching based on the tolerance key set (DQ and PP), or does SAP not perform three way match since the GR-IV indicator was not set in the first place? 
    Please share some insight.  Thank you.  

    Hi,
    As you know three ways match related to PO-GR-IV but in your case you want pay drop shipments and LC terms to vendor where you need two way match which is with PO-IV. The disadvantage in two way match, you never know whether the whole PO amount is delivered or not in your system (in real scenario). For two way match, select those vendors in t.code:XK02 and do not select check box of “GR-Based Inv. Verif.” in Control data segment in Purchasing data view & then save.
    Now create a new PO and go for directly invoice verification WRT new PO.
    For more refer threeway match details
    SAP Threeway Match Functionality & configuration
    Regards,
    Biju K

Maybe you are looking for

  • Voice Mail Icon Won't Go Away!

    Hello All: I have a Z30 and I have 10.2.1.3062.  I was left a voice mail a while ago and after listening to it the first time, I saved it and listened to it again 3 days later. After that I deleted the saved message. However, the voice mail notificat

  • Color picker for text in Mac OS X Lion Mail is not working properly

    I found a bug in Mac OSX Lion Mail program. I tried it on 3 different machines and they all act the same. When you compose a new message in mail and you change the color of the text to another color than black with the color picker, the text changes

  • Has anyone heard of a bent iPhone? My 32GB iPhone4 is bent.

    Glass is straight, no damage to it on either side at all; the aluminum's bent. When looking at phone in your hand as if you were using it, it's bent at the upper L corner. It wasn't sat upon, dropped, nothing. I plugged it in to charge it before I we

  • Trading in Mac Desktop for Macbook Air

    Does anyone have experience with Apple's recycling/buy back program?  I purchased a Mac desktop about a year and a half ago and am looking to sell it and purchase a Macbook Air in its place.  The desktop is in immaculate condition.  My family rarely

  • Plain Text Warning with Notes

    Whenever I write a note in Mail and I attempt to add a To-Do, change the font, or add any amount of formatting to it, I get a dialog that says: "Convert this note to rich text format? Changing the style or formatting requires that this note be conver