Compensation with changing payment date

Our customer has to close a lot of incoming invoices through Compensation process (close in the same time some incoming and some outgoing invoices of the same party). We plan to solve that through payment batch: the invoices will be selected and the batch will wait (will not be confirmed) till partner confirm compensation. But, very often, in the moment of confirmation, payment date has to be changed because it has been agreed differently with Partner Company.
EBS doesn't allow changing payment date in a payment batch.
May we create a procedure (concurrent request) to change payment date in a not confirmed payment batch? (Payment date is CHECK_DATE in AP_INV_SELECTION_CRITERIA_ALL). We know that we have to update also PAYMENT_DATE in AP_SELECTED_INVOICE_CHECKS_ALL.
Is there anything else what we have to change together with previously mentioned?
The procedure will be applicable only for payments in functional currency.

hi frane,
we cannot manipulate the data in apps tables other than interface tables provided by EBS.
if the payment date is not the value date for bank, then you can leave it as it is. if it is so important, modify your payment format program to change the date while creating the bank payment file for banker. as far as payment date on the unconfirmed batch it will stay the same and should not make any difference as long as the confirmation of the payment batch is not crossing the payable period.
thanks,

Similar Messages

  • How to change payment date in cash flow

    Hello Experts,
    Ive had a facility with commitment fee.  The calculated figure of the commitment fee is correct which based on period end date and the payment date in the cash flow tab was also the end date but I wanted to change the payment date in the cash flow of the commitment fee  but the system does not allow me even if Im in an edit mode.
    Appreciate your help.
    Thanks,
    Kath

    Hi Katherine,
    I can suggest you another solution for the case when calculation of the respective cash flow is correct, however you have kind of fluctuating payment date. Instead of correcting it in a deal, you can post it with different date as planned, so when you run TBB1, you have to specify the required date in the field 'Posting date instead of due date' in the set of fields 'Posting control'.
    So you can actually use this feature for those irregular cases.
    Hope it can help you.
    Rgds,
    Renatas

  • Change payment date

    Can I change my payment date with creative cloud

    If a customer is on a creative cloud individual, there is a provision where we can skip a few days and change the billing cycle, if et'all it is reallay neccessary, if they provide a very valid reason to do it. Some of us have the R3 Access to CSUI and we can look it up for CCM - Individual
    So customers have to call Adobe Customer Service and beg (provide a valid reason which Adobe will accept)? Then the Adobe rep may (or may not) change the payment date at their discretion?
    What if Adobe says "No sorry you must pay on the date. We cannot and will not change it." The customer cancels their membership?
    Customers usually make such requests because they want to retain their membership and a few days adjustment in their payment date will help them do so. Seems odd for Adobe to make that difficult for the customer.
    I suppose it's easier for new customers to cancel the membership (no penalty if less than 30 days since they joined) then re-join on a more convenient date?

  • VBA:comboboxes to present same date in different formats...ADAPT WITH CHANGE IN DATE

    Hi all, 
    I'm very new to VBA and excel development, so please take that into consideration as you read on.
    I'm trying to create a work form for a database that (should) collect various information in comboboxes, including the date, the weekday, and the month... Note: most of the time, the data will be inserted the day after it's been collected. So, I wanted to create
    one combobox for the date, one for the weekday, and one for the month, because I want columns for each of these in the database (If this is not necessary/efficient, please help! :) ) . 
    Here's what I've got so far:
    'worksheet setup
    Dim ws As Worksheet
    Set ws = Worksheets("LookupList")
    'Date dropdown setup
    Dim cDateToday As Range
    For Each cDateToday In ws.Range("DateList")
    With Me.cboDate
    .AddItem cDateToday.Value
    End With
    Next cDateToday
    'If today is Monday, then set date to last friday, if any other weekday, set it to day before that
    If Weekday(Date - 1) <> 2 Then
    Me.cboDate.Value = Format(DateAdd("D", -Weekday(Date) - 1, Date), "Medium Date")
    Else
    Me.cboDate.Value = Format(Date - 1, "Medium Date")
    End If
    Problem #1: Right now, I am getting the date values from the list
    DateList in the worksheet LookupList...is there a better way of doing this?
    Problem #2: When the user form is run, the correct date and format shows up. However, if I change the date, the dropdown list in the combobox starts from the initial date in given list...is there anyway to bring the list closer to the current
    date? Think Calendar View
    Problem #3: I want the weekday and month values to be directly correlated to the date value discussed above, so hypothetically when the user form is run the correct date, weekday, and month all show up (based on the same date value), then if
    I change the date, the weekday and month automatically update. Is this possible, if so how?
    The reason I want this functionality is so that on a Monday, I can run the work form and it will automatically have Friday's date, weekday, month info as it opens. When I'm done with Friday, I can run it again, switch the date to the Saturday's
    date (weekday and month automatically update), then repeat for Sunday.
    I have tried running the same code for the weekday and month as I have for the date, and they work
    until the date is changed. Once the date is changed, I have to manually change the weekday, which leads to format change, and same for month, which all leads to :( and confusion
    Again, I am very new to vba and don't know much about it all and appreciate any/all help!
    Thanks in advance!
    /Alex

    I can give you a little advice but I don't understand your comment "if I change the date, the weekday and month automatically update" Where do you want them to update?
    I am assuming that your entire question is referring to a Userform with the Combobox. Is this correct?
    The code can be much simpler to populate the combobox list. You already have a named range for the Dates so you can use that directly to populate the RowSource. (RowSource if the combox is on a Userform or ListFillRange for a combobox on a worksheet).
    Then the WorksheetFunction Workday can be used to get the previous workday without weekend days. It also looks after the previous day when the actual date is mid week. Look up the function on the worksheet Help because you can also have a separate list
    of holidays that will be excluded like weekend days.
    If you are new to VBA then a tip about Help. You need to be on the worksheet and click Help to get worksheet help and in the VBA editor you click Help to call the VBA help. Don't just select Help off the taskbar when changing between the worksheet and VBA
    because you will finish up with the incorrect Help file.
    Example of code to assign a named range to the RowSource of a ComboBox. Named range needs to be Global and not scoped to a worksheet otherwise the worksheet name is also required. 
        Me.cboDate.RowSource = "DateList"
    Example of code to assign the previous workday to the combobox value.
        'Following line sets value to previous workday (Mon to Friday)
        Me.cboDate.Value = WorksheetFunction.WorkDay(Date, -1) 
    Then there is another problem with ComboBoxes and dates. If the Dates are real dates on the worksheet (Not Text)  then the dropdown list displays in the same format as the worksheet but when the date is selected, it displays as a serial number. This
    can also be rectified with code but first I need to know what the format of the data is on the worksheet.
    Can you upload a copy of your workbook because it is like a picture is worth a thousand words. Same goes for having a copy of the workbook. If it has sensitive data then create a copy and remove the sensitive data.
    Regards, OssieMac

  • How to change payment date

    Once again I've gone in circles over something simple. Adobe pisses me off! How do I change my billing payment date?

    Sorry but, you can't change the billing payment date.

  • Changed payment date- please help!

    Hi,
    could somebody help me please?
    The direct debit date has been brought forward on my latest bill without the 10 day notice period being given and subsequently I have gone overdrawn.
    The usual date is the last day of the month but the payment has been taken today. I have had the money refunded by my bank through the Direct Debit Guarantee scheme and will make arrangements to pay the outstanding amount on Monday 29th. The new payment date will be ok going forward.
    Could a Mod confirm this arrangement will be acceptable to BT?
    The call centre were less than helpful by insisting that 6 days was the minimum notice period and the only way I could go back to my original payment date was by setting up a monthly payment plan and having a quarterly bill (beggars belief).
    Anyway, thanks in advance.

    Hi keendartfan,
    Apologies for the mix up with this! Try it now and you should see the link.  Click my username and it should show the link under the section "about me".
    Whenever we've received your details we'll take it from there.
    All the best,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Un-modified folders with changed modification dates

    I have several folders that I have not touched for months, and suddenly, they all have the same modification date & time. The files inside the folders have the correct dates on them (some are two years old).
    This seems to be happening with only one folder, which itself is in the Documents folder. There is an alias to it on the sidebar. Inside that folder, just today, 53 folders all changed their modification dates with out me even looking at them!
    This is highly annoying, as it is a folder in which I store jobs that I have completed. Any solutions?

    This was the result of a syncing application, not Mac OS. Removed application, problem solved.

  • Applet error with changing variable data after several runs....

    Can anyone give some advice on the following:
    I have a java card program running on a gsm sim:
    The program makes use of member variables which
    contain data that is reused and rewritten all the time.
    The member variables are all declared as (for example)
    private byte[] myVariable = {(byte) ' ',(byte) ' '};
    And the values stored in the variables are changed
    everytime the program gets an event. This works fine
    for about 15 - 35 times and then suddenly the program
    can't execute any code that accesses these variables (the
    other parts that simply display a message or the menu and that
    never change their variable's value have no problem running on).
    Does anyone know a specific reason for this ? Should I rather
    use my own EF entries on the SIM to keep data ? Is there any
    specific rules around using variables and reusing them ?
    The only fix (once this occurs) seems to be to reload the applet
    onto the card...resetting the phone etc. does not change this
    behaviour....
    Any help would be much appreciated...

    I don't think that your problem lies in your private member variable.
    From my point of view it is more likely that you some kind of memory allocation problem somewhere.
    Anyway it is always a good idea to post a minimal applet which reproduces the erroneous behaviour.

  • Report with historical payment data and current bp balance

    Hi,
    Has anybody created an report like this??
    cardcode,cardname,adres,zipcode,documentnumber,doctotal,docdate,docduedate,payed amount and paydate??
    data should be from now untill 1 year before (historical)
    Kind regards
    Mark

    Dear Hangman,
    This query is for customer receivable.
    if you want for supplier just change tables name from query.
    SELECT T0.DocNum, T0.DocDate, T0.DocDueDate, T0.CardCode,t0.doccur As InvoiceCurrency,T0.DocTotalFC InvoiceTotal ,T0.PaidFC As ReceivedAmount, T0.CardName, T1.DocNum As ReceiptsEntryNo, T1.DocDate, T1.DocDueDate, T1.CashSum, T1.CheckSum,T1.TrsfrSumFc,DATEDIFF(Day, T0.DocDueDate, T1.DocDueDate)As OverdueDays
    FROM OINV T0 LEFT OUTER JOIN ORCT T1
    ON T0.ReceiptNum = T1.DocEntry
    WHERE T0.DocDate >=[%0] AND  T0.DocDate <=[%1] AND (T0.CardName ='[%2]' or '[%2]'=' ')
    Regards
    MANGESH PAGDHARE.

  • Trigger PAI without an OK_CODE and only with change of data

    I have a handheld which does not return the OK_CODE when you press enter. Is there any way to trigger PAI without any OK_CODE?
    I have tried FIELD VAR-VLPLA MODULE M0200_ON_CHANGE ON INPUT.

    There is a way to do what you want....try adding the following to the end of your POV module...(works like magic for me).
    *  Trigger the PAI immediately to get the VAT rate / amoount
    *  for the VAT code.
       ok_code = 'XXXX'.
       SUPPRESS DIALOG.

  • Core data: Versioned model migration with change in existing attribute data types.

    Hi ,
    I want to upgrade my ios app with app store version with enhancement of new functionality related to core data features in the app.
    -In new upgarde version, I want to change data types of attribute which is already present in core data model of existing app store version.
    e.g.In Version 1.0 ,Attribute "date" datatype is "NSDate", New change required to change  datatype "NSDate" to "NSString" with new version model.
    I followed Lightwaight migration, but as per documentation , Lightwaigh migration not support for change data type of any existing attribute/entity of core data model.
    Please suggest optimized solution for migration of database along with change in data type of exsiting attribute of the entity in core data.
    If required in further info ,please ask.
    Thanks in advances.
    Regards,
    Laxmikant

    More Info: The two entries are actually pointing to the same object. If I save the context and restart, I only have one entry (I can also see this by looking at the XML store).
    It seems that the NSTableView is getting messed up somehow after the FetchRequest. Still stumped.

  • HT1918 problem with changing the payment information

    I've got a problem with changing the payment information !!
    when I change them and I followed the instruction , and when I click done
    it says " for assistance, contact iTunes support at " the link " . and nothing
    change , so what should I do ?

    Hi Bart,
       The description of the field VBKD-BSTKD will appear in sales order (VA01/02/03) Header  Order data tab.
    If you notice the text for below one it is PO Number where Number starts with upper-case N and it iis not the one which you changed.
    Also this is a hyperlink to sales header order data screen.
    You need to enhance the code via sales exit to fix this.

  • How to change generation date of absence quota with Time Evaluation methos

    Hi all,
    IS there any way to change generation date when TIme Evulation generate absence quota?
    Currently system will use last day of month as generation date, Validity and Duduction period set correctly.
    Base entitlement relate with Monthly,
    Accrual period setting in selection rule is Month
    Example: system generation absence quota in PT60 with 1 day Normal Leave Entry date 31.06.2011
    Valid from 01.06.2011 to 31.12.2012 ; Deduction from 01.06.2011 to 29.02.2012 (extras 2 month)
    Can we change ENtry date to 28.06.2011 , because in the last day of month they did not yet have quota but they need it for advance (approver from his/her Manager) ...
    Thanks,
    R1V

    Hi,
    The best way i think is to have negative deductions for the quota.
    This time as it is on 28 you want to push it to 2 days earlier and later if there is another person with a day as 25, you need to again change the generation date isnt it.
    Instead, if you have the negative deductions, you need not worry about the generation date.
    Hope this helps.
    Cheers,
    LG

  • I have iphone 4s with iO6. My problem is I can no longer update my apps since "cannot connect to itunes" always shows on my screen when i try to. Tried fixing by changing the dates, turning off location as suggested in some forums but both didn't work!

    I have iphone 4s with iO6. My problem is I can no longer update my apps since "cannot connect to itunes store" always shows on my screen when i try to. Tried fixing by changing the dates, turning off location as suggested in some forums but both didn't work!  Please help!! Thanks.

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • Since updating to iOS 6, my iPad 2 keeps loosing connection with iTunes. I have tried changing the date, logging out then back in, iTunes is updated.....what's going on???? I can't update any apps nor can I download new ones.....

    What's going on with iOS6...... Since I updated to it, I have had nothing but hassles....

    Are you losing the connection to iTunes on the iPad or the computer? You are saying that iTunes is updated. Of course iTunes is updated when you update the iOS software. That's a no brainer.
    If you mean that iTunes is updated on the computer, that has absolutely nothing whatsoever to do with downloading and updating apps on the iPad itself so changing the date on the iPad, signing in and out of the stores on the iPad .... Doing any of that on the iPad would have nothing to do with iTunes on your computer.
    If .... you have not been able to connect to the iTunes or app stores at all on the iPad - try this ...
    Settings>Privacy>Location Services>System Services (swipe to the bottom of the page to find this)>Location Based iAds>Off.
    If the downloads are stalled or "waiting" - try these suggestions.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If you can't connect at all - you can also try rebooting your router. Unplug it from power for about 30 seconds and then plug it in again.

Maybe you are looking for

  • File Extension Always Changes from .mp4 to .m4z in Media Encoder CS6 Master Collection

    Hello, I am a noob to Adobe products, but I am familiar with video encoding and have been making movies on the computer for over a decade.  I have made several attempts to encode from .wmv to .mp4, but both Media Encoder as well as Premiere creates t

  • Mac Mini Server - Xeon Ivy Bridge

    Good morning. I was wondering... is it feasible to equip the next Mini Server with an Ivy Bridge Xeon processor? It could be one of these: http://ark.intel.com/compare/65733,65729,65726,65728 Pros (including other ideas): - Capabilities to stack Mini

  • Oracle 11g ogg

    Hi, Can any one please explain me about , what are the new features added in the oracle 11g golden gate release, currently im using 10g , if im migrated to 11g what are the advantages for using GG?

  • Price difference entries

    HI, Masters, can anybody please clarify my doubt in price difference entries in FI-MM integration , i have some doubt how the entries will get affected Please don'nt say like search the threads  and don'nt give the links also, today itself i have the

  • Titanfall Not working

    So I had recently gotten titanfall for my brother. He has a Hp Envy dv7-7250us. When he finished instlling the game he noticed that the graphics where all messed up! Like mostly the titans and all that. I have been trying all day to fix it but I can'