TS3988 synchronizing in specific period

My email is not synchronizing in a specific period from May 2012 till day before yesterday. From yesterday the new email and mail before May 2012 is synchronizing well. I have tried to delete my icloud account and than loaded again. Same problem is occured. On the icloud server my latest emails are still there.
Who can advice or help me, Simon

Hi karthik..
here you are.
SELECT   br.resources, rmst.resource_desc, b.cost_cmpntcls_code,
*(AVG (gmf_cmcommon.get_rsrc_cost (br.resources,*
bh.organization_id,
bvd.consume_layer_date,
*1000,*
*0*
*) avg_resource_cost,*
SUM (bvd.consume_ib_pri_qty) hrs,
*( (SUM (bvd.consume_ib_pri_qty))*
** (AVG (gmf_cmcommon.get_rsrc_cost (br.resources,*
bh.organization_id,
bvd.consume_layer_date,
*1000,*
*0*
*) AS rsc_value*
FROM gmf_batch_vib_details bvd,
gmf_batch_requirements br,
gme_batch_header_vw bh,
cr_rsrc_mst_vl rmst,
cm_cmpt_mst_b b
WHERE rmst.cost_cmpntcls_id = b.cost_cmpntcls_id
AND bh.organization_id = :p_org_id
AND br.resources BETWEEN NVL (:p_resources_lo, br.resources)
AND NVL (:p_resources_hi, br.resources)
AND br.batch_id = bh.batch_id
AND br.resources IS NOT NULL
AND br.ingredient_item_id IS NULL
AND bvd.requirement_id = br.requirement_id
AND bvd.line_type = 0
AND rmst.resources = br.resources
AND b.cost_cmpntcls_code BETWEEN NVL (:p_cmpntcls_lo,
b.cost_cmpntcls_code
AND NVL (:p_cmpntcls_hi,
b.cost_cmpntcls_code
AND (   rmst.resource_class >=
NVL (:p_resource_class_low, rmst.resource_class)
OR (rmst.resource_class IS NULL AND :p_resource_class_low IS NULL)
AND (   rmst.resource_class <=
NVL (:p_resource_class_hi, rmst.resource_class)
OR (rmst.resource_class IS NULL AND :p_resource_class_hi IS NULL)
GROUP BY b.cost_cmpntcls_code, br.resources, rmst.resource_desc
waiting for your suggestions .
Edited by: Ahmed.Abbas on Jul 12, 2011 6:30 AM

Similar Messages

  • Inactive Item report to show Item bought within a specific period and not sold within a specific period by whse and have stock

    Hi
    I'm trying to come up with query report to show Inactive Item bought within a specific period and not sold within a specific period by whse and have stock
    The report should show  Item Number, Item Name ,Item cost,Retail Price [Based on a price list], Qty in Whse, Last Purchase Date, Last sale Date etc.
    e.g item bought between 2011-2013 and have not been sold with the same date range or the last 12 months.
    Regards
    Brian Ndunda.

    Hi,
    Try this query:
    SELECT T0.[ItemCode], T0.[ItemName], T0.[OnHand], T0.[AvgPrice], T0.[LastPurPrc], T0.[LstSalDate] FROM OITM T0  left JOIN INV1 T1 ON T0.ItemCode = T1.ItemCode left JOIN OINV T2 ON T1.DocEntry = T2.DocEntry WHERE T1.[Quantity] is null and  T0.[OnHand] >0 GROUP BY T0.[ItemCode], T0.[ItemName], T0.[OnHand], T0.[AvgPrice], T0.[LastPurPrc], T0.[LstSalDate]
    Thanks & Regards,
    Nagarajan

  • WCS Lobby Ambassador audit report for a specific period of time

    Hi all,
    I know there is an WCS audit report for each lobby ambassador activities. But the problem is that I see only activities from Nov 9 to the present. I don't know what the reason is, whether somebody erased that information before Nov 9 or something else happened.
    Is there any option to manually configure a specific period of time, for example obtain all activities for last 3 months?
    Thanks for any hint.
    Jozef

    Hi Koti,
    What error did you meet when you used audit report from Oct 16 to Oct 31?
    Please check the log file to find more information about this issue. The path of the log file is: C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS. You can check the log file whose modified date is from Oct 16 to Oct 31.
    In addition, please deactivate and reactivate Reporting feature at site collection level.
    A similar post for your reference:
    http://sharepointknowledgebase.blogspot.com/2012/07/unexpected-error-when-trying-to-view.html#.VG2cFouUeog
    About audit log report, please take a look at:
    https://support.office.com/en-us/article/Configure-audit-settings-for-a-site-collection-a9920c97-38c0-44f2-8bcb-4cf1e2ae22d2?ui=en-US&rs=en-US&ad=US
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • New GL - Financial Statement for Specific Periods

    We are using the new GL. I am looking for a report similar to F.01. Instead of displaying reporting period, comparison period, absolute difference, and rel diff, we would like to display amounts for specific periods.
    For example, we would like to see totals for period 11 2009, period 10 2010, and period 11 2010 all in one report with columns like below.
    Ccode     Acct          11.2009          10.2010          11.2010
    ABCD     101000          7.221,53     6.482,51     5.418,92
    ABCD     102000          2.447,34     2.361,81     3.144,62
    Is there such a report? I have looked, but it appears that all the reports can only be displayed for a range of periods.
    Thanks for your help.
    Brenda

    Hi,
    define such a report using T-code FGI0.
    Best regards, Christian

  • Create a Crystal report to display the sum of G/L account code within a specific period

    Hi,
    Just wonder is it possible to create a crystal report to display the total of a G/L account code within a specific period?
    How to write the query to get the sum within a specific period?
    For example:
    Period: 2014-06-01-2014-06-10
    Account code A: USD "TOTAL"
    Account code B: USD "TOTAL"
    Thanks

    Hi Olga,
    Please check below Query.
    SELECT T1.[Account], T1.[ShortName], SUM (T1.[Debit]) as Debit, SUM (T1.[Credit]) As Credit, SUM (T1.[FCDebit]) As FCDebit, SUM (T1.[FCCredit]) As FCCredit, SUM (T1.[SYSDeb]) As SysDebit , SUM (T1.[SYSCred]) As SysCredit  FROM OJDT T0  INNER JOIN JDT1 T1 ON T0.[TransId] = T1.[TransId] WHERE T1.[RefDate] >=[%3]  AND   T1.[RefDate] <=[%4]
    Hope this Help
    Regards::::
    Atul Chakraborty

  • Pull all GL Lines for specific period

    I am in need of pulling all GL Lines for a specific period. However, the query I built is also pulling in Project Account Lines. What I want are lines that posted to an account. I've posted my query below but can someone shed light onto how I can pull al GL Lines that posted to an account for a specific period?
    thanks,
    select distinct
    cb.segment1
    ,cb.segment2
    ,cb.segment3
    ,cb.segment4
    ,cb.segment5
    ,cb.segment6
    ,cb.code_combination_id
    , fv.description acct_desc
    ,jh.posted_date
    ,jh.je_category category
    ,jh.name entry
    ,jh.description reference
    ,jh.external_reference
    ,jb.name batch
    ,jl.accounted_dr debit
    ,jl.accounted_cr credit
    ,usr.user_name last_updated_by_username
    ,usr.description last_updated_by_user
    ,cusr.user_name created_by_username
    ,cusr.description created_by_user
    ,jl.EFFECTIVE_DATE
    ,jl.je_header_id je_unique_id
    from gl_je_headers jh
    , gl_je_lines jl
    , gl_je_batches jb
    , gl_code_combinations cb
    , FND_ID_FLEX_SEGMENTS fs
    , FND_FLEX_VALUES_VL fv
    , fnd_user usr
    , fnd_user cusr
    where
    jh.je_header_id = jl.je_header_id
    and jh.je_batch_id = jb.je_batch_id
    and jl.code_combination_id = cb.code_combination_id
    and fs.flex_value_set_id = fv.flex_value_set_id
    and fv.flex_value = cb.segment1
    and jb.last_updated_by=usr.user_id
    and jb.CREATED_BY = cusr.user_id
    and jl.EFFECTIVE_DATE between '01-APR-10' and '5-APR-10'

    hi friend
    u have specify ur account segments so it will only retrive the account code u want
    u can also limit Source_Name for specifying the source of journals
    but for limiting post date u have to write the posted date u want by putting condition on "Posted_Date" in GL_JE_Headers
    bests

  • Programs which are not being executed for a specific period

    Hi,
    We are planning to do the application upgrade in few months,with respect to that we would like to find out what all programs/transactions(standard or custom) which are not being executed for a specific period.What is the way to find this?
    Regards,
    Sam

    Hi Sam,
    You can use st03 and defice theprograme name and period to sotp the activity.
    Regards,
    Anil

  • HR Form do not select any data from specific Period

    Hi All
    I am facing issues on the HR FORMS for Brazil related to the Remunaration Statement
    When I try to select any employee from a specific period (before April 2012), the system does not select any data.
    From April 2012 until the current period and I could select the data and print the Form
    I do not believe that is related to the Master data from the Employee, since it is always related to the same period, I guess it is on the HR Form configuration, retricting the period anywhere, but I could not find it
    do you know any idea on how to fix it ?
    Regards

    Hi Steve,
    In SQL Server Analysis Services, we can hide or disable hierarchy level by using
    AttributeHierarchyEnabled property, however, when this property is set to false, this level will not appear no matter if contain data or not. In your scenario, you want to hide the hierarchy level dynamically, right? As Aleksandr
    said, I am afraid there is no such a method to achieve it.
    If you have any concern about this behavior, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product. Your feedback enables Microsoft to make software and services the best that they can be, Microsoft might consider to add this feature
    in the following release after official confirmation.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Export data for specific period through Data Pump

    Hi,
    I've a specific requirement to take the dumps of some tables for specific time period. like between last 10 days like 01-JAN-11 to 10-JAN-11. How can I acommplish this. For Documentation what I read is that we can export the data for specific period of thie by either setting FLASHBACK_SCN or FLASHBACK_TIME parameter in expdp command but this is point in time export not for the specific time export.
    Please guide me how can export between the specific time. like between 1-JAN to 10-JAN
    Regards,
    Abbasi

    export between the specific time. like between 1-JAN to 10-JANYou need to clarify your requirements. Data is always "at a point in time". I can see data as at noon of 01-Jan. I can see data as at noon of 10-Jan. What would I mean by data "between" 01-Jan and 10-Jan ?
    Say the table has 5 rows on 01-Jan :
    ID    VALUES
    1      ABC
    2      DEF
    3      TRG
    4      MXY
    5     DEW2 Rows "6-GGG" and "7-FRD" were inserted on 02-Jan.
    2 Rows "2" and "3" were updated from "DEF" and "TRG" to "RTU" and "GTR" on 03-Jan.
    1 Row "5-DEW" was deleted on 09-Jan.
    2 Rows "8-TFE" and "9-DZN" were insereted on 09-Jan.
    Can you tell me what is the "data between 01-Jan and 10-Jan" ?
    (the above example actually happens to have an incrementing key column "ID". Your table might not even have such an identifier column at all !)
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jan 10, 2011 5:23 PM

  • Oracle HR 11.5.7 -Select DateTracked Info of Employees for Specific Period

    Oracle HR 11.5.7 -Select DateTracked Info of Employees for Specific Period (From/To)
    Hi,
    We have Oracle Human Resources 11.5.7 and I would like to know which is the best way to use when need to query data for employees valid within a specific period (From/To) or at specific date.
    For example:
    Say Current Date= 25-OCT-05
    1.
    If I want to query the number of employees booked for a training event occurred as at 01-AUG-05 and one of the employees booked left as at 30-SEP-05, I would like to be included in the query.
    or 2.
    If I want to see the employees assignment details for a specific period to see the active(latest) assignment details as at that period.
    I would appreciate any feedback regarding the best way to do such queries as far as accuracy of data and performance is concerned.
    Thanking you in advance.
    Best regards,
    Elena

    Thank you for your reply..:)
    Actually I'm already using this..
    My problem is when I need to retrieve information for a specific period of time.
    For example say I want to retrieve all sickness absences for Year 2004 and want to retrieve the last employee details (people & assignment tables) that fall within this period (either with an effective date >= sysdate (ie. still active) or which was current upto 31-dec-2004 and might changed later on).
    To be more specific let's say an employee took sick leave in 2004 for total 10 days and has the following rows in per_people_f and per_assignments_f:
    per_people_f:
    start_date end_date person_id other personal details
    01-FEB-2001 - 15-MAR-2004 3808 xxxx
    16-MAR-2004 - 30-JUN-2004 3808 yyyy
    01-JUL-2004 - 17-FEB-2005 3808 zzzz
    18-FEB-2005 TO DATE 3808 www
    per_assignments_f:
    start_date end_date person_id assign_id other assignment details
    01-FEB-2001 - 15-JAN-2003 3808 1114 aaaa
    16-JAN-2003 - 30-AUG-2004 3808 1114 bbbb
    31-AUG-2004 - TO DATE 3808 1114 cccc
    What I need the query to return for the above example is:
    per_people_f:
    start_date end_date person_id other personal details
    01-JUL-2004 - 17-FEB-2005 3808 zzzz
    and
    per_assignments_f:
    start_date end_date person_id assign_id other assignment details
    31-AUG-2004 - TO DATE 3808 1114 cccc
    and sickness days =10
    (sum of duration where
    absence start_date >= 01-JAN-2004
    AND end_date<=31-DEC-2004)
    Thanking you in advance for any help on this issue.
    Regards,
    Elena

  • Resources Value In specific period

    Hi,
    Is there any way to get the total resources values in specific period?
    I want to know for each resource...
    1- How many hours it made in this period.
    2-the total value for this resource...
    Grouped by the cost component class IE: (Labor , Machine ) ...
    Waiting for your ideas and any thing that may helps.
    Thanks in advance.

    Hi karthik..
    here you are.
    SELECT   br.resources, rmst.resource_desc, b.cost_cmpntcls_code,
    *(AVG (gmf_cmcommon.get_rsrc_cost (br.resources,*
    bh.organization_id,
    bvd.consume_layer_date,
    *1000,*
    *0*
    *) avg_resource_cost,*
    SUM (bvd.consume_ib_pri_qty) hrs,
    *( (SUM (bvd.consume_ib_pri_qty))*
    ** (AVG (gmf_cmcommon.get_rsrc_cost (br.resources,*
    bh.organization_id,
    bvd.consume_layer_date,
    *1000,*
    *0*
    *) AS rsc_value*
    FROM gmf_batch_vib_details bvd,
    gmf_batch_requirements br,
    gme_batch_header_vw bh,
    cr_rsrc_mst_vl rmst,
    cm_cmpt_mst_b b
    WHERE rmst.cost_cmpntcls_id = b.cost_cmpntcls_id
    AND bh.organization_id = :p_org_id
    AND br.resources BETWEEN NVL (:p_resources_lo, br.resources)
    AND NVL (:p_resources_hi, br.resources)
    AND br.batch_id = bh.batch_id
    AND br.resources IS NOT NULL
    AND br.ingredient_item_id IS NULL
    AND bvd.requirement_id = br.requirement_id
    AND bvd.line_type = 0
    AND rmst.resources = br.resources
    AND b.cost_cmpntcls_code BETWEEN NVL (:p_cmpntcls_lo,
    b.cost_cmpntcls_code
    AND NVL (:p_cmpntcls_hi,
    b.cost_cmpntcls_code
    AND (   rmst.resource_class >=
    NVL (:p_resource_class_low, rmst.resource_class)
    OR (rmst.resource_class IS NULL AND :p_resource_class_low IS NULL)
    AND (   rmst.resource_class <=
    NVL (:p_resource_class_hi, rmst.resource_class)
    OR (rmst.resource_class IS NULL AND :p_resource_class_hi IS NULL)
    GROUP BY b.cost_cmpntcls_code, br.resources, rmst.resource_desc
    waiting for your suggestions .
    Edited by: Ahmed.Abbas on Jul 12, 2011 6:30 AM

  • SOAP synchronous channel specific call time out configuration

    Hi,
    This is regarding channel specific timeout configuration in SOAP sender and receiver channel.
    We are having SOAP to Proxy synchronous web services. One of the web service is taking longer to execute the RFC's in ECC and getting the results back to PI.
    The error we are getting is Message Expired in soap ui and PI logs.
    When I checked the execution time it says 301165 ms from soap ui.
    The default setting of XI is 180000 ms i.e 3 mins.
    I configured channel specific time out in both sender and receiver channels. Now the configuration has timeout of 600000 ms. Below is the screen shot.
    SENDER:
    RECEIVER:
    But still the message is getting timed out and below is the error:
    Unable to contact target server XXXXXXXX:8000 after 1 tries.
    Below is the error log from PI :
    Please suggest the solution. I am not sure whether its actually  taking the specific configured time.
    Thanks,
    Vertika

    Hi Vertika,
    Please check
    SAP Note 1660913 - SOAP/XI Adapter - XI.Timeout parameter support in 7.30+
    For soap sender channel
    SAP Note 1644846 - Parameter syncTimeout doesn't work under SOAP sender channel
    regards,
    Harish

  • 70-Permission denied while importing data in a specific period for one location

    Hi,
    I've been working with FDM without any troubles for the past months, however when we try to import data to period (2013-01-01) in a specific location we keep on getting the  70-Permission denied error.
    We've checked that the application has it's proper UNC path and the strange thing is that it all works perfectly fine with all the other periods in all location but not this period on this one location, we simply can't import data.
    I have deleted the period and created it again but we keep on getting the error. I am about to delete the only location where we get the error and then create it again to see if this solves the problem.
    Could anybody give me a clue of what could be the problem?
    Thanks and regards
    Santiago Ruiz

    Has the location / period been locked? From memory i think the option to lock / unlock is in the tools menu option, based on location / period / category.

  • Group by specific periods of time - group by 5 seconds

    I would like to group records for every 5 seconds
    The following query groups for every second
    select to_char(state_transition_dt, 'MM/DD HH24:MI:SS'),
    UPPER(item_type) Type, UPPER(sync_operation) operation, count(*)
    from sync_traffic_flow h
    group by to_char(state_transition_dt, 'MM/DD HH24:MI:SS'), UPPER(item_type), UPPER(sync_operation)
    order by 1
    is there any way to group it for every 5 seconds??
    I tried following options:
    on executing the following query in timesten database I am getting error
    SELECT to_char(sysdate + (10/24/60), 'HH:MI AM') FROM dual;
    Error:
    Inconsistent dataypes:(DATE,NUMBER) are not compatible in expression (SYSDATE _ 10/24/60) - file "ptDataType.c" ...
    Also I am unable to use TRUNC function of oracle database.
    Is there any way to group records by specific intervals of time??

    Hi,
    I am looking for a query where I can get rows grouped by every 5 sec
    The following query fetches data for ever second but is there any way to fetch rows grouped by 5 sec
    select
         to_char(state_transition_dt, 'MM/DD HH24:MI:SS'),
         UPPER(item_type) Type,
         UPPER(sync_operation) operation,
         count(*)
    from
         sync_traffic_flow h
    group by
         to_char(state_transition_dt, 'MM/DD HH24:MI:SS'),
         UPPER(item_type),
         UPPER(sync_operation)
    order by 1
    I tried another query;
    instead of grouping records for 5 seconds this query is adding 5 seconds to each record and giving me same information back
    any other ways to group rows for every 5 seconds?
    select
    to_char(state_transition_dt+ numtodsinterval(5, 'SECOND'), 'MM/DD HH24:MI:SS'),
    UPPER(item_type) Type,
    UPPER(sync_operation) operation,
    count(*)
    from
    sync_traffic_flow h
    group by
    to_char(state_transition_dt+ numtodsinterval(5, 'SECOND'), 'MM/DD HH24:MI:SS'),
    UPPER(item_type),
    UPPER(sync_operation)
    order by 1
    Edited by: user13280764 on 01-Sep-2010 06:53

  • Asset history for specific period

    Hi All,
    How to check the list of assets for a particular period.
    Could u plz. suggest any body immediately.
    Regs,
    Bhaskar

    Follow the path in Menu
    financial accounting->Fixed asset->Information system->Reports on Asset Accounting -> Balance Lists ->Asset Balances
    Here while pulling up the report select radio button List assets

Maybe you are looking for