Leaving date is not available in the Query report

Hi,
I had a problem that the leaving date is not generated while running a report from the sap standard report.
Note:
I has assigned the leaving action config as
Coustomer Specific : 3
Employment: 0
Specific Payment: 0
Should we look into ADMIN LDATE switch
Anything to do with Feater "LEAVE"
Or anyother issue pls.
Thanks for the community.
Regards
sekhar

Hi,
Run the report RPLMIT00 and in the selection criteria select employment statusis not equal to 3.
Execute the report .
You can find the leaving date.
Warm Regards,
Kapil Kaushal

Similar Messages

  • Datas are not available to the query when upload a Infopackage

    Hello People,
    I Would like to know what can be the reason ..why the datas are not available when we execute an upload from FlatFile to the Cube (this one is the last target one).
    Considering tere aren´t any poroblem in may target (Cube)
    The system shows us the upload was ok, but the status about the "available datas to the query" was not activated.
    Thanks,
    Rosana.

    Hi ,
    Please go to T code SE16--> Table RSDDAGGR
    Here AggrUID(STARTUID)  give not equal to blank, you will get list of all the cubes which has aggregates.
    If your cybe is in this list , you need to rollup the data to mae this available in reporting.You can rollupp the data by going into Manage of the cube.
    -Vikram

  • UDF Value is not coming in the query report

    Hi all,
    i have designed query report based on AR Invoice which has some UDF .
    all udf have FMS applied and all these udf has values.
    when i run report some times udf values are coming in the report and somtimes not even if udf contains values.
    if i open perticular invoice and again update that udf and again run report now udf value will come in the report.
    every time i need to manualy update the udf even if that udf contain value.
    how to avoide this problem.
    Pls suggest solution.
    Regards,
    Chetan

    Hi Chetan,
    Try this,
    -> Open the require document(module).
    Assign this procedure and then ADD the document
    and Run the Query Report.
    1. Goto the UDF and Click (ShiftAltF2).
    2. Select the SEARCH BY SAVED QUERY.
    3. Assign the FMS Query in UDF.
    4. Select the AUTO REFRESH WHEN FIELD CHENGES.
    5. Select the Auto Refresh Field (for example CardCode (or) Remarks).
    6. Check the Display Saved Values.
    OR
    -> Open the require document(module).
    1. Goto the UDF and Click (ShiftAltF2).
    2. When will you add the document at that time
    you can Click the SHIFT + F2 and than ADD the document.
    and than Run the Query Report.
    Regards,
    Madhan.

  • Data Manager not available in the BPC 7.0 Action Pane

    Hi,
    I have just installed BPC 7.0 and everything is working fine, except I don't have access to the Data Manager.
    According to the BPC guide, this is how to start Data Manager:
    1. Click the Business Planning and Consolidation icon on your desktop.
    2. From the Business Planning and Consolidation launch page, select Business Planning and Consolidation for Excel.
    3. From the Getting Started - BPC for Excel action pane, select Manage Data.
    I don't have "Manage Data" as an option in the Action Pane. The options I have under Available Task Categories are: "Reporting & Analysis", "Journals" and "Open System Reports".
    I also do not have a menu called eData.
    Any ideas on what I can do?
    Thanks,
    Sam

    Please check your task profile....
    Make sure you  have all task profile related to data manager....do let us know if youstill face this problem

  • Infoobject not available in the query

    hai gurus
    We have appended a cube with info object that had a query already on it but that infoobject is not available in query
    hw to refresh the query designer to get new appended info object
    TQ
    KEERTHi

    Hi,
    Welcome to SDN!
    Make sure that your cube is active.
    Close your BEx and open again.
    Hope it helps.
    Best regards,
    Eugene

  • Why is the movie Date Night not available in the US store?

    Date Night seems to be available in the Austrailia store (http://itunes.apple.com/au/movie/date-night/id370805508), but not the US store.

    Please note that content purchased from the iTunes Store is country-specific because of Digital Rights Management and Copyright laws that depend on the country you are in and the country the content you want is registered under.
    If you want content on the AU store, you will need to change your account's address and payment information to one that is valid in the AU store. Otherwise, You will need to wait until the studios give iTunes permission to release the movie.

  • Assets upload: Deactivation Date is not available in the Standard Program

    Hi,
    I am trying to use the standard program for Assets upload,RAALTD01. But, the field de-activation date (ANLA-DEAKT) is not available for mapping. This is the only field am missing out of more than 200 fields involved in the upload. What would be the best approach inorder that I can use LSMW and at the same time map this deactivation date field ; provided we are not using the Recording method.
    Looking forward to your replies.
    Regards,
    Sophia Xavier

    you can use ABAP program with BAPI 
    call function 'BAPI_FIXEDASSET_OVRTAKE_CREATE'

  • Date is not inserted in the DB table

    Hi,
         I have a view, showing some data, including date and I have a save button. View has some of the fields update able. When I click the save button a bean function is called which run the query to update values in the DB table, taking those values from the view.
         Now the problem is, date is not updated as the query doesn't run just  because of the date and I am getting this error:
    ORA-01861: literal does not match format string
    and the date format is: 2013-09-23
    I have tried using to_date() method, but it didn't work for me.
    Here is my query:
                oracle.jbo.domain.Date  Pshipdate =( oracle.jbo.domain.Date) rowSelected.getAttribute("Pshipdate");
                    "UPDATE SHIPEXT" +
                    " SET APP = " +
                    "'" + status + "' " +
              ", PSHDAT = " + "to_date('" + Pshipdate + "', 'dd/mm/yyyy')"
                    +  ", MBY = " +
                    "'" + LoggedInUser + "'"
                    + ", IP = " +
                    "'" + IP + "'"
                    + ", DSREMS = " +
                    "'" + descrems + "'" +
                    ",  MDAT  = "
                    + "to_date('" + getCurrentTimeStamp() + "', 'dd/mm/yyyy')" +
                    " Where WO =" +
                    "' " + workorder + "'"
                    + "AND SR = " +
                    "'" + sr + "'"

    I'll repost what you branched off
    There's all kinds of things wrong.
    For a start, I can't see P_shipdate anywhere, though I can see Pshipdate.
    If you mean Pshipdate, Java is converting it to a string which you are then converting back to a date with to_date.
    Check that the default print  string returned is of dd/mm/yyyy format.
    Similarly with MDAT and getCurrentTimestamp - what is default print string of geCurrentTimestamp?
    All these problem could be avoided if you use bind variables.
    We are trying to help but you seem determined not to accept any help.
    Have you checked the print string formats of Pshipdate and getCurrentTimestamp?

  • Pivot on Query - Date Grouping not available

    With the current version of Power Query I've found that the Group feature for dates is not available when you select the Power Query query as the data source for the pivot table.
    It's an easy fix to load the query to a worksheet then pivot on the table.

    James, is this still a problem?
    Should this be in the Power Query forum?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • How can I find out the date of a movie I am trying to pre-order if the date is not available/showing in the "manage pre-order" section?

    How can I find out the date of a movie I am trying to pre-order if the date is not available/showing in the "manage pre-order" section?

    Thanks so much for your reply King_Penguin. No, sadly there is not indication of the expected release date on the film, it's no where to be found. I have also tried to look in other places online, but no luck. I guess your latter statement jives more with my situation, that  being the studio/rights-holder hasn't feel inclined to provide the date.

  • I've upgraded to Yosemite. Iphoto is out of date and won't open. I'm being directed to the app store for a free upgrade but there is nothing there. being told 'upgrade is not available in the US'

    I've upgraded to Yosemite. Iphoto is out of date and won't open. I'm being directed to the app store for a free upgrade but there is nothing there. being told 'upgrade is not available in the US'

    iPhoto is no longer available from the Mac App Store. Update to 10.10.3 and use Photos.
    (125792)

  • If the data is not available in R/3 systems(Ex: MM), who will load the data

    Hi All,
    Can anybody tell me that if the data is not available in R/3 systems(Ex: MM), who will load the data into that?
    Need Helpful Answers....
    Regards,
    Kiran Telkar

    Hi kiran,
    The data is generated in the R/3 when the business transactions take place.
    No one loads the data into R/3 as it done with BW. R/3 is a OLTP(online transactional processing) system which aides the day to day transactions of a business & theese transactions are stored in the R/3 in there respective tables in the form of records, so one record is generated for each transaction done.
    For example there will be record generated in different modules when there is an order placed or when a material is delivered against an order.
    Hope this helps,
    regards.

  • Position 1000001 not available for the start date of the infotype record

    Dear Experts/Gurus,
    I am getting the following error message "Position 1000001 not available for the start date of the infotype record" while trying to upload employees HR Master data in PA40.
    I know the reason why because the position is created on 01.05.2009 & employee DOJ is 01.02.2006 both are mismatch & the position date has to be changed earlier date than DOJ but i don't know how to do.
    Please let me know how to sort out this issue asap.
    Rgds,
    Vikrant

    Dear Friend,
    Use  PP02, select the position no, select infotype 1000 (Object), select planning status & validity(date) and then use the copy function to change the start date.
    Regards,
    Aks

  • Material availability date can not be after the delivery date

    Dear Experts,
    we are using the following scnario,
    1. Once the user creates the sales order, automatically system creates PO in the background.
    we have created Bapi program for creation of Background PO in SD User Exit.
    The following issue occurs in Prd, DS1, QS1 server, We have done Technical upgradation project, Now when we creates sales order automatically po created with error message of Material availablity date can not be after the delivery date. even sales order no also not updated in the PO.
    QAS server (without technical upgrade) i refered the same input parameter and used the same and create the sales order system generates PO automatically without error message.
    Does any one can through lights on this issue,
    Thanks and Best Regards,
    Muralidharan S

    Hi
    The dates are determined due to shipping and transportation scheduling settings. So check whether the shipping and transportation scheduling is being performed as per the cofiguration settings after Technical upgrade. Since the MAD date should not be after Delivery date but it seems that the dates are not determined properly.
    Also check the Transit  time, Loading time, Pick/Pack time and Lead time are retained as same as before the technical upgrade. Use the QAS server settings to validate the settings in other servers.
    Regards
    Rajkumar K

  • Use Plan data if actual data is not available(By month)

    Hello All,
    We have a cube which stores the actual and plan data by month. There will be plan data for all the months of the year in the cube whereas the actual data is only populated for that month at the end of the month. So, there will not be any data for the rest of the months of the year.
    QUESTION : Is it possible to create a bex query to show data by month with one key figure which should be Actual data if available in the cube or else the Plan data. I would be able to provide the last month where the data is available to the query in a form of a variable.
    Example
    Data In the Cube
    Month    Type     Sales
    JAN       Actual   1000
    JAN       Plan       750
    FEB       Actual   1500 
    FEB       Actual   2000
    MAR      Plan      1200
    Query Output
    Month    Type     Sales
    JAN       Actual   1000
    FEB       Actual   1500 
    MAR      Plan      1200
    Thanks in Advance!
    -Vinod Swarnapuri
    SAP EPM/BW/BI

    Hi,
    in the row you put the month.
    in column you have three keyfigures:
    - restricted keyfigure r1 : amount with selection actual
    - restricted keyfigure r2: amount with selection plan
    - calculated keyfigure c1: (r1 ne 0) * r1 +  (r1 eq 0) * r2
    please test it. It's should be work.
    Sven
    Edited by: Sven Mader on Mar 5, 2010 10:51 AM

Maybe you are looking for