Exchange 2010 - Archiving not working in desired situation

Hi guys!
Recently we had enabled online archiving on Exchange, the problem is that one thing is not working as we have wanted.
We wanted that user picks up manually thru Outlook 2013 client which folder he does not wishes to be moved to archive, but this is not working with our current settings.
These are the settings on server side
bostjanc

ah sorry, its retentionaction not retentiontag so here is the correct parameter
Get-RetentionPolicyTag "Don't Move this*" | Set-RetentionPolicyTag -RetentionAction
"MoveToArchive"
Blog |
Get Your Exchange Powershell Tip of the Day from here

Similar Messages

  • Exchange 2010 report not working

    Hi all,
    I'm trying to compose a mailbox size report for Exchange 2010. The output is to an html file that is automatically emailed to whoever I wish it to be. The functionality works GREAT, but the report is outputting no data. Can someone tell me why? I have multiple
    databases, but it still shouldn't output a file with NO data. Here is the script:
    #Variables to configure
    $MailServer = "my mail server"
    $ReportSender = "my email"
    $ReportRecipient = "their email"
    $MailSubject = ("Mailbox Report for " + $MailServer + " - " + ( get-date ).ToString('yyyy/MM/dd'))
    #SendEmailFunction
    Function sendEmail
    { param($smtphost,$htmlFileName)
    $smtp= New-Object System.Net.Mail.SmtpClient$smtphost
    $msg = New-Object System.Net.Mail.MailMessage $ReportSender, $ReportRecipient, $MailSubject, (Get-Content $htmlFileName)
    $msg.isBodyhtml = $true
    $smtp.send($msg)
    $exdata = Get-MailboxStatistics -Server $MailServer | Sort-Object TotalItemSize -descending | Select-Object DisplayName, ItemCount, TotalItemSize, StorageLimitStatus
    $fileName = "exchange2010Report.html"
    New-Item -ItemType file $fileName -Force
    # HTML start
    Add-Content $fileName "<html>"
    # HEAD start
    Add-Content $fileName "<head>"
    add-content $fileName '<STYLE TYPE="text/css">'
    add-content $fileName  "<!--"
    add-content $fileName  "td {"
    add-content $fileName  "font-family: Tahoma;"
    add-content $fileName  "font-size: 11px;"
    add-content $fileName  "border-top: 1px solid #999999;"
    add-content $fileName  "border-right: 1px solid #999999;"
    add-content $fileName  "border-bottom: 1px solid #999999;"
    add-content $fileName  "border-left: 1px solid #999999;"
    add-content $fileName  "padding-top: 0px;"
    add-content $fileName  "padding-right: 0px;"
    add-content $fileName  "padding-bottom: 0px;"
    add-content $fileName  "padding-left: 0px;"
    add-content $fileName  "}"
    add-content $fileName  "body {"
    add-content $fileName  "margin-left: 5px;"
    add-content $fileName  "margin-top: 5px;"
    add-content $fileName  "margin-right: 0px;"
    add-content $fileName  "margin-bottom: 10px;"
    add-content $fileName  ""
    add-content $fileName  "table {"
    add-content $fileName  "border: thin solid #000000;"
    add-content $fileName  "}"
    add-content $fileName  "-->"
    add-content $fileName  "</style>"
    # HEAD end
    Add-Content $fileName "</head>"
    # HEAD start
    Add-Content $fileName "<body>"
    # TABLE start
    Add-Content $fileName "<table width='100%'>"
    # TABLE Header
    Add-Content $fileName "<tr bgcolor='#7C7C7C'>"
    Add-Content $fileName "<td width='35%'>DisplayName</td>"
    Add-Content $fileName "<td width='10%'>ItemCount</td>"
    Add-Content $fileName "<td width='10%'>TotalItemSize</td>"
    Add-Content $fileName "<td width='25%'>Database</td>"
    Add-Content $fileName "<td width='20%'>StorageLimitStatus</td>"
    Add-Content $fileName "</tr>"
    $alternateTableRowBackground = 0
    # TABLE Content
    while($alternateTableRowBackground -le $exdata.length)
    if(($alternateTableRowBackground % 2) -eq 0)
    Add-Content $fileName "<tr bgcolor='#CCCCCC'>"
    else
    Add-Content $fileName "<tr bgcolor='#FCFCFC'>"
    Add-Content $fileName ("<td width='30%'>" + $exdata[$alternateTableRowBackground].DisplayName + "</td>")
    Add-Content $fileName ("<td width='10%'>" + $exdata[$alternateTableRowBackground].ItemCount + "</td>")
    Add-Content $fileName ("<td width='15%'>" + $exdata[$alternateTableRowBackground].TotalItemSize + "</td>")
    Add-Content $fileName ("<td width='25%'>" + $exdata[$alternateTableRowBackground].Database+ "</td>")
    #BelowLimit or NoChecking
    if(($exdata[$alternateTableRowBackground].StorageLimitStatus -eq "BelowLimit") -or ($exdata[$alternateTableRowBackground].StorageLimitStatus -eq "NoChecking"))
    Add-Content $fileName ("<td bgcolor='#007F00' width='20%'>" + $exdata[$alternateTableRowBackground].StorageLimitStatus+ "</td>")
    #IssueWarning
    if($exdata[$alternateTableRowBackground].StorageLimitStatus -eq "IssueWarning")
    Add-Content $fileName ("<td bgcolor='#7F7F00' width='20%'>" + $exdata[$alternateTableRowBackground].StorageLimitStatus+ "</td>")
    #ProhibitSend or MailboxDisabled
    if(($exdata[$alternateTableRowBackground].StorageLimitStatus -eq "ProhibitSend") -or ($exdata[$alternateTableRowBackground].StorageLimitStatus -eq "MailboxDisabled"))
    Add-Content $fileName ("<td bgcolor='#7F0000' width='20%'>" + $exdata[$alternateTableRowBackground].StorageLimitStatus+ "</td>")
    Add-Content $fileName "</tr>"
    $alternateTableRowBackground = $alternateTableRowBackground + 1
    # Summe Mailboxsize
    Add-Content $fileName "<tr bgcolor='#7C7C7C'>"
    Add-Content $fileName ("<td width='30%'></td>")
    $tempdata = MailboxStatistics -Server $MailServer | %{$_.ItemCount} | Measure-Object -Sum
    Add-Content $fileName ("<td width='10%'>" + ($tempdata | Select-Object -expand Sum) + "</td>")
    $tempdata = MailboxStatistics -Server $MailServer | %{$_.TotalItemSize.Value.ToMB()} | Measure-Object -Sum
    Add-Content $fileName ("<td width='15%'>" + ($tempdata | Select-Object -expand Sum) + " MB</td>")
    Add-Content $fileName ("<td width='25%'></td>")
    Add-Content $fileName ("<td width='20%'></td>")
    #TABLE end
    Add-Content $fileName "</table>"
    # HEAD end
    Add-Content $fileName "</body>"
    # HTML end
    Add-Content $fileName "</html>"
    sendEmail $MailServer $fileName
    Any help is appreciated. Thanks!

    You can make it simple on the HTML format...Try the below format on replacement of HTML format page..
    ## HTML PAGE FORMAT
    $a = “<style>”
    $a = $a + “BODY{background-color:Lavender;}”
    $a = $a + “TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}”
    $a = $a + “TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:Bisque}”
    $a = $a + “TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:Beige}”
    $a = $a + “</style>”
    ## HTML PAGE FORMAT
    $exdata = Get-MailboxStatistics -Server $MailServer | Sort-Object TotalItemSize -descending | Select-Object DisplayName, ItemCount, TotalItemSize, StorageLimitStatus | ConvertTo-Html -body “<h2> Mailbox Size Users List Report</h2>” -head $a |
    Set-Content c:\temp\Exchange2013UserReport.html
    Exchange Queries

  • Microsoft Exchange 2010 does not work

    I debated a long time between a Galaxy S3 and an Iphone 5. I had an Incredible and loved it. I went with the Galaxy, and it is basically unusable for my email. I just got it yesterday. I spent 2 hours on Verizon support, and the tech couldn't fix it.  I took it back to the store where they couldn't fit it either, but told me it was probably a problem with the server. Yet, the Incredible worked just fine with the same server. I get the email, but sometimes it will open when I tap on an individual email and sometimes it doesn't. Sometimes when I open the email from the home screen, it just is black. Sometimes it loads and freezes. I have been researching this on the net, and it looks like, as someone said, "there are lots of problems" about this very issue. Now I have a very expensive, new phone that does not work for me.

    Incoming Emails disappearing.   I just spent over an hour at the Verizon store.  They could not help with this issue of incoming emails disappearing. I had to explain the problem several times as she could not understand this issue.  We called Tech Support from the store who advises that Samsung is having issues with emails disappearing. I was told they were working on a fix and it should have been fixed by Dec 26. I purchased my phone prior to this date and my emails have always disappeared.  It's frustrating going from a Droix X dumbphone to something that I expect to work and it doesn't!   Otherwise the phone is great! I just need to be patient while they work on a solution which I am not.  Verizon also recommended that I call Samsung directly!

  • Just updated to my macbook pro to 10.8.2. ical not synching with my Exchange 2010 server. Worked flawlessly prior to the upgrade. Settings set to auto discover. I matched settings of a partner in my who is still using 10.7.1 without issues. Help!

    Just updated to my macbook pro to 10.8.2. ical not synching with my Exchange 2010 server. Worked flawlessly prior to the upgrade. Settings set to auto discover. I matched settings of a partner in my who is still using 10.7.1 without issues. Help!

    Also - my battery has been telling me "service battery" for a LONG time and then it switched to "replace soon" som time ago. Can't really see what this has to do with anything but whatever.
    That could conceivably explain all the problems you're describing. Replacing a Mac's battery should not be postponed since a failed battery will cause other problems to occur. It is also possible that its hard disk has failed, which means the information on it may soon become unrecoverable.
    ... my latest TM back up was from April 2014, can I just run this when I have rescued everthing and then it might not be as slow?
    If that Time Machine backup remains intact, it may be the only viable means of recovering that Mac's information. I suggest you do not attempt to restore its contents to your ailing Mac.
    Given that you are having trouble creating a newer Time Machine backup you should stop using that Mac immediately and have it serviced as soon as you are able. Do not take it to anyone other than Apple or a service facility authorized by Apple, for the very reasons you explained. If there are no Apple Stores in your vicinity search for an Authorized Apple Service Provider using the Contact Us link below. Use one of the options that appear under Contact Apple Support. The language on that page will be different for your location.

  • Outlook 2010 not showing Exchange 2010 archives, OWA does.

    We have activated Exchange 2010 archives for all users but most of them are not showing up in their Outlook, but everyone can see them in OWA.
    Office 2010 Standard - MAK licenses, 2 distinct keys
    Majority of systems are Windows XP, some Vista and 7.
    Through testing it seems to be a system problem. Using 3 test accounts I log onto various systems, some freshly reimaged, some pre-existing. The test account profiles were new to each system. Sometimes the archive folder would appear, sometimes it wouldn't,
    but it was consistent per computer. Meaning that if the folder didn't appear for 1 person, it didn't show up for anyone on that specific computer.
    Anybody know how to fix this? Am I missing a setting or registry key somewhere?
    Thank you for any help,
    Greg

    Ok, just spent some time looking into this more, if you google "office 2010 suite and version comparison guide pdf" and locate the .pdf file and open it, on page 17 under
    Managed E-Mail Folders & Retention Policy:
    "Provide a secondary location for users to store their e-mail messages and
    manage their mailbox quota with new online managed folders. Unlike localOutlook Data Files (PSTs), this information can be backed
    up and managed by Exchange Server."  - is an Office Professional Plus feature only.
    So, it would appear that we now not only have to purchase an enterprise CAL for Exchange, but Office Professional Plus as well so we can, I suspect, use the
    one extra useful feature that most sys admins wanted Exchange 2010 SP1 for in the first place, which is so centrally manage e-mails and e-mail archives.  Whilst this may not be a big deal for larger companies, educational institutes
    etc, as the sys admin for a small private business with 70 users, this extra cost hurts.  As for the lack of clarity - if you want to tie up Office versions with Exchange functionality, how about standardizing naming conventions - call the Exchange
    CALs "standard" and "professional" to match the required Office clients, or rename Office Professional to Office Enterprise - either way, match up the client apps and CALs to make it clearer.

  • Exchange 2010 Ative Sync working fine but when i do the test-ActiveSyncConnectivity it gives Error

    Exchange 2010 Ative Sync working fine but when i do the test-ActiveSyncConnectivity it gives Error my internal and external domains are different i have godaddy certificate and i have redirected HTTP to HTTPS for OWA, but when i run the test-ActiveSyncConnectivity
    https://mail.mycompany.com/Microsoft-System-ActiveSync it gives me error unable to connect to remote server, the connected party did not respond after a period of time because connected server failed to respond 67.57.66.23:443 
    From outside owa and activesync is working but my outlook 2007 SP2 shows disconnect every 25 minutes and then connected again when i see windows evenyviewer i am getting error that CAS Server failed to connect to mailbox server. Later it disconnected for
    60 seconds, I think thats when outlook gives disconnect error to all users
    Your quick help is really appreciated

    Hi,
    Hope below KB will help you for resolution the issue
    http://support.microsoft.com/kb/2469722
    http://www.wiki-errors.com/err.php?wiki=443
    Dinesh S.

  • Office 2013 Auto Archiving not working

    Dear Sir / Madam,
    We are using MS OFFICE 2013 with Windows 8.
    Problem we face is Auto Archiving not working at all. We have defined all the parameters, still it is not working. We are using Exchange Server and all the emails are Archived to local PST files after a defined time period.
    We have defined all the steps required to do Auto Archiving.
    Your help is required in this since we have tried all the options.
    Paloli Manoj

    Hi,
    What's the size or your archive.pst file? Please first make sure it's not getting close to 50 GB limit.
    If the size far below 50 GB, please try to use the Inbox Repair tool to scan and repair the archive.pst file. If the file is corrupt, the autoarchive will not happen.
    http://office.microsoft.com/en-in/outlook-help/repair-outlook-data-files-pst-and-ost-HA102749454.aspx?CTT=1
    For more troubleshooting steps, please refer to this:
    http://www.howto-outlook.com/faq/archivenotworking.htm
    Regards,
    Steve Fan
    TechNet Community Support

  • Adobe Exchange Panel Update not working?

    Hello:
    My OS is Windows 7 64 bit and I have Ps and Ia installed on my laptop.
    I downloaded and installed the Adobe Exchange roughly two months ago and everything worked great at first.
    I installed a few things such as the Paper Textures and a game Level Up (can't recall the others at the moment).
    The game worked three times but then it just stopped responding. I never had an issue with the other extensions.
    Yesterday I went to try out the game again but when i opened the Exchange panel it said there was a new update and so i (sadly) opted to click 'Update'
    After clicking the update button I received a message:
    Also, Norton said the link or what have ya was NOT trusted and is Unknown. So, I clicked on the Norton message and got this info:
    Heuristic virus? um, what?  
    http://www.pctools.com/security-news/heuristic-virus-definition/
    I went ahead and Removed all the extensions I had downloaded/installed from the Exchange panel but I would very much like to be able to use them again.
    Any ideas as to the issue? Is there a solution?
    I have shut off Norton to see if that would work but I still get the above message  "... valid signature ... "
    Sure would appreciate some input.
    Thank you in advance
    ps. could the Heuristic virus detection be a False Positive?

    Hello:
     You are totally misunderstanding me. I have Windows 7 64 bit and I did have the Exchange Panel already installed. When I went to use the Exchange PanelIT had an update. I didNOT update to Windows 8.
    I clicked on the UPDATE IN the Exchange Panel which is what would NOT install because NORTON said it IS MALWARE.
    I tried to update the Exchange Panel and NOT my operating system.
    The attempt to Update the Exchange Panel caused the older version of the Exchange Panel to not work. So, I had to Uninstall the Exchange Panel and then when I went to Reinstall the Exchange Panel it would NOT install. And now I cannot use it at all.
    Again, I DO have Windows 7 and NOT Windows 8.
    Please, I would very much like to be able to use the Exchange Panel again because I would like to install some extensions, let me know when this issue is resolved.
    Thank You,
    Kara A. Rowe
    [email protected]

  • Exporting from PDF to Word 2010 is not working in Acrobat 8

    Exporting from PDF to Word 2010 is not working in Acrobat 8.  I'm getting the following errors/messages.  Any suggestions?
    The instruction at “0x29034c05” referenced memory at “0x0000030”. The memory could not be “written”.
    Click OK to terminate the program 
    Click onCANCEL to debug the program
    Runtime Error!
    Program: C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe
    R6025
    -pure virtual function call

    Not supported by Acrobat 8. Supported by Acrobat X.
    Be well...

  • Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out

    Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out because it cost me to high and if this is not activated i have to bear a huge loss.i am a loyal customer of apple from a past 5 years.thank you for your cooperation

    Yes, this is activation lock. Return the phone for a refund, as it is useless without the activation information of the previous owner.

  • [svn:cairngorm3:] 21174: Landmark does not work under complex situations

    Revision: 21174
    Revision: 21174
    Author:   [email protected]
    Date:     2011-04-29 11:21:00 -0700 (Fri, 29 Apr 2011)
    Log Message:
    Landmark does not work under complex situations
    https://bugs.adobe.com/jira/browse/CGM-39
    Ticket Links:
        http://bugs.adobe.com/jira/browse/CGM-39
    Modified Paths:
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/core/EnterAndExi tInvoker.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/waypoint/Waypoin tHandler.as

    Hi John,
    1) I like that the new model adds parameterization. It's cleaner than pulling in parameters from pre-set variables. However, the given example didn't actually make much use of it. The only non-constant parameter multiply-used in the example is the "table" variable. Seems like a lot of work for not a lot of gain, at least in this case?
    2) I am cautious that this new template/model condenses the paradigm sooo much, that it is no longer clear where XPath is involved vs straight constant tag names. Yes, Adobe's example is overly-expanded but that's common in code meant to be a demonstration.
    3) I also am cautious that the example intermingles direct node creation into the XPath search/processing chain. I've learned to be VERY careful with this. It only can work when the changes made do not interfere with the rule processing. In my model, I simply avoid it completely (by not making node-position or node-add/remove/move changes until after tree parsing is complete.) This will always be a safe model.
    Bottom line: while I very much appreciate the parameterization and lintability (is that a word? Sure makes sense to me )... I think I would still define each rule separately rather than bring them all together as an inline array in the rule processing call. To me it seems sooo condensed that the XPath meaning can become lost. (Would someone recognize that //para/section-head is actually an XPath statement that could (in another situation) be //para/* or //para/following-siblings::* ... while some of the other strings are exact-match tag names?)
    I realize this is all a matter of style... my preference: clarity for the future reader, particularly when the future reader is me a year later who forgot what all those parameters and embedded methods were all about ...
    Blessings,
    Pete

  • Exchange 2010 calendar not showing on outlook 11 Mac

    Exchange 2010 calendar not showing on Outlook 11 Mac on my iMac. It shows fine on iPhone and OWA. 

    Since this question is about a Microsoft product, you might have more luck getting suggestions if you ask in Microsoft's own forums.
    Regards.

  • Exchange 2010 - iPhone will work in Wifi but not ATT 3g

    Hello Everyone,
    This is my first time posting, but I'm desparate!
    I have an Exchange 2010 environment at our CoLo (not on site). I can connect to it on my iPhone 4 on ANY wifi network (home, work, etc), but if I connect to it via ATT 3g - no dice. I'm pretty sure it's a DNS issue, but there's no way for me to see what ATT DNS servers are returning. Anyone else have this problem? Does anyone know how long ATT caches DNS queries? Thanks in advance!
    EDIT: It's totally DNS. I cannot hit OWA in safari either while on ATT, but again it works on WIFI everywhere. I setup DNS a little less than 24 hours ago, so I'm surprised that ATT is still having issues with it... Now I wonder if I can call ATT and see if they can flush the cached queries >.<

    EDIT 2: Of course ATT was useless. Tried to transfer me away from them (to Apple and even Microsoft lol). I guess it's just a waiting game to see if their DNS servers get with the program...

  • KB953804 for delegatesentitemsstyle in Outlook 2003 in combination with Exchange Server 2010 SP1 not working.

    KB953804 Full  title  "Hotfix for An e-mail message does not appear in a user's mailbox if the e-mail message was sent on behalf of the user by a delegate in Outlook 2003." 
    We have this working for ok Outlook 2003 SP3 in combination with Exchange Server 2003 SP2.  Now for mailboxes that are moved to our new Exchange 2010 environment the hotfix stopped working. The sent items get stuck in the outbox of the delegate instead
    of moving to the user in whose name the mail was sent. It does not matter if the user mailbox is on 2003 or 2010 as long as the delegated user is on Exchange 2010 SP1 it fails. We use Outlook 2003 SP3 in online mode.  Does anyone know how to fix this
    or maybe someone knows an alternative way to move the mails to the sent items with Exchange2010 SP1.

    Hi,
    I'd like to know how did you set "send on behalf",from outlook give delegation permission or from Exchange Server give "send as" right?
    Please try to use get-adpermission to verify if the user has "send as" right.
    Manage Send As Permissions for a Mailbox
    http://technet.microsoft.com/en-us/library/bb676368.aspx
    Note: After you grant send as right, please try to restart Microsoft Information Store.
    By the way, do you receive any NDR or error information when you send on behalf of others?
    Xiu

  • Exchange 2013 autodiscover not working from Externally

    Hi 
    i have exchange 2010 sp3(2Mb, 2hub/cas). I installed exchange 2013 servers(2MB, 2CAS). For coexistence i generated new certifcate with new cas from third party. I installed that certificate in that cas and assigned all services. i changed all my virtual
    directories service url. I didnt import the new certificate to exchange 2010 cas server and i didnt change url to legacy link.But still iam able to check exchange 2010 user mailbox owa, activesync and autodiscover without any certificate error. 
    If i try to browse owa, its going to 2013 server, if user is exchange 2010 user and its redirecting to exchange 2010 owa with same link.
    But i dont know how above things is working without importing to new certificate...
    Main problem is i am not able to configure exchange 2013 users outlookanywhere, Autodiscover from externally...
    So in tmg i pointed the outlook anywhere ip address new cas server, now both exchange 2010 and exchange 2013 users while OA from external, its keep on asking password... Not accepting it...
    Please help me to fix this issue..

    Hi ,
    On TMG please have the outlook anywhere rule like below and check the status.
    Step
    1 :
    On the TMG rule - >authentication delegation ---> select the option "no delegation users can authenticate directly"
    Step
    2 :
    on the users tab in the TMG rule - just add "all users" group on that rule.
    By having the above settings we have avoided the issues in your environment.
    Note : Based on the above setting's , Each and everyone in exchange will have a access to the outlook anywhere from external world , because there would not be having any restriction on the TMG rules.
    Please have a look in to the below link , it will give you some ideas which is related to TMG
    http://blogs.technet.com/b/exchange/archive/2012/11/21/publishing-exchange-server-2013-using-tmg.aspx
    Thanks & Regards S.Nithyanandham

Maybe you are looking for

  • I want to create an e-paper from PDF-files?

    I have a few folders/papers in PDF that we print and give away. I want these PDFs to be on the internet and that people can look threw them like a normal paper, only digital. Is this possible in Flash? I want it like this: http://www.mypaper.se/about

  • Photo booth crashes when I try to share photos

    There's a share button on Photo booth that has options as to where I can share my selected photos, it used to work fine and suddenly it froze one time, leaving the selected photos floating on my desktop even after force quitting? The photos disappear

  • Trying to download the latest version on my windows laptop

    Download/loading of latest version appears to be getting "stuck"!!!!!!!!!!!

  • Purchase put on wrong MyBestBuy account

    Hello, I have two accounts currently due to an attempt to create a new log-in for bestbuy.com when my previous one stopped working. Recently a rather large purchase was accidentally put on the wrong account, not only am I missing out on my Elite Plus

  • FF67 - Manual Bank Statement, what is Customer matchcode  (sel.)?

    Hi Expert, In FF67 manual banks statement customization, we have a field called customer matchcode  (sel.) (FEBMKK-KUNNR_MC) under the Define Variants for Manual Bank Statement (OT43). Questions: Could anyone highlight me what is the customer matchco