Term of payment does not exist in target system

Hi Gurus,
Scenario: Classic, Self service procurment.
I made a shopping cart with my requirements.
PR and PO created in the backend system.
Posted the GR in SRM....and got the message of posted in the backend.
Posted the invoice in the SRM and message creation completed and found that it has not been posted in the backend (checked the PO history).
The message found in SRM SLG1...."Term of payment does not exist in target system" for that.
Checked the vendor conditions and found that terms of payment exist in the backend system for that vendor.
What could be the problem and how to resolve this issue?
Thanks in advance
SG
Message was edited by:
        SRMGUY

Hi,
I am new to SRM.
We have created new payment term in ECC and replicated to SRM using BBP_UPLOAD_PAYMENT_TERMS. We are able to see in table BBP_PAYTERM and BBP_PAYMENT_TEXT.
But the non of the payment terms are reflecting into PO in SRM after this.
I am able to see the payment term in backend in BBP_PD. I am getting the below warning message when I click on Check Button.
'Term of payment does not exist in the target system'.
What could be the problem and how to resolve it?
Thanks in advance.
Best Regards,
Siddappa

Similar Messages

  • Idoc INVOIC error Baseline date for payment does not exist

    Dear All,
    I am facing the following error message when processing an idoc to do an MM invoice reception (operation similar to a MIRO).
    The payment term is correctly maintained in the purchase order.
    Idoc message type INVOIC MM.
    Baseline date for payment does not exist
    Message no. M8356
    Diagnosis
    You have tried to post a document without a baseline date for payment.
    The system will not allow you to do this.
    Check the purchase order. No terms of payment have been entered in the document header or no suggestion has been defined in Customizing for the baseline date for payment for the terms of payment entered.
    If you get the error message during automatic settlement of planned delivery costs, maintain the term of payment in the master record (Payment Transactions, Financial Accounting) for the freight vendor or use the Business Add-In MRM_ERS_HDAT_MODIFY to determine the term of payment.
    Regards
    Arnaud

    Hello,
    Date for starting the calculation of the baseline date is indeed managed in the TC OME2 (document date, posting date, etc..).
    In my project, there is already some companies using payment term N60N, so it should be possible to continue using it.
    I solved this issue by putting a payment term in the vendors master data (company & purchasing views) and also in the customers views (company / sales orga) otherwise the structure of the idoc is different.
    Thanks anyway for your input.
    Keep in touch.
    Regards
    Arnaud

  • Segment Builder: 'Business partner does not exist in target group'

    After having built a target group in the segment builder the following error message occurs: 'Business partner does not exist in target group'. What is meant by this error message and what has caused this error?

    Hi Mahesh,
    Are data sources based in infoset¿? If the are based in infoset u can do simple queries.
    I create infoset in t-code 'SQ02', once the infoset has been created u can go to 'Enviroment' --> Queries, and here u can created simple queries based in the infoset. With this tool u can check if this infoset has been created sucessfully.
    Hope it helps u.
    Regards,
    Mon

  • Cannot drop the table because it does not exist in the system catalog. Transaction context in use by another session

    Hi Every one,
    An error has occurred during report processing. (rsProcessingAborted)
    Get Online Help
    Query execution failed for data set 'NonFinTran'. (rsErrorExecutingCommand)
    Get Online Help
    Cannot drop the table '#NonFinTran', because it does not exist in the system catalog. Cannot drop the table '#MultipleNonFinTran',
    because it does not exist in the system catalog. Transaction context in use by another session.
    NOTE: NonFinTran &
    MultipleNonFinTran are
    the Temp table in my storedPoc.
    Please any help me to solve this issue. 
    Thanks & Regards,
    Anil Kumar
    Anil Kumar

    Hi Harsh,
     Below is my Stored Proc
    SELECT @ServerName=datasource from master.dbo.sysservers WHERE catalog='Voyager'    
     SELECT @ServerName3=datasource from master.dbo.sysservers WHERE catalog='AuditLog'    
     SELECT @ServerName2=datasource from master.dbo.sysservers WHERE catalog='Portal'    
     IF @ServerName IS NOT NULL SET @ServerName='[' + @ServerName + '].' ELSE SET @ServerName=''    
     IF @ServerName3 IS NOT NULL SET @ServerName3='[' + @ServerName3 + '].' ELSE SET @ServerName3=''    
     IF @ServerName2 IS NOT NULL SET @ServerName2='[' + @ServerName2 + '].' ELSE SET @ServerName2=''    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
      DROP TABLE #NonFinTran    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
      DROP TABLE #MultipleNonFinTran    
     CREATE TABLE #NonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
       Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
       BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))    
     CREATE TABLE #MultipleNonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
       Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
       BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))     
    INSERT #NonFinTran    
     EXEC('SELECT FirstName, TaxID,     
      TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, DateTime, '''', '''', '''', ''''    
     FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
     WHERE CCUser.UserID = Audit.UserID     
      AND Audit.Succeeded = 1     
      AND Audit.TrxID IN (''ChangeBillPayDefaultAccountEdit'',''ChangeExpiryUserPassword'',''ChangePasswordEdit'',    
       ''ChangeUserPassword'',''ManageAddressMaint'',''ManageContactMaint'',''ManageSecretQuestionAnswerEdit'',    
       ''ManageTransLimitMaint'',''OtherBankAccountMaintAdd'',''OtherBankAccountMaintDelete'',''OtherBankAccountMaintEdit'',    
       ''WithinAmBankAccountMaintAdd'',''WithinAmBankAccountMaintDelete'',''WithinAmBankAccountMaintEdit'',    
       ''SetAccountMaskPreferenceAudit'',''ChangeLoginIdAudit'')     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')    
     INSERT #MultipleNonFinTran    
     EXEC('SELECT DISTINCT FirstName, TaxID,     
      TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, Audit.DateTime as AuditDateTime,    
    (SELECT DISTINCT SUBSTRING(A.BranchCode,3,3)  FROM ' + @ServerName + 'AuditLog.dbo.CCAuditLogEntryView X INNER JOIN ' + @ServerName + 'Voyager.dbo.CCuser U
    ON X.UserId = U.UserId INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_CustomerProfile P ON P.EnrolId = U.TAXID 
    INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_AccountListing A ON A.CIFNO = P.CIFNO
    WHERE X.UserId = Audit.UserId AND A.AccountNo = SUBSTRING(Audit.TrxField1,11,16) AND P.CIFNO = A.CIFNO
    AND (SUBSTRING(A.BranchCode,3,3) <> NULL OR SUBSTRING(A.BranchCode,3,3) <> '''')
    AND CHARINDEX(''AccountID='', Audit.TrxField1, 1) > 0),
      SUBSTRING(TrxField1,14,1), CASE WHEN CHARINDEX(''AccountID='', TrxField1, 1) > 0 THEN     
      SUBSTRING(TrxField1,11,16) ELSE '''' END, CASE WHEN CHARINDEX(''AccountType='', TrxField2, 1) > 0 THEN SUBSTRING(TrxField2,13,3) ELSE '''' END    
     FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
     WHERE CCUser.UserID = Audit.UserID     
      AND Audit.Succeeded = 1     
      AND Audit.TrxID IN (''SetAccountAttributesAudit'',''SetAccountFriendlyNameAudit'',    
      ''AccountProfileMaintULDelete'',''AccountProfileMaintLHAAdd'',''AccountProfileMaintLSCAdd'')
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')  
      SET @stmt = '    
     SELECT * FROM    
     SELECT BranchName,
     CASE WHEN SUBSTRING(FromAccountID,1,6) IN (''519901'',''559409'')  THEN ''DC''  
    ELSE       
     CASE FromAccountType WHEN ''01'' THEN ''SA '' WHEN ''02'' THEN ''CA '' WHEN ''03'' THEN ''FD ''     
        WHEN ''SA'' THEN ''SA '' WHEN ''CA'' THEN ''CA '' WHEN ''FD'' THEN ''FD '' ELSE FromAccountType + '' ''    
     END 
     END +     
    case when Len(FromAccountID) =16 Then  
       CASE FromAccountType WHEN ''VC'' THEN   
       SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)      
    WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)  END  
         when Len(FromAccountID) =15 Then 
    CASE FromAccountType WHEN ''VC'' THEN   
       SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)      
    WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)  END  
         ELSE FromAccountID   
    ENd  
     AS FromAcctNo,    
     CASE TrxId  
     WHEN ''AccountProfileMaintLHAAdd'' THEN ''Link Account/Card''    
     WHEN ''AccountProfileMaintLSCAdd'' THEN ''Link Account/Card''    
     WHEN ''APMFamilyFirstAdd'' THEN ''Link Family First Account''    
     WHEN ''AccountProfileMaintULDelete'' THEN ''Unlink Account/Card''    
     WHEN ''BalInqFD'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE ''Fixed Deposit Balance Inquiry'' END  
     WHEN ''BalInqCASA'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE
         CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Balance Inquiry'' 
        ELSE ''Current Account Balance Inquiry'' 
       END 
      END    
     WHEN ''StopCheck'' THEN ''Stop Cheque Request''    
     WHEN ''CheckReorder'' THEN ''Order Your Cheque''    
     WHEN ''CheckInquiry'' THEN ''Cheque Inquiry''    
     WHEN ''TransHistFD'' THEN ''Fixed Deposit Transaction History''    
     WHEN ''TransHistCASA'' THEN    
      CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Transaction History'' ELSE ''Current Account Transaction History'' END    
     WHEN ''StmtInqCC'' THEN    
      CASE WHEN FromAccountType IN (''DR'',''03'') THEN ''Debit Card Statement Inquiry'' ELSE ''Credit Card Statement Inquiry'' END    
     WHEN ''StmtInqDA'' THEN    
      CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Statement Inquiry'' ELSE ''Current Account Statement Inquiry'' END    
     WHEN ''StmtReq'' THEN ''Printed Statement Request''    
     WHEN ''StmtInqIAMSTAR'' THEN ''E-AMSTAR Statement Inquiry''    
     WHEN ''Repayment/Transfer Inquiry'' THEN ''Repayment/Transfer Inquiry''    
     WHEN ''Account Inquiry'' THEN ''Account Inquiry''    
     WHEN ''Payment Inquiry'' THEN ''Payment Inquiry''    
     END AS TransType,    
     FirstName AS CustomerName,    
     TaxId, CONVERT(VARCHAR, DateTime, 103) AS Date, CONVERT(VARCHAR, DateTime, 108) AS Time    
     FROM #NonFinTran, ' + @ServerName3 + 'Portal.dbo.TB_Branch AS TB_Branch    
     WHERE     
     BranchId = TB_Branch.BranchCode     
     AND (TB_Branch.InstCode IN (''00001'', ''00003'',''001'',''002''))    
     AND (FromAccountType IN (''SA'', ''CA'', ''FD'', ''01'', ''02'', ''03'')))'    
    EXEC (@stmt)
    IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
     DROP TABLE #NonFinTran    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
      DROP TABLE #MultipleNonFinTran    
    Anil Kumar

  • Warning: Index does not exist in database system MSSQL

    Hi,
    After activating the Index from SE11,
    I receive the following Warning:
    Index does not exist in database system MSSQL.
    What does this mean? Has performance been increased or does the index 1st have to exist in the database system MSSQL?

    When you create index at SE11 and you need activate database utility.
    utilitities-database utility->then click activate and adjust database.
    else you can use SE14 and so that Index will create databse level.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Index does not exist in database system ORACLE??????

    Hi Experts,
    I created a Secondary Index in DEV, its fine and the message is,
    <b><i>Index KNA1~Z01 exists in database system ORACLE</i></b>
    I moved it to TEST and there I got the message is like,
    <i><b>Index does not exist in database system ORACLE</b></i>
    So,
    1 - Wht I hv to do now? Shuld I see BASIS people?
    2- Why its happened like that? Coz of not enough space?
    ThanQ.

    thanq sudheer,
    I got the return code as 4, so Can I go for creation of new request and there by moving to test?
    1 - Anyways, so, after Activating Seconadyr Index, Shuld I come back and Do I need to activate the Table also?
    or
    2- Just activating the index is enough?
    thanq.
    Message was edited by:
            Srikhar

  • Index does not exist in database system DB6 sap

    Hi All
    In development system i have added a field into already existing  index and activated successfully without any errors or warnings and after transported the TR  into Quality system,In Quality system it shows the warning Index does not exist in database system DB6 sap
    Thanks
    Vamsi

    Hi Mohan,
    After any change in the existing structure of the table you need to adjust and then activate it.
    It can be done using SE14 tcode, please try using this.
    Regards,
    Mohammed

  • Index Does Not Exist In Database System MSSQL

    Hello,
    I have an Index that has this message:
    " Index Does Not Exist In Database System MSSQL"
    Can someone guide me how to update Index to the database?
    Thank you.

    Check this thread:
    missing primary index
    Otherwise, a few more informations would help! Thanks.

  • Index does not exist in database system DB6

    Hi,
    Problem : <b>Index does not exist in database system DB6</b>.
    I need further explanation why when i transport index from Development Client to Production Client the index is active but does not exist in database system DB6.
    So when the cases is occurs i must re-create the index again in Production Level...
    Can someone give me some ideas?
    Thanks.

    Hi,
    it might be due to some BUG in RDBMS...
    First Check the Secondary index in TEST system
    Look at the Transport Number in DEV system, If this is having error, then it will show you the error details also,
    If that not moved Properly then you need to create another request for the INDEX and move it again
    See the threads with similar problem...
    Warning: Index does not exist in database system MSSQL
    Index does not exist in database system ORACLE??????
    Re creation of database index
    Hope it will solve your problem...
    <b>Reward Points if useful</b>
    Thanks & Regards
    ilesh 24x7

  • Transport Error - DS does not exist in Source system

    Dear All,
    I am getting below Error while transporting the DSO from DEV to Quality.
    DataSource  8ZM_ALT  does not exist in source system  DCQCLI041 of version A.
    I have checked the dataosource is active and available in Development system.  But Its giving error while importing.
    As per the dataflow the data of this DSO is updated to Cube.
    Has anyone solved this issue, because i have checked in SDN but there are no suitable answers.
    Regards
    Sankar

    Hi,
    Your right I am transporting ZM_ALT Dso .  The following log of the error we are getting.
    DataSource 8ZM_ALT does not exist in source system DCQCLI041 of version A
    Mapping between data source 8ZM_ALT and source system DCQCLI041 is inconsistent
    DataSource 8ZM_ALT does not exist in source system DCQCLI041 of version A
    Field /BIC/ZM_AA will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_APPL will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_BEM will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_MOD will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NCDS will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NDESC will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NES1 will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NES2 will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NIN will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NPCS will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NPN will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Regards
    Sankar

  • DataSource 2LIS_11_VAHDR does not exist in source system ECDCLNT100 of vers

    Hi iam working on BI 7 and ECC 6 system. When i try to install the transfer rules for 2 lis_11_vahdr in BI7 business content, it gave a message that "<b>DataSource 2LIS_11_VAHDR does not exist in source system ECDCLNT100 of version A".</b> i have done an enhancement for this.I activated them from rsa5,  activated both in LBWE as well as activated thier structures too after enhancing. I replicated and did all possible steps still iam unable to find.
    Can anybody help me who has faced similar issue.
    Regards,
    Neil

    Hi Niel,
           Could you chek the RFC Connection of particular client.
    Thanks,
    Ram

  • DataSource 80SD_O03 does not exist in source system of version A

    Hi,
              While Activating the Standard DSOs i'm getting this "DataSource 80SD_O03 does not exist in source system of version A".
    Regards,
    Devi.

    Hi,
    Hope you followed the same in R/3
    Datasource:        Rsa5->RSA6
    BI Side:
    Rsa1->BI Content->Select Datasource->Installation->Replicating/Activating the DS
    And same procedure for Infoprovider too.
    Please analyze closely about the procedure, some where you are missing something.
    Regards,
    Suman

  • DataSource ***** does not exist in source system ***** of version A

    dear masters,
    i m new to BI i m creating one report in BI. for that i m taking the data from Excel file. for that i have created the source system
    and data source i saved and activated the data source. in data source preview i checked the data its coming properly as i given in
    excel sheet. after that i m creating the infopackage while creating it i m getting the error DataSource ***** does not exist in source system ***** of version A. i checked data source in RSA2 but in this it is showing The DataSource DS_PO85 does not exist in version A also i checked in RSA3 its showing The DataSource DS_PO85 does not exist in version A.
    pls help me how to overcome this problem.... where i m missing which setttings...
    regards,
    vicky

    Hi Vicky,
    Go to RSA1--> Data Source --> Find the data source (for which the load is getting failed)
    Now Change and activate the data source again.
    Both the status and version should be activated green.
    Also you can use the check button to check the DS.
    Thanks,
    Naween

  • Error: web template does not exist in master system

    I have Bex 7x query. I wnat to publish it on SAP enterprise portal (EP 7.0 SP19).
    When I create a Bex iview and provide link of query, I get following error in preview:
    The webtemplate <queryname> does not exist in master system.
    Could you please let me know what can be the root cause of this error?
    Regards,
    Deepti

    Dear Deepti,
    Can you please make sure that Web template "0ANALYSIS_PATTERN" is acive in your system. If not, please activate it from
    Business content.
    You can check this by following below steps:
    Please run TX SE38 and Execute Report RS_TEMPLATE_MAINTAIN_70 and enter the template name and execute.
    If you could see the HTML code , this means it is activated.
    Could you also please confirm me the settings you have in TX RSCUSTV27.
    Regards,
    Arvind

  • Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.

    I am trying to connect to SharePoint in my Office 365 environment by following https://support.office.com/article/Set-up-the-SharePoint-Online-Management-Shell-environment-7b931221-63e2-45cc-9ebc-30e042f17e2c and I am getting:
    Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.
    Is there some setting I need to change on the O365 side? Thanks.

    Hi,
    Based on your description, my understanding is that you want connect SharePoint Online using PowerShell.
    Please make sure that the following software is installed.
    Windows Management Framework 3.0
    SharePoint Online Management Shell
    And then, open the SharePoint Online Management Shell and use the Script below to test
    whether it works.
    $User = "[username]@[tenant].onmicrosoft.com"
    $Pass = "[password]"
    $creds = New-Object System.Management.Automation.PSCredential($User,(ConvertTo-SecureString $Pass -AsPlainText -Force));
    Connect-SPOService -Url https://[tenant]-admin.sharepoint.com -Credential $creds
    Get-SPOSite
    More information:
    http://blog.falchionconsulting.com/index.php/2013/01/using-powershell-to-manage-sharepoint-2013-online/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • It's 2014, but thoughts on the Classic MBP?

    Hi all, I'm a new mac user here, and I'm sorry if there is a similar post. I recently purchased a late 2013 rmbp (8gb ram, 256ssd). It's working quite well now, but I'm finding the screen is a nice bonus but not a necessity. I'm having some serious s

  • Uninstall Airport extreme 2008-004 update and go back to previous version

    Hello This morning I installed the airport extreme 2008-004 update. Since then, I have not been able to access the internet when my VPN (Check Point) is active. I can access the internet if I "stop" the VPN. I use a Netgear WNR834M router and I have

  • How to add/replace/correct narration in a Video Demo project?

    I've recorder a Video Demo project in CP 6 and would like to correct existing narration. In particular, I'd like to add more detailed explanation at some places. Is there any practical workflow that could be used here?

  • Is it possible to burn a slide show onto a Blu-ray DVD ?

    Using PS8 Premier I could't burn my slide show ( no movies ) with music onto a Blu-ray DVD. The problem seems to be......low memory. ( my computer has 2 Gig but my project which doesn't seem that involved has over 4 or 5 Gig ). The reason I want to b

  • Trouble moving files using IMAP

    I'm using IMAP to access my email at work, but when I move a message from one folder to another, it is copying the messages instead of actually moving them. So for instance, my server has its own deleted items folder in order to fuly delete files fro