Defaulting to a KF from 2 KFs, based on different periods

Hello,
There is a requirement from my current customer to default Consensusdemand as follows:
From KF1 - periods 1-9
From KF2 - periods 10 onwards
Please advise if the above can be done via the standard KF calculations. If not, can it be done with L-code ?
Rgds,
Jayshree.

Hi Jayshree,
I would try with:
1/
"PERIODID" < "$$PERIODIDCU$$" + 9 default to KF1
"PERIODID" > "$$PERIODIDCU$$" + 9 default to KF2
"$$PERIODCU$$" - current period
2/ Copy Operator using duration and period offset parameters as per your need but then copying will not be dynamic, you`ll have to trigger the copy

Similar Messages

  • Default value type - validation option form based on stored procedure

    Please could somebody explain and provide an example of what the option :-
    default value type - in the validation options for a field in the editor for a form based on a stored procedure ?
    Thanks in anticipation.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dmitry Nonkin([email protected]):
    Absolutely, you can use SQL query to return the value like in the example above:
    Default Value = select 5 from dual
    Default Value Type = 'SQL query returns number'
    or
    Thanks,
    Dmitry<HR></BLOCKQUOTE>
    Hi,
    and what about:
    Default Value = select max(salary) from emp_salaries
    Default Value Type = 'SQL query returns number'
    Will it work? We go some troubles with this.
    Thanx
    Marcin

  • How to change the default IDOC basic type from CREMAS05 to CREMAS04.

    Hi All,
    How to change the default IDOC basic type from CREMAS05 to CREMAS04 when sending Vendor Master Data.
    When I generate partner profile, the system will add the latest version of IDOC type which is CREMAS05 to the Outbound message. In my project, I'm asked to use CREMAS04.
    I want to use BD14 to send master data directly, but the program will generate IDOC using CREMAS05. Is there a way that I can change it to CREMAS04? And also for using Change Pointers, I want to use the report RBDMIDOC, but i have the same problem.
    Thanks
    Sai Krishna

    execute WE20 and edit the outbound parameters
    here is a pretty good example: http://documentation.softwareag.com/webmethods/sapr3_gateway/sap231/pages/sapdist.htm
    Edited by: Jürgen L. on Sep 7, 2011 9:49 PM

  • After upgrading to the newest Firefox, the default search engines disappeared from my search bar. Why and how do I correct this? (Also: every time I download a Google search add-on, it goes away upon closing/re-opening FF)

    I'm referring, of course, to the search bar located next to the URL window; prior to upgrading to the newest FF, I had the capability of choosing from several standard engines and never experienced any problems but following the upgrade, there are no engines available to choose from and I have only been able to find versions of Google search other than the standard one in the available Add-ons I am shown when I go to 'add new search engine' (as there are no engines displayed) via the 'manage search engines' drop down option.
    Furthermore, I have downloaded a search engine Add-on numerous times (most often, if not always, Informative Google Search) and it functions just fine, but upon FF restart, its back to having no default engines to choose from.
    I have searched Google forever looking for an answer to why this is happening and had no luck with my specific problem, so I've come to where I figured the most savvy FF users dwell - hope you guys got some insight cause it's really pissing me off at this point, hahahaha.

    See:
    * http://kb.mozillazine.org/Unable_to_search_or_add_new_engines
    Try to delete search.sqlite and search.json in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder]

  • How do I change my default back to Safari from Firefox?

    I installed Firefox on my Macbook. Somehow, as part of the install, it became the default browser for links from Mail. I'd rather use Safari as my default app. Is there a place to change default browsers, and more broadly, is there a place to assign default applications in general?

    Also:
    In case you need to use Firefox in the future (when Safari doesn't display a page or web form correctly) it's advisable to go into Firefox->Preferences and uncheck the box that says "Always check to see if Firefox is the default browser on startup" button so it won't annoy you or accidentally reset Firefox to the default browser when you next use it.

  • DFF Values Default in Credit Memo from AR Invoice

    Hi,
    We have entered an AR Invoice with DFF values at the Line Level.
    We are creating a Credit Memo directly from the Invoice.Almost all the information in the Credit Memo defaults from the Invoice which is being credited. The DFF information is not defaulted from the Invoice Line level.
    We have to manually enter them.
    Is there someway to default the DFF values from the Invoice onto the Credit Memo ?
    We are on R12.1.3
    Regards,
    Hari Charan

    Hi Hari Charan,
    in 11i this seems to be not possible, as there is an enhancement request available for the same. However for R12 there is a patch suggested by oracle in the below documentation ...Please review the note in detail
    Transactions Form Issue: Credit Memo Does Not Inherit Descriptive Flexfields of Invoice [ID 1316534.1]
    Regards,
    Ivruksha

  • How to fetch data from bseg based  on 2 internal tables in 1 select query?

    hi,
    i have bukrs and belnr in one internal table and bukrs and vbeln in another internal table..now if i select from bseg twice using for all entries for fields bukrs vbeln and bukrs belnr twice in 2 select statements its fine..but since bseg is a huge table i want to use select only once..but the problem is that none of the belnrs in the one internal table will have vbeln in another internal table....ie if vbeln is selected from bseg based on belnr in 1 internal table non eof those vbeln will be equal to vbeln on another internal tables..in this scenario even if i take all data from two internal tables into 1 single internal table and then use for all entries on vbeln and belnr of that table ..but i think this will not work because and AND operator will not work because no record will satisfy both vbeln and belnr conditions..even if i use OR operator if the 1st condition satisfies the select clause will not enter into the second clause and all the records will not be fetched...Please help how should i tackle this..

    Hi vijaya,
    no simple select statement solution so far.
    As BSEG is a huge table you should try to get the full key values into another internal table first.
    SAP avoids direct selections from BSEG.
    Pleas consider the use of one of the secondary index tables first:
          BSAD : Accounting: Secondary Index for Customers (Cleared Items)
          BSAK : Accounting: Secondary Index for Vendors (Cleared Items)
          BSAS : Accounting: Secondary Index for G/L Accounts (Cleared Item
          BSEC : One-Time Account Data Document Segment
          BSEG : Accounting Document Segment
          BSID : Accounting: Secondary Index for Customers
          BSIK : Accounting: Secondary Index for Vendors
          BSIS : Accounting: Secondary Index for G/L Accounts
    you may include
          BKPF : Accounting Document Header
    for restrictions about time and document type.
    The last step is a FOR ALL ENTRIES selection from BSEG providing the full key values.
    Although you may have even more selects, the overall performance will be much better.
    Regards,
    Clemens

  • ? How do you change default for .pdf files from Reader 6 to reader 9

    I cannot change the default for .pdf files from reader 6 to reader 9. Also I cannot remove reader 6. I am running Vista

    Normally, completely removing old versions and reinstalling the latest version will reassociate all applicable extensions for the program, but it appears to have failed in your case.  There may be something else going on with your machine that is producing this behavior.  You probably need to investigate that.  But what you can do to make sure the defaults are correct is click on the start orb and select 'Default Programs.'  Then select 'Associate a file type or protocol with a program.'  From the list of file types, select each of the following in turn: acrobatsecuritysettings, fdf, pdf, pdfxml, pdx, xdp, and xfdf.  If its default program is not Adobe Reader, click on the Change Program button and select Acrobat Reader from the list (you may need to expand the lower section to display more programs than it initially provides).  If Adobe Reader does not show up in the list, you will have to browse for it.  It should be located in C:\Program Files\Adobe\Reader 10\Reader\AcroRd32.exe or C:\Program Files (x86)\Adobe\Reader 10\Reader\AcroRd32.exe.
    This method is safer than manually editing the Root\Classes in the registry.

  • Extracting information from a table based on different criteria

    Post Author: shineysideup
    CA Forum: Formula
    Hi Folks
    I have a bit of a strange one here.
    I need to extract information from a single table based on different critera.
    Sounds simple enough but here's the tricky part.
    This table is a table that contains the build of a product. All the parts that are used to make the product and also the sub-parts that are used to make the primary product parts.
    Example:
    I have a part that is in the product and the part no is 1111. This part is actually part of another part that is part no 1112
    What I need to do is display part no 1111 with all of its details but then also show that it is also part of part no 1112.
    The way the table holds this information is as follows.
    Seq_No      Parent_Seq_No     Part_No
    The seq_no is item no that is given to the part number. If the part is a member of another part then there is also a parent_seq_no.
    Everything needs to tie back to the seq_no and the parent_seq no as the part itself can be used in a parent or it can be used on its own. This way you can actually have the same part appearing in the list several times but the seq_no will be different for each one. If the part can be used in two different sub-builds (with each part being used twice in each sub-build) and also on its own once then you would have 5 different seq_nos two parent_seq_nos.
    What I need to do is to list all of the parts but then also when a part is part of a parent_seq_no I need to be able to display the parent seqno but also the part_no for that as the parent would also be listed as an individual item in the part list.
    At the moment listing the part_no, seq_no and parent_seq_no is easy but when I try to list the part_no for the parent I jsut keep getting the original sub part again. I can do this with a sub-report but with what I need to do with the data after listing the parts a sub-report is not an option for me.
    This make sense?
    Thanks

    Post Author: Charliy
    CA Forum: Formula
    As long as the chain only goes one link deep, you should be able to Alias the table and link it (left outer)  from the child part to the parent part.  Then build a Detail B (or Group Footer if that's where you're printing) and conditionally suppress is if there is no "Parent Part".

  • How I can set my default browser mozilla firefox from the command line in Windows 7?

    I need to set my default browser mozilla firefox from the command line, ie without using the GUI.

    '''-setDefaultBrowser''' is the correct command - you need the two capital letters.
    Why Firefox 17.0.1? You would be missing a number of important security updates. Firefox 17.0.'''9''' is the current ESR release version.

  • Exchange rate should pick from TCURR based on custom date field added in MIGO

    Hi,
    In MIGO, FI document get posted by picking exchange rate based on the posting date. Through BADI(MB_DOCUMENT_BADI) we have added a field called translation date in MIGO screen, while doing GRN exchange rate should pick from TCURR based on translation date instead of posting date. We have tried this logic using substitution (GGB1) in FI accounting it is working fine in FB60 & F-02 transaction but it is not working with MIGO transaction. Please suggest some solution for this.
    Thanks & Regards
    Vinoth Kumar.M

    Hi Maniraj,
    This will a modification to existing system and it is not supported directly.
    There are 2 notes of SAP for modification of translation date of BKPF.
    SAP Note 574583 will activate a BADI kindly refer to it for details.
    http://www.stechno.net/sap-notes.html?view=sapnote&id=574583
    There is another one but is appilcable if material ledger is active in the system
    Regards

  • [svn:fx-trunk] 4982: Moving DataGroup from item based lookup to an index based lookup.

    Revision: 4982
    Author: [email protected]
    Date: 2009-02-16 23:31:05 -0800 (Mon, 16 Feb 2009)
    Log Message:
    Moving DataGroup from item based lookup to an index based lookup. Also, we now cleanup old item renderers when the dataProvider changes. This solves some memory leak problems.
    Because of this, we should now be able to deal with duplicate items again.
    We still need to work on data collection changes in the virtual layout case.
    QE Notes: Please add the tests for dup items back in
    Doc Notes: -
    Bugs: SDK-19245, SDK-18043
    Reviewer: Hans
    tests: checkintests, DataGroup and FxList mustella tests (some new ones failed, but are really due to SDK-19287, and these tests should be excluded to that bug now)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19245
    http://bugs.adobe.com/jira/browse/SDK-18043
    http://bugs.adobe.com/jira/browse/SDK-19287
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/DataGroup.as

    GREAT info, but it may be helpful to note that when replacing a portion of the variable "Countries" with a whitespace character, you may cause the workflow to fail in a few specific cases (certain lookup fields will not accept this and will automatically
    cancel).  I only found this out when recreating your workflow on a similar, but much more complex list set.  
    To resolve this issue, I used another utility action (Extract Substring from Index of List) to clear out the whitespace.  I configured it as "Copy from
    Variable: Countries, starting at
    1 (Output to Variable: Countries), which takes care of this issue in those few cases.
    Otherwise, WOW!  AWESOME JOB!  Thanks!  :)

  • Select data from Table1 based on Table2

    Hi Guys,
    Can you guide me up on how to select data from Table1 based on Table2?
    I want to fetch data which is not there in table2 in my table1 select query.
    Is that I have to do it with the loops after I select data from both tables or can it be handled directly in my select query?
    Please suggest.
    Regards,
    Kumar.

    hi
    Try This
    In Where condition filedname (Not Equal) < > itab2-fieldname.
    select * from itab1
    into table lt_tab.
    seect * from itab2
    into table lt_tab
    for all entries in lt_tab
    where name < >(Not Equal to)itab2-fieldname.

  • Fetch records from BSIK based on Net Due Date

    Hi all,
    I have to fetch the records from BSIK based on the "Net due date".
    "Net Due Date" is a calculted figure which is the ( number of days from payment terms + Baseline date ).
    Is there any function module for this ?...
    Thank you,

    Thank you for your response.
    The FM does not serve my purpose. This FM basically determines the due date of the documents. My requirement is to find a function module wherein the input is the 'Due date ( viz a calculated fied = baseline date + payment terms )' based on which the respective records are fetched from BSIK and BSID.
    Let me know if you have any ideas on this...
    Thank you

  • To fetch the srtfd value from PCL2 based on Pernr

    Hi,
    is there any function module to fetch field (srtfd ) value from PCL2 based on the pernr. My selection screen is having only pernr as the input and now have to get the srtfd value from PCL2.
    Kindly suggest me if any FM or best procees existed.
    Thanks,
    Murthy.

    Please somebody reply.

Maybe you are looking for

  • Full Steps to run CS3 in Windows 7

    How to run CS3 in Windows 7....Full Steps How to work with old software in Windows 7 Ultimate.....(That is the software that I used for Adobe CS3 and it worked beautifully. Other versions may be slightly different, but in general, the same steps appl

  • BI content datasource stopped working - fields gone missing...

    Hi everybody! My customer is running a BI content version datasource 2LIS_02_ITM. In BI, the transfer structure for this datasource has suddenly stopped working. It's claiming that three fields are not delivered by the datasource in the source system

  • My imessage isnt working please help asap!

    i have an iphone 4 running off straight talk, the phone has worked without any problems until a day and a half ago, i even called apple care with this problem. whenever i go to send an imessage the message sends but doesnt deliver idk if its my phone

  • CEF Load Sharing Recursive Lookup

    Hi, i have this scenario: | ----P1----P2---| PE1----| |----PE2 | ----P3----P4---| IP Loop PE1: 5.5.5.5 There are 2 Gigabitethernet betweenn the router PE and the router P. PE1 advertise 1.1.1.1/32 to PE2: PE2#sh ip route 1.1.1.1 Routing entry for 1.1

  • Play in real time

    How do I get a premiere file to play in real time? I have png sequenses on the time line if that helps answer the question.