Cash flow start date and first posting date in REFX-RECN contract

Hi,
While reviewing old contracts, I have noticed that in contracts where first posting date is mentioned,  the cash flow start date is not editable in contract change screen.  In contracts where first posting date is not mentioned, the cash flow start date is editable in the change screen.
Is this standard system behaviour?  Because i have read in the forum that cash flow start date is not editable after first posting of the conditions.
I tried to change the field status of cash flow start date through RECACUST,  but despite keeping the field status as display,  the cash flow start date remains editable.
Please help on how to make the field status not editable.
sadhana

Hi Sidhharth,
Thanks a lot for your immediate reply.
I still have one query.  You have written that
Where First posting date is not updated it indicates that posting of the contract is yet to be done,not a single posting has been performed hence Cashflow date is editable.
This means first posting date is always filled up after condition is posted.  but in our system i find that the date is blank and greyed out even after the 1st posting.
Could it be due to having several conditions in the contract - some with one time posting, some with monthly posting?  eg.most of our contracts have atleast two contions - one for deposit which is one time payment, one for rent.  the first posting date is updated in individual condition for rent in conditions tab  but first posting date in terms tab is blank.     But even in single condition contracts, the first posting date is not getting updated in term tab (the field gets greyout out once contract is activated)
Thanks once again.
Sadhana.

Similar Messages

  • Difference in deposit date and first application date

    We are building an analytical application off of the EBS AR Module. I have noticed a number of records that have a deposit date on the receipt that is at least 2 weeks before the first receivable_application record (even Unapplied transaction). Could this be caused from a clearing issue with the bank? What triggers the record to go to the application? What reasons would cause this to be so far apart?

    hi
    please check if there is entry in Infotype 41 against technical date of hiring .
    If there is entry against that , system will pickup from Infotype 41 .
    Regards
    sameer

  • Planned Delivery Date and Actual Delivery date.

    Hi,
    Is there a report in SAP which shows the delivery date of a PO line item and actual GR posting date from PO history in one report?
    I need to display the planned delivery date and actual delivery date in one report, preferably in columns next to each other.
    Thanks in advance.

    Hi
    To my knowledge there is no such report. You will have to develop this report through ABAP help. You need to pick the planned delivery date from the PO and GR posting date from material document. Both this fields (EEIND & BUDAT) can be viewed in the PO history.
    However, challenge will be when you have multiple delivery dates and receipt posting dates are for part quantities.
    Regards,
    Jagadeesh

  • Diff. between contract cash flow starting date&the 1st posting date

    gusy , please if some 1 know where can i post the real estate threads don't hesitate 2 send me the link cuz i can't find it yet ...
    i would like to ask also about the diffrence between contract cash flow starting date and the 1st posting date of the contract?? isn't it necessary for those 2 dates to be identical ?? because when i receive or realize cash from that contract i've to post it ..

    Hi,
    the difference is quite easy to explain.
    contract cash flow starting date is the date sap uses when generating the cash flow, this is used if you have contracts in sap that were created before you using sap and where you would want to see the cash flow for information reasons.
    The 1st posting date of the contract is actually the date beginning of which sap will be posting the conditions.
    Say your cash flow starting date is 01 January 2007 and your 1st posting date is 01. july 2007, yor cashflow will show you what would have been posted, if the contract had been handeled in sap from january through june, starting in july, it shows what is to be and what actually has been posted.
    As to your question regarding a sap re-fx forum, please use your search, we are still trying to get enough people interested and there is a thread where you can sign up. Until then, feel free to post your questions in the Financials forum.
    Ute

  • Planned order creation with PDS valid on only order start date and not finish date

    Hi All,
    We have requirement to allow creation of planned order manually if production version is valid on order start date and not finish date.  This is because lead time of order is longer. I refered OSS notes 385602. I could find out solution for this is implementation of OSS note 694140 to change validity mode at activity level to consider start date of first produce activity  in validity interval. Problem is even If I create order in APO by implementiong this note planned order is not transfered to ECC and it gets stuck with error production version not valid.
    Is there any way in ECC to control this? Any config or customization?
    Regards,
    Santosh

    Nilesh,
    I think there is a simple procedural skip happening in your business process. You are right when a planned order is created after MRP it would default assign it to the first available production version. 2options available for us,
    1. First use transaction MF50 and do the line loading and assign the quantites to the production versions/Production lines, so that the actual capacity planning is getting completed. This way you can have planned orders with both the production versions and matching to your actual line capacity.
    2. Use Quota arrangement concept, to automatically split the Planned orders during MRP for a percentage based on individual production versions.
    Now when backflush is performed S225 table is updated and Planned order qty also gets reduced.
    Hope this helps....
    Regards,
    Prasobh

  • How to GRN date (MIGO) and Goods posting date (MB1C) as a Characteristcs

    Dear All,
    Our customer wants to include GRN date (MIGO) and Goods posting date (MB1C) as a Characteristic for a batch.
    And he wants the system to pick up these dates automatically for batch.
    So in batches will be sorted out based on GRN (MIGO) or Goods posting (MB1C) date.
    Is there any standard characteristics available for these fields?
    How to achieve this functionality.
    Regards,
    Mullairaja
    Edited by: MullaiRaja on Jan 7, 2011 8:28 AM

    Closed

  • Java.sql.Date and java.util.Date - class loaded first in the classpath

    I had two jar files which has java.util.Date and java.sql.Date class file. i want to know whether which class is loaded first in the classpath...
    I like to change the order of loading the class at runtime...
    Is there is any way to change the order of loading of class...
    I may have different version of jar files for example xerces,xercesImpl. some of the code uses xerces ,some of the code uses xercesImpl..i had common classes.
    I like to load the class with the same name according to the order i need..
    Can we do all these in Run time ?????

    I had two jar files which has java.util.Date and
    java.sql.Date class file. i want to know whether
    which class is loaded first in the classpath...
    I like to change the order of loading the class at
    runtime...
    Is there is any way to change the order of loading of
    class...
    I may have different version of jar files for example
    xerces,xercesImpl. some of the code uses xerces ,some
    of the code uses xercesImpl..i had common classes.
    I like to load the class with the same name according
    to the order i need..
    Can we do all these in Run time ?????That is meaningless.
    The classes you are referring to are part of the Java API. Third party jars have no impact on that. And you can't change to the order because java.sql.Data is derived from java.util.Date. So the second must load before the first.
    And if you have two jar files with those classes in them (and not classes that use them) then you either should already know how to use them or you should stop trying to do whatever you are doing because it isn't going to work.

  • To read data in a file and to post data in a graph

    hello,
    I have a textfile and I want to read the data and to post them in a graph. In my textfile, I have 3 column and each column represents a curve.
    Thank you.

    Hi
    Just use the "read spreadshee from file.vi" (See attachment).
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    LoadDataToGraph.vi ‏19 KB

  • Unable to found Bucket start date and bucket end date in OFSAA 6

    Hi,
    How to find the Bucket start date and bucket end date in OFSAA 6.
    I found following tables to mapped to Dim_Result_Bucket but  unable to found columns pointing to Bucket Start Date and Bucket End Date.
    Tables:
    fsi_income_simulation_buckets
    fsi_process_run_history
    fsi_time_bucket_master
    fsi_lr_irr_buckets_aux
    fsi_m_alm_process
    Kindly let me know the solution.

    Hi;
    Please check below link which could be helpful for your issue:
    https://blogs.oracle.com/ebs/entry/service_contracts_warranty_created_by
    Regard
    Helios

  • Fixed start date and variable end date

    I'm using Project 2010 Standard. Task A has already started. It can't end until 2 weeks after the completion of task B. The only way I can make Project schedule this task is by doing so manually, allowing Project to calculate the duration. But then if the
    end date of task B changes, Project reschedules the entire task based on the duration without regard for the start date. If I add a % complete to task A, then the end date doesn't change if the end date of task B does. Project seems to fix the duration
    once it's calculated. I need the duration to be flexible based on the fixed start date and the end date of task B. This project file is stored in SharePoint so I can't make task A a hammock task. I get the error "You cannot create links from a project
    file that exists on a Web folder to another file" even though it's the same file. Any suggestions would be greatly appreciated.

    WhoKnows,
    I'm afraid without a hammock task the only way to do what you want is either with a manual reschedule or a macro to recalculate the duration of Task A when Task B moves.
    Update: Okay, after playing around here is a little trick that might work.
    1. Break Task A into two parts (e.g. -1 and -2)
    2. Set the predecessor of Task A-2 to be finish-to-start with Task A-1 and finish-to-finish + 2w with Task B
    Depending on the nature of Task A you may still need to do a little manual adjusting but it will effectively allow the start of Task A to be fixed and the finish to be variable depending on the status of Task B. Does that work for you?
    John

  • Diff bet invoice date and Invoices list date

    Hello Experts.
    Good Morning to all.
    1) what is the difference between invoice date and invoicing list dates, please telltheir signigficance and  why they needed in customer master billing tab.
    2)what is the use of the field Payment guar proced field.what actully is its purpose.
    3)Subsequent invoice processing:- It indicates if the invoices for manual
    post processing should be printed out.If the business wants to post invoices manually(not
    by system automatically) that invoice can be printed out.
    In the above sentence what does manual posting means and what is automatic posting means?
    And tell me is there will be any need for this field in the real time , if so , then in which case?
    Thank you for all the replies..

    Dear SD Beginner,
    These fields will be used to assign the calendars that determines the schedule of billing dates and invoice list for the customer.
    Invoice dates (calendar identification)
    Identifies the calendar that determines the schedule of billing dates for the customer.
    Use
    If, for example, a customer wants to consolidate the invoices you send out, you can predefine the billing schedule in a calendar in the system. During billing, the system automatically proposes the appropriate billing date from the calendar.
    Procedure
    The system proposes the billing schedule from the customer master record of the payer. You can change the value manually in the sales document.
    Invoice list Dates (calendar identification)
    Identifies the customer's factory calendar that is used during the processing of invoice lists.
    Use
    An invoice list is a list of invoices (single or collective) that you create for the customer either periodically or on predefined dates. The periods and dates are defined in the customer's factory calendar. Typically, the recipient of an invoice list takes on the responsibility for collecting payments from numerous individual customers and receives a factoring or del credere discount for the service.
    Procedure
    If you want to create invoice lists for the customer, you must enter an identifier for a predefined factory calendar.
    Requirements
    You must first define a factory calendar for the customer either in Customizing for Sales or as part of the master data for Sales (Menu path: Logistics -> Sales & distribution -> Master data -> Others -> Billing schedules).
    I hope this will help you,
    Regards,
    Murali.

  • PO creation Date and Invoice creation Date

    Hi,
    Can any one help me regarding which table I can look for PO creation date and Invoice creation date. I require these fields for my reporting requirement.
    Thanks in advance,
    Arvind.

    Thanks for your response Bala.
    I got the Table which I require. I have one more question on this.
    Can you tell me Invoice Creation Date is RBKP-BLDAT(Document Date in Document) or RBKP-BUDAT(Posting Date in the Document) and PO creation Date is EKKO-AEDAT(Date on which the record was created) or EKKO-BEDAT(Document Date in Document).
    Points already rewarded.

  • Process Order Basic Finish Date and Scheduled Finish Date

    Folks,
    I have a requirement from the business to be able to update the Process Order Basic Finish Date and Scheduled Finish Date independently from each other.
    In other words, update the Basic Finish Date and the Scheduled Finish Date cannot change or update the Scheduled Finish Date and the Basic Finish Date cannot change.
    I believe the reason for this is to be able to use the Basic Date to maintain the ATP accurately and keep the Scheduled Date to mark when the order was originally due from the shop floor to be able to measure if orders are being completed on time or late.
    I have worked in tnx OPUZ and had some success with other issues with these dates but I can't seem to make them work independently from each other.
    Or does anyone have any ideas how to measure proces order performance to the production schedule?
    Thank you for your help,
    Greg

    Rajesha, thank you for your reply but it doesn't solve my problem.
    Let me restate my scenario:
    I start a process order and both the basic and scheduled finish dates are the same, June 1.
    At some point, shop floor tells me they will be late and cannot deliver until June 15.
    I need to update a date in the system so the ATP and the MRP planning runs have correct information for promising customers, I will update the Basic Finish date with June 15.
    I also need to keep the original June 1 date in order to measure the shop floor performance to the production schedule to measure how early or late the  order was delivered. How can I keep the original finish date or how can I measure if a process order is early or late??
    Thank you for your help,
    Greg

  • Using attribute as a set of data and parsing this data

    Hi everyone,
    I present below a (little) challenge with the use of attributes in XQuery. Consider the following XML document:
    <showroom>
    <car id="1">
    <name>Clio</name>
    <family>Renault</family>
    </car>
    <car id="n">
    <name>Q5</name>
    <family>Audi</family>
    </car>
    </showroom>
    Each client of the showroom is identified by a unique Id (e.g., 1,2,3,....). Then, i want to add some data to my XML document which should represent, for each car, the set of all clients' Id that have rented this car.
    The desired XML document could look like this:
    <showroom>
    <car id="1">
    <name>Clio</name>
    <family>Renault</family>
    +*<history>*+
    +*<client id="2"/>*+
    +*<client id="23"/>*+
    +*</history>*+
    </car>
    <car id="n">
    <name>Q5</name>
    <family>Audi</family>
    +*<history>*+
    +*<client id="56"/>*+
    +*</history>*+
    </car>
    </showroom>
    However, by using elements in order to represent the rental historic, the document's size will increase significantly.
    As i use only the clients' id, are there any way to represent the history data using only attributes ?+.
    In the following document, the clients' id are represented, as a set, through the attribute +@history+:
    <showroom>
    <car id="1" history="2,23">
    <name>Clio</name>
    <family>Renault</family>
    </car>
    <car id="n" history="56">
    <name>Q5</name>
    <family>Audi</family>
    </car>
    </showroom>
    However, are there any way to check if a given car of id='x' has been rented by a client of Id='y' ?+.
    Does someone know how to represent the history data (sequence of clients' id), using only attributes, and how to look for a given client's id as explained above ?
    Please suggest. I appreciate your help.

    The two following documents represent examples of the showroom data and the clients' data respectively:
    First document:
    <showroom>
    <car id="1">
    <name>Clio</name>
    <family>Renault</family>
    </car>
    <car id="n">
    <name>Q5</name>
    <family>Audi</family>
    </car>
    </showroom>
    Second document:
    <clients>
    <client id="2">
    <name>...</name>
    <firstname>...</firstname>
    <driverLicence serialNumber="2156311"/>
    </client>
    </clients>
    The DTDs of these documents are defined as follows:
    The showroom DTD:
    <!ELEMENT showroom (car)*>
    <!ELEMENT car (name,family)>
    <!ELEMENT name (#PCDATA)>
    <!ELEMENT family (#PCDATA)>
    <!ELEMENT N3 (#PCDATA)>
    <!ATTLIST car id ID #REQUIRED>
    The clients DTD:
    <!ELEMENT clients (client)*>
    <!ELEMENT client (name,firstname,driverLicence)>
    <!ELEMENT name (#PCDATA)>
    <!ELEMENT firstname (#PCDATA)>
    <!ELEMENT driverLicence EMPTY>
    <!ATTLIST client id ID #REQUIRED>
    <!ATTLIST driverLicence serialNumber ID #REQUIRED>
    Whenever a car is rented, I must add some information either in the same showroom document (it will be better for me) or in another document which relies rented car id with the id of the client which rented this car.
    Thanks in advance for your help.

  • Translation date from document date instead of posting date

    I have a requirement to set automatically Translation date from Document Date instead of Posting Date as usual in SAP.
    My company code hasnu2019t got neither 2nd local currency nor 3rd local currency.
    As usual, when posting transactions in foreign currency, translation date is derived from posting date.
    I would like to know if is possible to set that translation date would be derived from document date. As I said before, because of the company code only has one currency defined, is not possible to change it in OB22.
    Thanks a lot

    Has anyone ever tried to change the Translation date on the FI documents generated by F.05 (FBB1). I am having this requirement at one of the clients I am working on. I need to substitute the document date in the translation date field. I tried using substitution through GGB1 (OBBH) and also I tried using the BADI - FI_TRANS_DATE_DER, but none of the two options work.
    Is there any other option to do it or did anyone had any success in doing this????
    Appreciate all the responses.
    thanks in advance.

Maybe you are looking for

  • Best practice to use contract(ME31K) in reference a PR

    Hi,      I create a PR(me51n) with service (the commitment is on the PR), next I create a contract(me31k) in reference with the PR. In the contract I do some change, I subdivide the service in two lines. After with ME57 I assign the contract with the

  • How to open a .dat file

    How do I open a .dat file created by Adobe in Windows 7 (this file was downloaded from ceac website). I tried changing extension to PDF and unchecking "file extension under folder option) When I use Adobe Acrobat XI or Reader, it won't open

  • Installing Enterprise Linux Release 5  x86 (32 bit) for Oracle eBusiness

    Hi: Where do I get installation instruction to install Oracle eBusiness Suite on Linux? Please help Ali

  • Last Pass with Safari 6.0

    Anyone able to use Last Pass with Safari ver. 6.0? Mine would not load and gave me an error message each time I opened Safari. I removed it and am not sure whether to reinstall it or not yet.

  • Two DropDownByKey, DDk1 selected action refresh DDK2 problem

    Hi Forum: I have two DropDownkey. the selected value of DDK1 goes and fill the second DDK2, accordgin to the selected value of DDK1. My Context in the Component Controller, is: Context    -  List (node)          - valueDDK1 (attribute)          - val