How to Automatically update current months figure in 9ke5

Hi all
I am working on a report that will run in the background and then update the current month figure in 9ke5
Such as for month October for plant xxx and profit center xxx
I know all the necessary parameters such as the comp code, period year, controlling area
Do you know which table the statistical key figures use?
When i do f1 i see an internal structure
Please let me know
Cheers

Karthick_Arp wrote:
978184 wrote:
Hi.
I have a table :
PAYMENT_PERIOD
ID char(10()
DUE_DATE date
VALID Char(1)
In above table ID is customer's ID, DUE_DATE field contains date greater than Current Date and VALID field can contain either 'V' or 'I'. Initially when I insert row in table VALID is V and DUE_DATE is any date greater than Current Date.
My Problem is
When Due_Date becomes less than Current Date then VALID field should be automatically updated by 'I'.
How can I do that?
Thanks.Use a TRIGGER or even better have a custom Transaction-API to do the job.And what event causes said trigger to fire?
From what we know so far, the only thing that makes the row "invalid" is the passing of time and the relation of DUE_DATE to SYSDATE. As John said, don't store VALID at all, just calculate it when needed.

Similar Messages

  • How to get the current month number

    Hi everyone,
    Does anybody know how to get the current month number in Oracle Discoverer Worksheet calculation?
    I try to use EUL_DATE_TRUNC(CURRENT_DATE, 'MM'), but instead I got 01-AUG-00.
    If I change the data display format to MM, it will give me "08" but if I use TO_NUMBER function to convert it to number I get error "invalid number"
    Is there anyway to get the current month value in number? Thanks

    Scott,
    Thank you so much! It works perfectly! :)
    Hope you have a great day ahead!
    Cheers,
    Angeline

  • How to Get the current month at timezone UTC-10

    Hi All,
       can you please let me know How to Get the current month at timezone UTC-10.
    Function module ? which date and time needs to pass.

    Hi,
    Try with following code.
    DATA zdate TYPE  D.
    DATA ztime TYPE  T.
                      CALL FUNCTION 'ISU_DATE_TIME_CONVERT_TIMEZONE'
                        EXPORTING
                          x_date_utc          = sy-datum
                          x_time_utc          = sy-uzeit
                          x_timezone          = 'UTC-10'
                       IMPORTING
                         Y_DATE_LCL          = zdate
                         Y_TIME_LCL          = ztime
                       EXCEPTIONS
                         GENERAL_FAULT       = 1
                         OTHERS              = 2.
                      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                      ENDIF.
    WRITE : zdate, / ztime.
    Thank you,
    Sekhar.

  • How to get the current month value for a customer exit variable?

    How to get the current month value for a customer exit variable? 
    And also if we have an InfoObject with date value (including date, month, year), then how to derive the month value from this date type of Char.?
    Thanks!

    Hi Kevin,
    Check here........
    Re: Customer Exist for "From Current Date To Month End"
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/25d98cf6-0d01-0010-0e9b-edcd4597335a
    Cal month
    Regards,
    Vijay.

  • How to automatically update products and product categories?

    Hi friends
    How to automatically update products and product categories.Is it possible?
    regards
    venkat

    Hi,
    The delta load does not work for product categories but only products.So to bring in the new product categories into SRM you will need to start the load of the object DNL_CUST_PROD1 again.
    The CRM middleware allows the following two methods for replication.
    -Initial loads:
    Launched manually (R3AS), the objects (customizing or business) are replicated between SRM and R/3, according to the filters you've put on the object (R3AC1 for Business objects like MATERIAL, R3AC3 for customizing objects like DNL_CUST_PROD0 and 1).
    -Delta loads:
    This option is only possible for Business objects, which is the case of MATERIAL.
    With this option a daemon is launched between the 2 servers. Every modification made on an object on SRM or R/3 is transfered as soon as this object is contained in the filter retrictions (creation and/or modification). this is done through transaction R3AC4.
    Also refer the foll thread:
    Material group from R/3 to COMM_CATEGORY (SRM)
    Related notes : OSS notes 872819 and 720819.
    BR,
    Disha.
    DO  reward points for helpful answers.

  • HT1918 I have a subscription for the New York Times that automatically updates each month. How do I change the subscription so it will not update each month?

    How do I stop an automatic update for a subscription?  I want it to be manual or I want to stop the subscription.

    I've seen this a lot.
    iTunes Store: Purchasing and managing auto-renewing subscriptions
              http://support.apple.com/kb/ht4098
    Let me know if you see it there, that's how you SHOULD be able to turn this off. Let us know how it goes.

  • Can anyone tell me (if possible?) how to automatically update itunes apps* on computer

    I hate having to go in and update manually, so if there IS a way, can someone tell me the steps to do an automatic update of my apps in itunes, I know it can be done on iphone/ipods, but just asking for how to set up itunes to open up and then automatically update APPS, I have it set to update podcasts music etc, but want to update the apps, if NOT possible, Okydoky... I have windows 7 and the latest version of Itunes 10.7.

    Currently there is no feature to allow your apps to update automatically in the background. Check for available updates > Update all is the best you can do.
    tt2

  • How To Automatically Update  a Field in Table

    Hi.
    I have a table :
    PAYMENT_PERIOD
    ID char(10()
    DUE_DATE date
    VALID Char(1)
    In above table ID is customer's ID, DUE_DATE field contains date greater than Current Date and VALID field can contain either 'V' or 'I'. Initially when I insert row in table VALID is V and DUE_DATE is any date greater than Current Date.
    My Problem is
    When Due_Date becomes less than Current Date then VALID field should be automatically updated by 'I'.
    How can I do that?
    Thanks.

    Karthick_Arp wrote:
    978184 wrote:
    Hi.
    I have a table :
    PAYMENT_PERIOD
    ID char(10()
    DUE_DATE date
    VALID Char(1)
    In above table ID is customer's ID, DUE_DATE field contains date greater than Current Date and VALID field can contain either 'V' or 'I'. Initially when I insert row in table VALID is V and DUE_DATE is any date greater than Current Date.
    My Problem is
    When Due_Date becomes less than Current Date then VALID field should be automatically updated by 'I'.
    How can I do that?
    Thanks.Use a TRIGGER or even better have a custom Transaction-API to do the job.And what event causes said trigger to fire?
    From what we know so far, the only thing that makes the row "invalid" is the passing of time and the relation of DUE_DATE to SYSDATE. As John said, don't store VALID at all, just calculate it when needed.

  • How can we update current ins value to match insurance depr area?

    Hello - I need some advice, please.  On an asset that was transferred within a company code, the current insurable value on the insurance tab in master data is showing DOUBLE the insurance value that is showing in the insurance depreciation area.  How can we update the current insurable value to the correct amount?  Thank you for your help.
    Heidi

    Hi,
    As advised above by Bernhard, you should not select COPY check box in the below path.
    SPRO -> FA-> AA-> Master Data -> Screen Layout -> Define Screen Layout for Asset Master Data -> Define Screen Layout for Asset Master Data....
    Here select the screen layout, which is assigned to the questioned asset's asset class and click on LOGICAL FIELD GROUPS.
    Select LFG 08 - Insurance and click on FIELD GROUP RULES.
    For the field groups 62, 64, and 78, you should deselect check box COPY and SAVE.
    Cheers,
    Srinu

  • UIX 2.1.21: Date OnBlurValidator automatically add current month or year?

    Would be nice if the OnBlurValidator for a UIX Date field could automatically add a missing month or year.
    e.g. Format dd.mm.yyyy
    When the user enters 01.01. the current year could be added automatically.
    Or when the users only enters 01. the current month and year could be added.
    Would be a nice feature additionally to the already existing lenient-date-formats = true.
    Really great would be to allow entering values like "now" / ".", "yesterday" / "-" or "tomorrow" / "+" that are evaluated to the according dates (of course internationalized).
    Thanks, Markus

    hey mill1640,
    Did you ever get your iPhone to register with iTunes? I just upgraded as well to Snow Leopard, and my my isn't recognized at all also.
    If you did get this resolved, I would appreciate a little suggestion in the right direction.
    Many thanks,
    Josh

  • How to automatically update Smart LINKED Object

    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    So what i did :
    I get a source card art image, adding its red border, embossed it to get relief, adding a gloss effect in 3 different layers (the card art, the border and the gloss effect). Than i duplicate all this layers, swap them vertically and moved down to get a reflection.
    I added a gradient to this new group of layers to have a nice fading effect to the reflection.
    As I do not want to redo all the process again and again if I change main the source card Art, I want the reflexion to automatically update.
    This was done using Smart object, both main source card Art and the (vertically swapped) reflexion card art using the same object storing my different main source card art.
    So when i change in this object the main source card art used, it automatically change both the rendered card and its corresponding reflexion.
    And then i Added a displacement filter to simulate a water reflection.
    And the first problem (solved by now) occurred :
    If i want to apply a filter to the group of layers corresponding to the rendered reflexion card, Photoshop have to convert and merged the whole group of layers into another new smart object and then apply a smart filter onto it. That worked but i lost the auto updating of the reflexion as the previous conversion have made Photoshop create in fact a whole new duplicated object storing a my different main source art.
    So i partially resolved This by using Smart LINKED object instead of Smart object. I say partially because it is not really fully automated anymore.
    Now if I change the main Source card Art to render a new one, I have to "manually" save file / update smart object to get the reflection updated.
    I kinda accelerate this using a action performing a batch of saves to get a "save all" options (that clearly miss in photoshop). But for this i still have to open all my smarted linked object in order to apply the "Save All" batch.
    But know I want to generalize the process to cards left, and render my whole card collection.
    So i created a template based on what i've done so far using in this template Smart LINKED Object for the Main source card art and the reflected one. By the Way I exported the Reflection group in a PSD file, and refered to it as another Smart LINKED Object in my template. Doing so i'm sure Photoshop no more use a temporary PSB object correspond to the converted / merged reflexion Smart Object (remember : created in order to apply a smart Filter on it).
    So what Happen now ?
    I create a new testing psd file in witch i embed several new smart objects each one is an occurence to my template. Here i have to used smart Object and NOT smart LINKED Object because if so i'll always end up with the same rendered card several times. I have to get Phososhop create it own temporary duplicated object so a modification to one don't affect all the others after "Save All" batch on the corresponding working card.
    So with what I have now, if I want to change 1 of the rendered card, i go its corresponding (duplicated) template object and from there i access again my LINKED object storing all my main source card Art.
    I change to what source card art I want, and I have to open the reflection smart LINKED Object too in order to apply the "SAve All" batch.
    Here is the "fun" (issue) thing : I have to apply the batch 3 time in a row to have the rendered card changed in my main testing psd file. I suppose saving 3 time time propagated the change along the Smart LINKED Object chain.
    AND I have to make sure ONLY the corresponding smart (LINKED) Object file are opened before. If another file from a different rendered card is opened too the change will also be propagated to it and so having a duplicated rendered card. (I only want each card rendered once, but using the same template to avoid repetitive work).
    So I explained in detail, but maybe not clearly, my situation and the step i went through.
    TLDR
    To summarize : I have a collections of Card art (jpeg).
    I created a Template applying effect to render 1 card.
    I created another template appliying same effect to render 1 REFLECTED card.
    In both i use the same Smart LINKED Object that Store my collection on Card Art.
    I make another Smart LINKED Object in the first template that reference the second one.
    So with my first template I can update the rendered card and its rendered reflexion after changing the main source card art  in the subsequent smart LINKED Object that store my whole cards art. I have to had all corresponding Smart LINKED Object file OPENED and save them all to have th updated result.
    So not really automatic.
    Then I want to render my whole card collection with effect and reflexion.
    I create in my project a duplicate of my first template for each card to be rendered.
    Then I have to open ONLY all subsequent corresponding Smart LINKED(or not) Object file of current working rendered card and change the main source card art, save all the file (several time to propagate change) to properlly update the current rendered card.
    I have to do this for EACH of my duplicated template in order to render EACH of my cards.
    Definitively  not automatic process, and prone to errors.
    Do you know a way to fully automatically render my card collection ? The only thing I want to do is chose one time the main source card art for each rendered card.
    Finally another way to explain this issue and maybe get an answer is to instead explain simply what I want to do :
    I have a collection of (jpeg) card art from an online card game.
    I want to render them all with effect (gloss, emboss border, faded and water filtered reflection).
    I want to do this automatically.
    The only thing i manually want to do is chose the card art to be rendered for each of the card i want to render in my collection.
    Here is an image of what i want based on what i've, not automatically, done so far :
    Thanks for any help from photophop professional here.

    Hi,
    The delta load does not work for product categories but only products.So to bring in the new product categories into SRM you will need to start the load of the object DNL_CUST_PROD1 again.
    The CRM middleware allows the following two methods for replication.
    -Initial loads:
    Launched manually (R3AS), the objects (customizing or business) are replicated between SRM and R/3, according to the filters you've put on the object (R3AC1 for Business objects like MATERIAL, R3AC3 for customizing objects like DNL_CUST_PROD0 and 1).
    -Delta loads:
    This option is only possible for Business objects, which is the case of MATERIAL.
    With this option a daemon is launched between the 2 servers. Every modification made on an object on SRM or R/3 is transfered as soon as this object is contained in the filter retrictions (creation and/or modification). this is done through transaction R3AC4.
    Also refer the foll thread:
    Material group from R/3 to COMM_CATEGORY (SRM)
    Related notes : OSS notes 872819 and 720819.
    BR,
    Disha.
    DO  reward points for helpful answers.

  • OWB: how can automatic updation  perform in staging database using OWB

    I am using OWB-etl to fetch data from source database and store to staging db.
    in target table operator i am using insert operation.
    it is inserting data fien.
    but my requirement is target database must be automatically updated with what ever modification made to source data base.
    can u pls help me how to achive this ?
    Thanks alot ...
    k azamtulla khan

    Hi,
    why do you want to do this using OWB, is it not easier to create a before/after insert/update trigger on source table so that your target table is updated automatically. You can benefit by using owb in scenarios where you need to transform and load data and then schedule this process and for the rest of it i would recommend using triggers for row level activities such as update.

  • How to automatically update Java without notifications

    I just want Java to automatically update in the background - like Windows updates do.  Is such a simple thing possible?  If so, how?
    I understand that techies think it important to be notified.  However, I am not a techie, just a regular computer user who is annoyed by continual requests to update Java when I have no reason to say no.
    Thank you.

    Hello,
       There is no way for Java to be updated without some amount of user intervention. If you would like to forgo any dialogs, there is silent install, which requires that you download and run the installer from the command line. You can see more about the silent install here: JRE Installer Options
    -Roger

  • How to automatic update necessary infotypes at the end in ISR framework

    Hi experts,
    I want to create a custom PCR scenario based on ISR framework. This scenario will transfer a person from one position to another position. In the normal PCR scenario, the final change of the person's infotype data is done by following-up functions which are defined in the scenario action boxes. These following-up functions require an administrator to login system then mannually choose one following-up function to make the update to the system data. I wonder if it is possible to let the system automatically update the backend system at the end of the execution of ISR scenario. The ISR scenario has a setting called 'Automatic Update', will this help? Or we need to add a step in the PCR workflow to do it? Thanks a lot.

    Automating those kind of updates is part of the new HCM Processes and Forms which is in fact a replacment for PCRs. I would look into that if you can.

  • How to get the current month for a variable based on info object 0FISCPER3

    Hie Gurus
    I am working on the financial reports i am failing to derive the Current month from the variable based on infobject 0FISCPER3 PERIOD .
    I would also like to get the same month from the prevoius year. Any ideas?

    If I understood correctly, you need in your repot
    Current Month Plan This year || YTD Plan This Year || Current Month Plan Last Year || YTD Plan Last Year
    Your variable 0I_FISCPER3 must be on the object 0FISCPER3 which is nothing but just the Fiscal Period. This variable is a user entry mandatory Interval variable.
    if you are entering a range in the input screen for this variable, you will get cumulative values. If you just need to get the value for a month in first column your report, you will have to create another variable of type Customer Exit which will read the "To value" entered for the variable 0I_FISCPER3 and columns for Current Month should be restricted on this variable.
    if you are entering a single value in the selection screen of this variable, current month column should be restricted on this variable with "Equal To" operation and YTD colmns should be restricted to "Less Than Equal to" operator with this variable.
    0FISCPER3 just have posting period and not year, so you will have to use varialbes for 0FISCYEAR separately.
    Please let us know if it helps or if you are using some other variable based on 0FISCPER3 or 0FISCPER.
    Regards,
    Gaurav

Maybe you are looking for

  • OIM Integration with Active Directory Federation Services (ADFS)

    Hello friends I have a question about the integration of Oracle Identity Manager with Active Directory which is federated with another external directory for ADFS. My question is: What considerations should be to contemplate if I have an active direc

  • Help changing code for photos.

    hi, i am a complete novice and have managed to use this code to load videos into a div on a page, make them invisable, and play each individual video on a player when clicked on via a picture link in the same page. It works fine, but now i need to ch

  • AirPort Base Station Agent active but I don't have an AirPort Base Station

    hello. Activity Monitor shows AirPort Base Station Agent active although I don't have an AirPort Base Station. I have a router named Speedport. Does my mac consider that an AirPort Base station, or is the Agent running idle (consuming 779,60MB Diks S

  • I am unable to find the main menu on my android, how is it acessed

    i seem to have the firefox page, top sites history and favorites, but i don"t know how to get to the menu to clear history I tried the top right, I tried the left botton.....nothing

  • I cant acess itunes store.

    I can use all the functions of itunes but cant access the store.  I have no downloads waiting and am able to download app updates.  The same thing happened last month and I uninstalled and reinstalled which seemed to have fixed the problem.  I have t