Returning results that fall within the current financial year

Hi Everyone,
I am using MSSQL Server 2008R2 and I am interested in returning rows from a 'financial' table that fall within the current year (each row contains a 'Entered Date'). I am located in Australia so my financial year consists of all entries between the date
01/07/xx to the 30/06/yy.
Can anybody suggest some code, perhaps using the datediff() function, or other functions as required to achieve what I need?
Kind Regards,
David

Hi,
Try the Below Script.Hope it works
DECLARE @StartOfFinancialYear
DATETIME
-- This gets 1st April for the current year
SET @StartOfFinancialYear
= CAST(YEAR(GETDATE())
AS VARCHAR)
+ '0701'
SELECT
FROM
<YourTable>
WHERE DateField
>= @StartOfFinancialYear
AND DateField <
DATEADD(yy, 1, @StartOfFinancialYear)
-- less than 1st July NEXT year
Regards, PS

Similar Messages

  • Selecting Invoice (OINV) records from the current financial year

    Hi Everyone,
    I would like to select Invoices (OINV) from the current Financial Year. I am located in Australia and our financial year is measured from the 1st of July to the 30th of June.
    Here is a pseudo - code sample -
    SELECT T1.DocEntry, T1.DocNum, T1.DocDate
    FROM AU.dbo.OINV T1
    WHERE "CURRENT FINANCIAL YEAR"
    Notice above that I would like to replace "CURRENT FINANCIAL YEAR" with an SQL code snippet that selects all dates from the beginning of the financial year (1/07/xx) to the current date.
    Any help here will be greatly appreciated.
    Kind Regards,
    David

    Hi Everyone,
    Here is a code snippet that permits returning only values from the current financial year -
    DECLARE @day nvarchar(2) = DAY(GETDATE())
    DECLARE @currentMonthAndDay INT = CAST(CAST(MONTH(GETDATE()) as nvarchar(2)) + (REPLICATE('0', 2 - LEN(@day)) + @day) as int)
    DECLARE @StartOfFinancialYear DATETIME
    SET @StartOfFinancialYear = CAST(YEAR(GETDATE()) - CASE WHEN @currentMonthAndDay<701 then 1 else 0 end as nvarchar(max)) + '0701'
    SELECT *
    FROM AU.dbo.OINV T0
    WHERE T0.DocDate >= @StartOfFinancialYear
    AND T0.DocDate < DATEADD(yy, 1, @StartOfFinancialYear)
    Many thanks to Faheem for providing the answer to returning only results from the current financial year, in this thread: http://social.msdn.microsoft.com/Forums/sqlserver/en-US/2edbe630-faca-4f94-a014-04f5a832f81d/returning-results-that-fall-within-the-current-financial-year?forum=transactsql
    Kind Regards,
    David

  • Current Financial Year

    Hi All
    how i know that which is the current financial year of particular company in which i am logged in?

    Hi,
    For that u need to use the company serrvice object, I guess the following sample could help u.
    Dim oCompanyService As SAPbobsCOM.CompanyService
    Dim oPeriodCategoryColl As PeriodCategoryParamsCollection
    Dim oPerCategory As PeriodCategory
    Dim oFinancePeriods As FinancePeriods
    Dim oFinancePeriod As FinancePeriod
    Dim i As Integer
    Dim j As Integer
    'get company service
    oCompanyService = oCompany.GetCompanyService
    'get Period Category Collection
    oPeriodCategoryColl = oCompanyService.GetPeriods
    'print all periods
    For i = 0 To oPeriodCategoryColl.Count - 1
       'get period category
        oPerCategory = oCompanyService.GetPeriod(oPeriodCategoryColl.Item(i))
        'print period category name
        Debug.WriteLine(oPerCategory.PeriodName)
        'get all finance periods (if the sub period isn't a year then it
        'has more than one finance period, for example sub period month has 12 finance periods)
        oFinancePeriods = oCompanyService.GetFinancePeriods(oPeriodCategoryColl.Item(i))
        For j = 0 To oFinancePeriods.Count - 1
            'get finance period
            oFinancePeriod = oFinancePeriods.Item(j)
            'print the period name
            Debug.WriteLine(oFinancePeriod.PeriodName)
        Next j
    Next i
    Hope it helps,
    Vasu Natari.
    P.S: For more informattion please check the DI help file

  • Sharepoint2010: ArgumentException: Value does not fall within the expected range

    I have a lookup column 'usertype' in one of my list, that is lookup for another list. and in my code when i try to access this column,
    item["usertype"]
    i get an error: ArgumentException: Value does not fall within the expected range.
    I tried with Lookup Resource Throttling in Central Administration. But still i am not able to access this field. And this field is not programmatically created.
    Any idea to solve this..
    Thanks in advance.

    Hi Hemendra,
    In the "Course " List there is a lookup field "CourseType"
    which is lookup to a list having two values "Internal" and "external"
    Here is my code:
    SPList Course = Helpers.GetList(web, "Course");
    SPListItemCollection Mycourse = Helpers.GetListItemsByField(Course, "Course_x0020_Code", "001");
    string CourseType=Mycourse[0]["CourseType"].ToString();
    "Helpers.GetListItemsByField" method will return proper result using CAML query. So Mycourse[0] will have all the fields except the one which i mentioned above. There are other Lookup fields in the same list and all works fine. (Assume Mycourse
    will always have exactly 1 row.)
    Regards,
    Vikas

  • Value does not fall within the expected range in my itemupdated eventreceiver while accessing a splist column on the root site collection

    hi,
     I am performing the below operations:
    1) Itemupdated event handler when a document is uploaded into the document library
    2) Now amreading another list which is in the root  site level so, i used spsite, spweb again and accessed that splist and trying to read single line of text column and user or group column.
    Now when i am reading this, i am getting the error "Value does not fall within the expected range".
    I went to resource throttling under central admin -->my current web appln and changed that value to 20  from 8
    even after performing the above, i am getting the same error.
    pls help anyone has faced this issue before.
    Accessing a splist which is under root site collection within the itemupdated eventreceiver is allowed in SP ?

    hello sir,
     as per my requirement i have to access a  splist which is residing in the ROOT SITE COLLECTION OF THIS WEB APPLICATION. the event receiver i have written is residing in one of the few document libraries within the sub site. there are hundreds
    of sub sites exist in this site collection. I need to access the root site collection within the itemevent receiver and access thatperson column from that splist. why i ahve kept this list at the root site collection level [
    http://server1:2020/ ] , because this  splist is the UI for customer's sp admin for performing  weekly tasks. like adding few items in the splist and my event receiver fires and check this column- person /group
    column ]  and apply permissions on the  document.
    so my doubt is it possible to access the root site collection from my event receiver code.
    spweb from properties web is just the subsite url and not the site collection. i want to get the root sitec ollection url's splist.
    also am already running this code under runwithelevatedprivileges.

  • REST API - Can't expand Title of lookup columns "System.ArgumentException : Value does not fall within the expected range"

    I have a list that has more than 12 columns of type lookup with more than 5000 items and I am using a date field as an indexed column so I can restrict the results to meet the list view threshold.  I am also using $select to restrict the columns to
    meet the lookup column threshold.
    If I run the query below it all works as expected:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Id&$expand=Lookup1
    If I run this query it does not work:
    _api/web/Lists/MyList/items/?$Filter=Created gt '2015-03-10T05:00:00.000Z' and Created lt '2015-03-17T18:25:00.712Z'&$select=Lookup1/Title&$expand=Lookup1
    Error:
    <m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <m:code>-2147024809, System.ArgumentException</m:code>
    <m:message xml:lang="en-US">Value does not fall within the expected range.</m:message>
    </m:error>
    The lookup column "Lookup1" is using Title as the column's information and this should be working.  What is interesting is that changing the lookup threshold has no effect on this but raising the list item view limit does make it work.  The
    date range is selecting less than 5000 items.  So what am I missing here? I just want the Title for the lookup column and my query has about 10 items in it.

    Looking through the logs the error is thrown due to the following error messages:
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields 84h8
    High Field with internal name 'LookupFieldName_x005f_Title' already exists in the field cache
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    Fields ki9p
    High Unable to add join related fields to the Query.[Error 0x80070057]
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General xxpm
    High Unable to execute query: Error 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General 8e2s
    Medium Unknown SPRequest error occurred. More information: 0x80070057
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    03/19/2015 08:26:12.12 w3wp.exe (0x6D34)
    0x7F38 SharePoint Foundation
    General aix9j
    High SPRequest.GetListItemDataWithCallback2: UserPrincipalName=<removed>, AppPrincipalName= ,pSqlClient=<null> ,bstrUrl=siteUrl ,bstrListName=<removed> ,bstrViewName=<null> ,bstrViewXml=<View
    Scope="RecursiveAll"><Query><Where><Eq><FieldRef Name="ID" /><Value Type="Counter">5481</Value></Eq></Where></Query><ViewFields><FieldRef Name="LookupFieldName"
    LookupId="TRUE" /><FieldRef Name="LookupFieldName_x005f_Title" /></ViewFields><ProjectedFields><Field Name="LookupFieldName_x005f_Title" Type="Looku ,fSafeArrayFlags=SAFEARRAYFLAG_DATES_IN_UTC
    3446f49c-f2d2-d0a2-89f4-59dee19b2f45
    The very first message states that it is unable to add join related fields, what could be the possible cause of this?  As you can see rather than specifying a date range which I know contains less than 5000 items, even filtering based on ID gives the
    same result.

  • SSRS 2014 SharePoint integrated - getting error "Value does not fall within the expected range"

    Hi everyone,
    Note sure if this should be in the SharePoint forum instead, but here goes...
    I have got an SSRS report (SQL 2014) deployed to SharePoint 2013, and I am using a command line to call this report. The command line is...
    https://myserver/_vti_bin/reportserver?https://myserver/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    This returns an error "Value does not fall within the expected range"
    If I remove the "&rs:Format=PDF" then the report appears on screen without problems...
    When I look in the sharepoint log files, I see the command line has changed to be 
    https://myserver/_vti_bin/reportserver?https://{machine_name}/Reports/AdjustmentPlan.rdl&rs:Format=PDF&ParamActionGUID=B9B57C49-558B-471A-8BFD-2853673E8874
    I'm not sure why this is happening, but if I can ensure the command line uses the correct SharePoint address, then I think this will fix the problem.
    Any questions or suggestions or solutions gratefully received.
    thanks
    David

    Thanks for the reply. I can probably explain easier than screenshots..
    The server name is "datacentre-cenet" for example
    But the address we use to access SharePoint is https://cenet (ie using the SharePoint Alternate Access mappings). So the command line to call the SSRS report uses the SharePoint name (CENET).
    But when I try to export SSRS to PDF, the command line get changed to
    https://datacentre-cenet which causes an error
    My thought is that somewhere SSRS is using the server name, rather than the correct URL which is
    https://cenet
    So if I could know where SSRS picks up the server name, I could configure that to fix this issue.
    Hope that's more clearer, thanks again,
    David

  • Retrieve all the WindowBackingContext within the current page ?

    Hello,
    How can I retrieve all the WindowBackingContext within the current Page?
    For example,
    Page1 has a Book1,
    Book1 includes Portlet1, Porlet2 and Book1_1
    Book1_1 includes Portlet3 and Portlet4.
    How can I get all the Portlets(WindowBackingContext) in Page1 ????
    Best regards,
    Eric

    * This method returns a deep List containing all the Window, Page, and Book
    * backing contexts of these type of controls that are rendered.
    * @return List of BookBackingContext, WindowBackingContext, and PageBackingContext
    public List getRenderedChildrenWindowBackingContexts()

  • GetListItems() and "Value does not fall within the expected range"

    I have a sharepoint list (it's a task list).  I have the ID of the task - I can access the task like this :
     http://addr/EditForm.aspx?ID=<value>
    This works fine.  I would like to create a query so when I call GetListItems() from a web service, I can select this record.
    This is the code I'm using - when I set the ndQuery.innerxml to a blank string, it returns all records (correctly).  When I enable it, I get the wonderfully useful "Value does not fall within the expected range" error.  I have tried querying
    a number of different fields (besides ID) and every single one gives me that error.
            XmlDocument xmlDoc = new System.Xml.XmlDocument();
            XmlNode ndQuery = xmlDoc.CreateNode(XmlNodeType.Element, "Query", "");
            XmlNode ndViewFields = xmlDoc.CreateNode(XmlNodeType.Element, "ViewFields", "");
            XmlNode ndQueryOptions = xmlDoc.CreateNode(XmlNodeType.Element, "QueryOptions", "");
            ndQuery.InnerXml = "<Where><eq><FieldRef Name=\"ID\" />" + "<Value Type=\"Counter\">" + pTaskID.ToString() + "</Value></eq></Where>";
            ndViewFields.InnerXml = "<FieldRef Name=\"ID\" /><FieldRef Name=\"Title\" />";
            ndQueryOptions.InnerXml ="<IncludeMandatoryColumns>False</IncludeMandatoryColumns>";
            System.Xml.XmlNode nodes = listService.GetListItems(strListID, strViewID, ndQuery, ndViewFields, "3", ndQueryOptions, null);
    I dug into the server logs and this is the XML that I see :
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                                 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
     <GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
       <listName>{61A69E7F-F515-456C-B075-CB80FA59AFED}</listName>
       <viewName>{BBEDC17F-9578-4226-B4FC-E4BE102E6BED}</viewName>
       <query><Query xmlns=""><Where><eq><FieldRef Name="ID" /><Value Type="Counter">87</Value></eq></Where></Query></query>
       <viewFields><ViewFields xmlns=""><FieldRef Name="ID" /><FieldRef Name="Title" /></ViewFields></viewFields>
       <rowLimit>3</rowLimit>
       <queryOptions><QueryOptions xmlns=""><IncludeMandatoryColumns>False</IncludeMandatoryColumns></QueryOptions></queryOptions>
     </GetListItems>
    </soap:Body>
    I don't like seeing two nested <query> tags but there is no way that I can see to remove them!  At this point - can anyone tell me, is there any way to tell WHAT value does not fall within the expected range?  Or WHAT the expected range is?

    Hi Chris,
    Per my understanding, there is an issue when calling GetListItems() from a web service.
    Please check if the “pTaskID” is valid and take the snippet below for a test in your environment:
    public static void getItems()
    var lists = new MyWebServiceDemo.Lists();
    lists.Url = "http://sharepoint/_vti_bin/Lists.asmx";
    lists.Credentials = System.Net.CredentialCache.DefaultCredentials;
    System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();
    //displayName or GUID
    string listName = "List1";
    string viewName = "";
    string rowLimit = "150";
    System.Xml.XmlElement query = xmlDoc.CreateElement("Query");
    System.Xml.XmlElement viewFields = xmlDoc.CreateElement("ViewFields");
    System.Xml.XmlElement queryOptions = xmlDoc.CreateElement("QueryOptions");
    query.InnerXml = "<Where><Eq><FieldRef Name=\"ID\" /><Value Type=\"Counter\">1</Value></Eq></Where>";
    //query.InnerXml = "";
    viewFields.InnerXml = "<FieldRef Name=\"Title\" />";
    queryOptions.InnerXml = "";
    System.Xml.XmlNode nodeListItems = lists.GetListItems(listName, viewName, query, viewFields, rowLimit, queryOptions, null);
    foreach (XmlNode outerNode in nodeListItems.ChildNodes)
    if (outerNode.NodeType.Equals(System.Xml.XmlNodeType.Element))
    foreach (XmlNode node in outerNode.ChildNodes)
    if (node.NodeType.Equals(System.Xml.XmlNodeType.Element))
    XmlNode nameNode = node.Attributes.GetNamedItem("ows_Title");
    String wikiName = nameNode.InnerText;
    Console.WriteLine(wikiName);
    If it is an issue of the invalid item id, for avoiding this error, a workaround is that you can run a request to retrieve all the existing ids in the target list,
    then add a validation to ensure the “pTaskID” is valid.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for
    TechNet Support, contact [email protected].

  • How to get highest number of open cursors within the current calendar day

    Hi all ,
    i need to know how to get the highest number of open cursors within the current calendar day.
    Thanks ,

    823030 wrote:
    the issue is my customer is getting the error ORA-01000: maximum open cursors exceeded and we need an sql statment that gets the following values :
    -highest number of open cursors experienced in the current calendar day.
    -current open cursors
    -and maximum open cursorsThis error is rare. It happens when
    a) the value of the open cursor parameter is set extremly low (default is something like 1000). Low would be something like 10.
    b) <strike>you have many concurrent users(=sessions) and </strike>the application does not use bind values
    In this case each select will open a new cursor, instead of reusing it.
    c) you have a select that opens a cursor for each line. This can happen with a statement where you have the CURSOR keyword somewhere in the select or where clause. Those cursors will be closed when the select is finished. But during the run time of the select, all cursors stay open.
    To track the number of "open cursors" during the day you would need to implement some monitoring. Maybe based on the view that was already mentioned.
    Edited by: Sven W. on May 16, 2011 2:30 PM - since the parameter is on session level, other open cursors should not influence it much.

  • Soap:Server was unable to process request. --- Value does not fall within the expected range

    Brand spanking new Sharepoint 2010 RTM and Designer 2010 RTM install. Unable to edit any page whatsoever even when checking out. Error in SP Designer: soap:Server was unable to process request. ---> Value does not fall within the expected range.
    Like I said, this is a brand new RTM install with nothing altered yet. Why can't I edit any pages? I am using the highest credentials so there should be no permission issues. There isn't anything that is helping me on the Web for this.
    Why would I encounter a problem like this out of the box? This is not the beta - it is RTM!

    Go to :
    Site Collection Administration 
    SharePoint Designer Settings
    and Enable the following
    Enable Detaching Pages from the Site Definition
    Enable Customizing Master Pages and Page Layouts
    Enable Managing of the Web Site URL Structure
    This should resolve the SP Designer Edit Issues.

  • Creating a field or workflow that responds to the Current System Date.

    In our activities/tasks we have a field that is the Expected Completion Date or Required Completion Date. Based on that date, and the current date, I want a workflow to trigger when the required completion date is less than 30 days away, sending daily reminders to the owner/manager that they have a activity/task due.
    The way I see it I have two options.
    1. Customize a field to be the system date. Create a workflow that says every time that field changes, and the date is within 30 days of required completion date, send out an email.
    2. Create a workflow that somehow incorporates the current/system date, and do the same thing as above, substituting the field with the actual date.
    I don't know how to make either of those options happen. Does anyone either have other options or advice on how to make this work?
    Thank you in advance!

    Hello Cyril,
    Here is an idea that could be done:
    You could create a dynamic step by having a step that holds all the properties for both configurations (the superset of the necessary variables) and an extra one that indicates which 'mode' the step is in.  Then you create the main Edit substep in whichever language you desire.  That substep window will then have a box/dropdown/etc. at the top you can use to choose between modes A & B.  When the user changes the value, you would dynamically change the rest of the window to contain the appropriate properties for mode A or B.  You then copy the property values in that window to the Step properties, and copy the mode to your variable and you can run the step in that mode.  When the step then runs, it checks the mode variable, and depending on its value, it will run the step in mode A or B.
    Now we could add a dialog that allows us to choose when we put a step down but we should still allow the user to change later via the Edit substep we create.
    I don't think we can create something that inserts a completely different step, but we can have one step that has the ability to do both and we can pick which one we execute.  Also note we still don't have the ability to edit the Panels for a step, so we have to use a new window that we call from our Edit substep to complete the step.
    Hope this helps.
    Regards,
    Olivier L. | Certified LabVIEW Developer

  • HT1495 upgrading from ipad 2 to 3 - can my apps stay within the current folders?

    I am upgrade from ipad 2 to 3 - can my apps stay within the current folders?

    They SHOULD.
    When you plug in that new iPad you'll be given two options, set up as new, restore from a backup of your old one. Choose the latter and the apps and info from your 2 should transfer over to your 3. You'll need to enter some info, such as the internet connections and passwords, etc, but 90-95% of it will transfer over and your 3 will be a near clone of your 2.

  • How do I generate an array of random numbers that relate to an output wave that falls within a certain frequency range?

    I have been creating random numbers that I'm using within a system, the system is working fine, but now I have realised that the random numbers must be outputted to speakers in such a way as to filter out all but a low frequency range.
    I was thinking about generating a dither signal with a bandpass filter, but could not get it to give me out a full array of 250 values which I could then manipulate.
    The sampling frequency of the output is 200Hz and the 250 data points must fall within the 0-100Hz range.
    Another course of action I am considering is to use an FFT and an inverse FFT to get the data that I'm looking for, but I'm fair
    ly inexperienced with using labVIEW and can't quite get it to work.
    Thanks for the help,
    Hank.

    As you may already know, in the Functions palette/Analysis VIs/Filters VIs are VIs for filtering. There are also some examples for using these filters under Examples/Analysis/fltrxmpl. You may find some of these are related to your situation, especially for filtering out the higher values.
    An option is to simply output the random values to a Comparison/"less than or equal" function, where only values <= to 100 would be sent to an array which is in a For loop. Use the iteration counter of the For loop to count up to 250, at which time you would pass the whole array to your next node. This would let you have 250 values between 0 and 100 for your final array.
    Good luck.

  • SharePoint Receive Location: Value does not fall within the expected range

    Hi,
    I setup a wss receive location in BizTalk 2013 (CU2 applied) to get documents from a SharePoint 2013 infoPath Form Library, the documents were checked out but not processed by WSS adapter and BizTalk logs following error in event log
    The host instance user has 'Full Control' permission on this form library
    (the same configuration is working in another environment with different BizTalk and SP instances)
    any help would be highly appreciated
    Usman Shaheen MCTS BizTalk Server http://usmanshaheen.wordpress.com

    Hi,
    I would recommend to create a new InfoPath form and publish it to SharePoint library to see
    if the issue still occurs.
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/07438b97-2b25-431a-b94a-1ea8e08992d5/upgrade-sharepoint-2007-to-sharepoint-2010-info-path-pages-issues?forum=sharepointadminprevious
    If that doesnt fix the issue, you should go with this hotfix.
    Description of the SharePoint Foundation 2010 hotfix package (Wss-x-none.msp): July 2, 2012
    Description reads: 
    Assume that you use the metadata navigation and filter feature to filter a view of a document library. When you check in or check out a document through the menu on the ribbon, you receive the following error exception:
    System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.SPWeb.GetFile(String strUrl) at Microsoft.SharePoint.ApplicationPages.Checkin.get_File() at Microsoft.SharePoint.ApplicationPages.Checkin.OnPreInit(EventArgs
    e) at System.Web.UI.Page.PerformPreInit() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Rachit

Maybe you are looking for

  • How do I transfer photos from one icloud account to another?

    I recently switched back to iPhone when the iPhone 6 Plus came out.  I had the iPhone 4s before I got an android so it's been a while since having an iCloud account. I could not think of my password when logging into my iCloud account when starting u

  • To find out files to be recompiled

    Hi All, Suppose I have hundreds of source files in a number of packages. Suppose some file in a package has changed. How do I find out which of the classes in the whole project have to be recompiled ? I do not want to do an entire rebuild. * Is there

  • Logic 9.0 won't allow upgrade to 9.1.8 and SMPTE Bug??

    Hi All, I have a lawfully purchased (full retail) fully useable Logic Pro 9.0 version installed on my Mac Mini. Recently, and though I do absolutely no SMPTE work, (and don't really know what it is or use it), when I try to load either a saved templa

  • Inspection Lot Origin 06 (return)

    Hi Experts, What is the logic of system creating 2 inspection lots for Sales return ? If we do not deactivate the mvt type 651 for QM, while creating delivery and also while PGR there will be 2 inspection lot created. Regds

  • How to display a field only in the last page

    hi all i am using reports 6i i ve created summary column and i need to get it displayed only on the last page of the report is it possible kindly guide thanking in advance