Time Report variant setup

Hi Experts,
Need help on dynamic variant setup for a custom program, which creates cost objects in custom table for Time writing purposes. Everything works fine The batch is setup with 03:00AM and 03:00PM  twice daily, I need support on variant setup with below requirement.
1) New cost object created during the day  (from 3:01 am - to : 15:00 pm)  will be picked thru batch job which runs at 15:00PM
2) New cost object created after 15:01pm to next day 02:59am to be picked thru batch job which runs at 03:00AM
And the cost object should not be imported twice with two batch jobs,  which created on the same day. The existing variants does the same (sending multiple times)
"D" - Date -1 , Date -0 (work days)   , Please tell me what has to be changed.
Thanks ~ Priya

A bit impossible to answer without knowing what your selection screen looks like, or what abap code you are using in your program.
If you have the begin and end time fields on your selection screen, then you can simply save these as part of the variant and have 2 different batch jobs i.e. one that runs earlier using variant 1, and the other batch job (with a different name) running later with variant 2.
If you don't want the same cost object selected twice I don't think you can do this in your variant, somehow this will have to be part of the program code in my opinion.

Similar Messages

  • Time reporting in ESS

    Hello,
    Which is the simplest and fastest way to setup time reporting via ESS-portal?
    Are there any nice "short cuts"? We only want the time reporting part in the portal.
    The time reorting should then be connected to CATS in the backend system.
    Is there any best practice for this? Automatic installation of a standard procedure?
    Regards,
    Fredrik

    Hi FC,
    Please refer to this thread
    ESS/MSS CATS
    Hope this helps.
    Cheers,
    Sandeep Tudumu

  • Planned time  Vs Actual time report for activities

    How I can get 'Planned time  Vs Actual time report for activities( std values like setup , machine , labour  ) ' ?

    Hi,
       From the tcode co28  choose op/sub op
       Choose the profile as 000001and enter your order number
       Execute.
       Select the op and choose ALL FILEDS ICON.
       From there you can get the planned standard values and the actual standard
       values.
      Regards,
      nandha

  • How to find CREATION DATE of a REPORT VARIANT

    Hi Friends,
    How to find the Creation Date of a Report Variant?
    Regards,
    Viji

    Hello Vijaylakshmi,
    You can find the Date of the variant created from the table VARID.
    Go to the table VARID, You can find the report name, Variant name, EDat(Date on which variant was created), you will also find the time stamp at which the variant is created.
    Hope this helps.....
    If you need any further information then please l;et me know. ....
    Regards,
    Kittu
    Edited by: Kittu on May 20, 2009 8:04 AM

  • UCCX 10.5 Real Time Report shows "Not Connected"

    Hi,
    UCCX 10.5 HA over LAN.
    As per the title, RTR shows Not connected for both nodes and no data shown for all reports. all services are In service in both nodes. 
    Any Ideas?
    Regards.

    Hi Mohamed,
    Are you accessing this via the IE or FF? If so which version?
    The Real time reporting on UCCX connects to the RMI port 6999 to pull the information on the Engine. If there are no port blockages or if there are no issues with the browsers, then it is a problem with the configuration files in root holding this information which needs in depth analysis.
    A restart of the Engine also should help. I know that everything is IN SERVICE, but I have noticed a lot of issues on UCCX 10.5 when there are stuck calls on the system, it impacts RTR with the midnight stats reset.
    The reset of the Engine is bound to clear all the stuck calls in the system and this may be a side effect of the stuck calls on the system especially if the RTR was working before you noticed the problems.
    Regards,
    Arundeep

  • How to define a specific report variant execution in Area Menu

    For report REP01, for exemple, with a selection screen, I defined a variant with specific options, named VAR_SPEC1, to be used by a certain group of persons.
    Now I created the Area Menu ZMSPEC1, and I need to associate to it an entry to execute program REP01 via variant VAR_SPEC01. How can I do it?
    I saw that the program REP01 already has already defined a report transaction (ZEXREP01, for ex.), but if I use this transaction in the Area Menu, I will not use my variant...
    I was looking to the different types of transactions that can be defined, but I am a bit lost.
    Thanks in advance.
    Davide

    Hello,
    I am still a bit lost about the easier (or better) way to associate to the new Area Menu the execution of a non-local program with selection-screen, using some predefined options (hidding some fields, predefining others...).
    Can someone be more specific?
    I guess the necessary elements are:
    1) non-local program REP01;
    2) core report variant VAR_DEFAULT, for program above.
    3) new local variant VAR_SPEC1, for program in 1)
    4) ...
    5) ... some solution to link both parts...
    6) ...
    7) Area Menu ZMSPEC1, with a new item to call the execution of REP01 with variant VAR_SPEC1.
    Any ideas? many thanks!

  • Hi i would like to know how to extend the range of my time capsule wifi network(500G 802.11n) using an airport express. i have a double storey home and would like to extend range to my upstairs bedrooms.i have a time capsules network setup via a netgear a

    hi i would like to know how to extend the range of my time capsule wifi network(500G 802.11n) using an airport express. i have a double storey home and would like to extend range to my upstairs bedrooms.i have a time capsules network setup via a netgear adsl.i have a second imac upstairs which connects to time capsule wifi network (it is within range as it is directly abobe on 1st floor)
    could you tell me how best to set airport express up to extend my wifi range?

    Greetings,
    This is called an "Extended wireless network".
    Read this article for details and steps on how to extend your TimeCapsule's network:
    http://support.apple.com/kb/HT4259
    Cheers.

  • How to restrict the display of report variants

    Hello All,
    I want t know how to restrict the display of report variants.
    I mean, when a user saves a variant for his/her purpuse on some report program, only he/she can refer the variant while other users cannot.
    I know that by setting the attribute of the variant ("Protect Variant ", "Only Display in Catalog"), this would be possible, but I want to know another way, without this setting.
    Thank you for your help in advance.
    Regards,

    Hi,
    Can you just try this
    DATA:it_varid TYPE TABLE OF varid.
    DATA:wa_varid TYPE varid.
    INITIALIZATION.
      SELECT * FROM varid INTO TABLE it_varid
          WHERE report = sy-repid
          and ename = sy-uname.
      IF sy-subrc = 0.
        LOOP AT it_varid INTO wa_varid .
          CALL FUNCTION 'RS_SUPPORT_SELECTIONS'
            EXPORTING
              report               = sy-repid
              variant              = wa_varid-variant
            EXCEPTIONS
              variant_not_existent = 1
              variant_obsolete     = 2
              OTHERS               = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
        ENDLOOP.
      ENDIF.

  • Dynamic seleciton in report variant FBL1N

    Hi,
    Problem Description
    I am trying use dyanamic selection in report variant of FBL1N but its not working.
    My working
    I am using dyanamic date variant.
    In the selection screen of FBL1N, we have posting date in dynamic selections.
    While creating a variant for the selection screen of FBL1N, I am selecting Posting Date of dyanamic selection and choosing selection variant as "D" (D: Dynamic date calculation) along with Current Date as variable.
    However system is not accepting this and the current date is not coming up while choosing this variant.
    Solution required
    Can anyone please help me out with dyanamic date calculation in dates from dynamic selection in report FBL1N.
    Thanks,
    Nitish

    Dear
    You did not specify in which version you are working.  If you are in new GL instead of using FBL1N you can as well use T.Code S_AC0_52000888 and here you can make dynamic selections.
    Regds

  • Report variant not transport to ECC 6.0

    hi all,
    after migration from SAP 4.6 to ECC6, i cant see the SAP transaction report variant not transaport over....is there any SAP table store the user variant not transported ?
    Thanks .

    Pls. check manual:
    Phase SAVE_VAR_CHK
    After the upgrade, many of your variants can no longer be used because the relevant selection screens
    have changed. If your Basis Source Release is 4.5B or higher, the SAP system offers two reports to
    save the variants:
    n RASUVAR1 saves your variants on the source system.
    n RASUVAR2 restores the variants in the target system.
    During phase SAVE_VAR_CHK you can decide whether you want the upgrade tool to run report
    RASUVAR1. The report is started in phase JOB_RASUVAR1. If you have decided to run report
    RASUVAR1, phase JOB_RASUVAR2 automatically starts report RASUVAR2 towards the end of the
    upgrade.
    For more information about the reports, see SAP Note 712297.

  • Webview not showing real time reports

    Hi,
    I have a customer with IPCC Enterprise 7.5 and using the Webview for reporting. The Real Time reports are empty although campaigns are running and agents are logged in. The Historical Reports works absolutely fine. I noticed that for the dialer port status report, I had to enable a setting through the registry, according to the following document:
    http://www.cisco.com/en/US/products/sw/custcosw/ps1001/products_tech_note09186a00801dc6cf.shtml
    I changed that and then the Real Time report for the dialer port status works. Nothing else from the Real Time reports returns any data.
    Thank you,
    Agelos

    We are using only the Outbound option, so it's only for the outbound. It doesn't give me any Real Time report except the dialer port status. It doesn't return any error, but the report is empty.

  • Time reporting screen - additional fields for clock in/clock

    Hi all, I have an issue with time reporting that I would appreciate your help in resolving. We would like to add additional fields for clock in/clock out data from external clocks. I think I saw it somewhere but now I cannot find it in the CAC2 configuration. Can you help? Thanks in advance, Maya

    see if following link can help:
    Custom field added to CATS but not showing in Data Entry View'

  • Down time report

    I cannot find where I could change the configuration of gwmon to give me
    more than 5 days worth of down time report. Ideally it would be great to set
    this to 180 days or more so that we can see how we perform over a long
    period of time...
    Running on SuSE 9.3
    I cannot see any settings that would do that for me in
    /opt/novell/groupwise/agents/share/monitor.xml
    and
    /opt/novell/groupwise/gwmonitor/gwmonitor.cfg
    Any suggestions?
    Regards,
    Sylvain
    ================================================== =========
    Sylvain Phaneuf --- Systems Manager | phone : +44 (0)1865 221323
    Information Management Services Unit - Medical Sciences Division
    Oxford University | email : [email protected]
    Room 3A25B John Radcliffe Hospital | fax : +44 (0) 1865 221322
    Oxford OX3 9DU England
    ================================================== =========

    Sylvain,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • ABAP code for creating a report variant

    Hi,
    I would like to create parameter on selection screen type SLIS_VARI. I would like that the program will start with pre-defined variant in ALV grid, the same as it is on standard stock report (MB52)...
    Can someone tell me how to do this, and where to put the code?
    Thanks in advance,
    Saso

    Hi,
    This is the code for variant as parameter and F4 help.
    DATA: g_repid LIKE sy-repid,
          g_dynnr LIKE sy-dynnr.
    DATA: g_save(1) TYPE c VALUE 'A',
          g_exit(1) TYPE c,
          gx_variant LIKE disvariant,
          g_variant LIKE disvariant.
    PARAMETERS: p_vari LIKE disvariant-variant.
    INITIALIZATION.
      g_repid = sy-repid.
      g_dynnr = sy-dynnr.
      PERFORM variant_init.
    *Get default variant
      gx_variant = g_variant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        p_vari = gx_variant-variant.
      ENDIF.
                      AT SELECTION SCREEN                               *
    AT SELECTION-SCREEN.
    *--PAI of selection screen
      PERFORM pai_of_selection_screen.
    *---F4 option for report variant
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
      PERFORM f4_for_variant.
                         SUB-ROUTINES                                   *
    FORM variant_init.
      CLEAR g_variant.
      g_variant-report = g_repid.
    ENDFORM.                    " variant_init
    FORM pai_of_selection_screen.
      IF NOT p_vari IS INITIAL.
        MOVE g_variant TO gx_variant.
        MOVE p_vari TO gx_variant-variant.
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = g_save
          CHANGING
            cs_variant = gx_variant.
        g_variant = gx_variant.
      ELSE.
        PERFORM variant_init.
      ENDIF.
    ENDFORM.                    " pai_of_selection_screen
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = g_variant
          i_save     = g_save
        IMPORTING
          e_exit     = g_exit
          es_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF g_exit = space.
          p_vari = gx_variant-variant.
        ENDIF.
      ENDIF.
    AND pass this gx_variant to ALV Function module.
    Rewards points if helpful.
    Regards,
    Srinivas ch

  • Report Variant Not Found During Transport

    A user has requested a routine change (adding a purchase group) to a report variant.
    According to our procedures, I have gone into our Development system and changed the report variant to include the new purchasing group. I have then created a transport referencing this report and variant.
    However, when I release the transport I get a warning that...
    LIMU VARX REPORTNAME VARIANTNAME not found, object also deleted in target system
    Application help states that it is a Message no. TW 330
    The transport goes through to our production system, but no changes are made. It is essentially an empty transport.
    I have done this type of change before to numerous report variants without any issues, and other request of this nature continue to go through without problems. Any idea why this might be happening, and how it can be resolved?
    Thanks - points will be rewarded.

    Same problem once I face.
    I transported one variant name and after that name changed and again transported.
    It is not showing new variant name so we executed program and
    Goto->variant      and overwrite the previous one.
    Reward if useful...
    Minal

Maybe you are looking for

  • Type anti-aliasing in Save For Web CS5

    Hi, Has anyone found a way to get the type anti-aliasing settings to maintain their appearences in Save For Web. The type looks very different as if its lost the settings when I go to save it. Thanks!

  • The password manager is not working in Firefox 10.

    I've searched for and tried all the solutions I can find on the web, but STILL not working. Anyone help? Thanks in advance.

  • Adobe TV and Ipad

    I have no problem using the Ipad and connecting to Adobe TV to watch Julieanne Kost Tutorials. However, one of her tutorials "The Creative Composite-Drifting" runs on the Ipad for 13 minutes (it is a 50 minute video) and then the video and audio stop

  • 2 problems with my TECRA M2

    I have a Tecra M2 I have 2 problems with the notebook. 1 - when I put a second disk (slim) the pc don't choice the first to open. I must put the key F1 for open windows xp. 2 - Other problem that the key (2@) don't make nothing when I put on them. Do

  • Another "Sender Address Invalid"

    I have a few email contacts that intermittently will not send and some just will not send. And some take a variable amount of time to send, from a couple hours to a few days. Then they just magically take off. Often I hear them go in the middle of th