Obtaining Data count between dates for a range of dates

Hi,
Currently I need to find the number of records for every week starting from the year 1995.
Could anyone help me with a query which will display the first and the last day of the week and the records within this range.
The week starts from monday.
Regards,
R

Hi,
The format IW give you a week that starts on monday.
You can then join with this subquery and adds the necessary group by.
select
  to_char(date '1995-01-01' + (rownum-1)*7, 'IW') week_no,
  trunc(date '1995-01-01' + (rownum-1)*7, 'IW') from_day,
  trunc(date '1995-01-01' + (rownum)*7, 'IW')-1 to_day
from
  all_objects
where
  trunc(date '1995-01-01' + (rownum-1)*7, 'IW') < date '1996-01-01';
WEEK_NO FROM_DAY      TO_DAY
52      Mon 26-Dec-94 Sun 01-Jan-95
01      Mon 02-Jan-95 Sun 08-Jan-95
02      Mon 09-Jan-95 Sun 15-Jan-95
03      Mon 16-Jan-95 Sun 22-Jan-95
04      Mon 23-Jan-95 Sun 29-Jan-95
05      Mon 30-Jan-95 Sun 05-Feb-95
06      Mon 06-Feb-95 Sun 12-Feb-95
07      Mon 13-Feb-95 Sun 19-Feb-95
08      Mon 20-Feb-95 Sun 26-Feb-95
09      Mon 27-Feb-95 Sun 05-Mar-95
10      Mon 06-Mar-95 Sun 12-Mar-95
11      Mon 13-Mar-95 Sun 19-Mar-95
12      Mon 20-Mar-95 Sun 26-Mar-95
13      Mon 27-Mar-95 Sun 02-Apr-95
14      Mon 03-Apr-95 Sun 09-Apr-95
15      Mon 10-Apr-95 Sun 16-Apr-95
16      Mon 17-Apr-95 Sun 23-Apr-95
17      Mon 24-Apr-95 Sun 30-Apr-95
18      Mon 01-May-95 Sun 07-May-95
19      Mon 08-May-95 Sun 14-May-95
20      Mon 15-May-95 Sun 21-May-95
21      Mon 22-May-95 Sun 28-May-95
22      Mon 29-May-95 Sun 04-Jun-95
23      Mon 05-Jun-95 Sun 11-Jun-95
24      Mon 12-Jun-95 Sun 18-Jun-95
25      Mon 19-Jun-95 Sun 25-Jun-95
26      Mon 26-Jun-95 Sun 02-Jul-95
27      Mon 03-Jul-95 Sun 09-Jul-95
28      Mon 10-Jul-95 Sun 16-Jul-95
29      Mon 17-Jul-95 Sun 23-Jul-95
30      Mon 24-Jul-95 Sun 30-Jul-95
31      Mon 31-Jul-95 Sun 06-Aug-95
32      Mon 07-Aug-95 Sun 13-Aug-95
33      Mon 14-Aug-95 Sun 20-Aug-95
34      Mon 21-Aug-95 Sun 27-Aug-95
35      Mon 28-Aug-95 Sun 03-Sep-95
36      Mon 04-Sep-95 Sun 10-Sep-95
37      Mon 11-Sep-95 Sun 17-Sep-95
38      Mon 18-Sep-95 Sun 24-Sep-95
39      Mon 25-Sep-95 Sun 01-Oct-95
40      Mon 02-Oct-95 Sun 08-Oct-95
41      Mon 09-Oct-95 Sun 15-Oct-95
42      Mon 16-Oct-95 Sun 22-Oct-95
43      Mon 23-Oct-95 Sun 29-Oct-95
44      Mon 30-Oct-95 Sun 05-Nov-95
45      Mon 06-Nov-95 Sun 12-Nov-95
46      Mon 13-Nov-95 Sun 19-Nov-95
47      Mon 20-Nov-95 Sun 26-Nov-95
48      Mon 27-Nov-95 Sun 03-Dec-95
49      Mon 04-Dec-95 Sun 10-Dec-95
50      Mon 11-Dec-95 Sun 17-Dec-95
51      Mon 18-Dec-95 Sun 24-Dec-95
52      Mon 25-Dec-95 Sun 31-Dec-95

Similar Messages

  • Between operator for group by date in Apex Interactive Reports

    Hi,
    In the interactive reports filter, i couldn't find the 'between' operator for date field (got a 'group by date' in my sql query (source). I am just wondering, Is it beacuse of the group by date clause?. Is there any way to show the 'between' operator in the interactive reports filter.
    Thanks

    I just opened an existing IR style report, went to actions, filter, selected a date column and found between at the bottom of the list of values.. Are you sure the date you are trying to filter on is a true date column?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • APEX_UTIL.IR_FILTER with BETWEEN operator for date columns

    Hi,
    when I run my application I can set a BETWEEN-filter for date columns. I can't find a way how to use it with the APEX_UTIL.IR_FILTER function. Maybe I miss something?
    Documentation: http://download.oracle.com/docs/cd/E17556_01/doc/apirefs.40/e15519/apex_util.htm#CHDDDFBF
    Tobias

    Tobias,
    If you think about it, a "Between" is nothing more than a single line way to say
    WHERE :X >= :Y
    AND :X <= :Z
    So you should be able to apply two filters to the report using the LTE and GTE operators
    Hope this helps
    Doug Gault
    www.sumneva.com

  • Count between two dates.

    dear friends
    i want fetch count between two dates.
    my query is like below.
    SELECT (to_date('19-mar-2012','dd-mm-yyyy')-to_date('01-apr-2012','dd-mm-yyyy')) FROM dual
    its given out like -13 but i want in positive mod like 13 only not '-' Sign.

    just use abs() function to your query to get the positive value
    SELECT abs(to_date('19-mar-2012','dd-mm-yyyy')-to_date('01-apr-2012','dd-mm-yyyy')) diff FROM dual

  • Obtaining date without stamp time

    The datetime is stored in the table as the following:
    2014-03-03 00:00:00.000
    2014-03-03 00:00:00.000
    2014-03-03 00:00:00.000
    2014-03-03 00:00:00.000
    2014-03-03 00:00:00.000
    2014-03-03 00:00:00.000
    2014-03-04 00:00:00.000
    The following code is written inside view to obtain date only
    MAX(Substring(Convert(char,[Order date],110),1,10)) AS [Order Date]
    where [order date] between '20140303' and '20140307'
    The problem is when I used the above syntax, I was surprised to see in the output out of the date range. when I took out the substring and convert function it will bring the expected results but still the datetime or time stamp is there and I want to date
    The expected results
    2014-03-03
    2014-03-03
    2014-03-03
    2014-03-03
    2014-03-03
    2014-03-03
    2014-03-04
    How I could solve this problem

    Try the below:
    MAX(Cast([Order date] as date)) AS [Order Date]
    ....where [order date] between '20140303' and '20140307'

  • How to obtain date of creation if image is obtained using getImage()

    When Image is obtained using getImage() method , how to
    obtain date of creation or another header value if image is
    obtained using getImage method.

    Actually, some formats do indeed have creation or modification dates built in. e.g. http://www.w3.org/TR/PNG-Chunks.html#C.tIME. (Of course since most programs save a new copy of the file every time, the two dates are the same.) However, just because formats have this data doesn't mean it's reliable or even present. Your best bet is to pass creation dates in an Applet param tag for applets (assuming you were referring to Applet.getImage()) or to parse out a filename from a classloader URL and use a File object to check (assuming you were instead referring to Toolkit.getImage(URL)). That's the best answer I have without knowing more about what you are trying to accomplish.

  • Sample java code to obtain data from ALUI directory

    Hi
    I need to go to the ALUI LDAP ( directory ) services to get user profile information.
    The documentation did not help me to figure out the way to obtain data from it.
    so , it would be a great help if some one could share the sample java code api to obtain data from ALUI directory.

    i'm guessing you are asking to get the groups for a particular user. someone in the other thread posted the actual SQL, that may be easier. ( you are on 10gR3 right, because ALUI directory didn't exist before 6.5)
    I dont have a sample done yet, but the internet is filled with samples of java and ldap...
    http://www.coderanch.com/t/133108/Security/LDAP-sample-program

  • Rate of Obtaining Data

    Hi everyone,
    I have recently constructed a VI which obtains data from a DAQmx, and saves it to a log file, a long with the time duration of the test (Hence the Elapsed time VI).
    The data saves to a immediatley a file, which can be analysed later using the same software.
    The problem i seem to have, is that the data seems to save every 19 msec, yet I need it to be roughly 1msec or quicker. From things i have read on the forum, the constant saving of data directly to a file is what is slowing my code down, yet i can't seem to save the full 30 seconds worth of data to an array and then export that to a file once my data collection has finished.
    The max length of a data sample would be 120 secs (ie 120,000 data points).
    Here is a snippet of the data aquasition part of my code.
    Any help would be greatly appreciated.
    Thanks,
    Oli
    Solved!
    Go to Solution.

    If you can write to the file after acquiring the data, then that simplifies your solution.
    Since you know the number of samples that you expect, you could initialize an array to a size slightly larger than the size to accommodate all your data and then write (insert) into that array.  You would pass the array around the loop using shift registers.  After the While Loop, you would write the entire array to file. 
    Place a 1ms delay within the While Loop.  If your loop actually takes 1ms to obtain (read from DAQmx), then a little trick would be to set the value of the Delay to 0ms.  Yes zero.  0ms will still allow the processor to handle other tasks, although the CPU will show high % useage.  It is different than not having a Delay at all...
    And get rid of the Elapsed Time..

  • Alternative to isblank for a range of cells

    Hi,
    I am trying to get a formula using countifs that will return the number of cells containing a checkbox with a "true" value if a related cell on a different row is not blank.
    In my mind this would look somewhat like =countifs(checkbox range, true, isblank(range b), false)
    Is there a function that does what isblank does for a range of cell? Or should I use another function?
    Thanks for the help!

    Hello,
    The above answers seemed alright but they do not get to the heart of the issue that I am having in trying to get summary data on a range of particular cells +determined by a condition+. For this purpose the SUMIFS and COUNTIFS functions are brilliant because you can isolate a range based on conditions; for example, getting rows with a particular string and number.
    I have a long list of newspapers, each with a city, year and rank by population. There are about 10 decades and many different cities (which change as the rankings change), totaling over a thousand rows. The year, rank and city often repeat but the newspapers are all unique.
    It was easy to count the number of newspapers by rank (or city) and year using COUNTIFS but there seems to be no corollary for the MAX (or LARGE) function. I need this because I have circulation numbers and I'd like to know what the MAX circulation is for each city (or rank) in each year.
    This means I need to be able to pluck out a max value for a range of cells based on a calculation. It seems ridiculous to have to put in row numbers in: there should be a simple way to perform a test on a defined range using conditions.
    Hopefully I am simply missing how that is done. Thanks ahead of time,
    Jamil

  • Delete values for a range

    Hi ,
         I want to delete records only for a given range. Below is the script it deletes the records based on the given MP range.
    And in this Switch table screen shot i have a switchID and ControlPointID column as main reference . For the given range only those records will be deleted. Now i want to delete a different table called SSDB_WIUDATA only for the controlpointIDs deleted on
    this switch table. The scenario is ControlpointID will be same even out of the given range also.but switchID will be different So it was easy to delete the records in switch. But while deleting in WIU data i have  WIUDataID and ControlPointID as main
    column reference . How do i delete the values from WIUData only for the values deleted in switch table? Here ControlPoint ID will be same even out of the range also. So i should delete only within the range that is deleted in Switch table. I dont have Milepost
    refernce also in WIU table.i have only ControlPointID as reference. Pls help me 
    IF (CURSOR_STATUS('global','Switch_cur')) >= -1 
    BEGIN 
    DEALLOCATE Switch_cur 
    END
    DECLARE Switch_cur CURSOR FOR
    Select SwitchID,ControlPointID FROM SSDB_Switch
    WHERE Milepost BETWEEN @BeginMP AND @EndMP 
    AND SubdivisionID = @subdivisionID
    OPEN Switch_cur
    FETCH NEXT FROM Switch_cur INTO @SwitchID,@ControlPointID
    WHILE (@@FETCH_STATUS=0)
    BEGIN
       set @Swi = (select Talon_LocEqup_ID from Mapping
       where SSDB_ControlpointId_Asset_Id = @SwitchID and AssetType='PTC-Switch')
    Delete from tbl_equipmentObjectPropertyValues 
    where equipmentObjectPropertyValue_object_guid_fk = ''+@Swi+''
    Delete from tbl_objects
    where object_guid_pk = ''+@Swi+''
    DELETE from Mapping
    where SSDB_ControlpointId_Asset_Id = @SwitchID
     DELETE FROM SSDB_Clearancepoint
     WHERE SwitchID = @SwitchID
    DELETE FROM  SSDB_TurnoutSpeed
    WHERE SwitchID = @SwitchID
     DELETE FROM SSDB_SwitchRelationship
     WHERE SwitchID = @SwitchID
     DELETE FROM SSDB_Switch
     WHERE SwitchID = @SwitchID
      FETCH FROM Switch_cur INTO @SwitchID,@ControlPointID
         END ----Cur End
    CLOSE Switch_cur
        DEALLOCATE Switch_cur        
    Deepa

    Below is the table structure of Switch and WIUData
    CREATE TABLE SSDB_Switch (
    SwitchID int IDENTITY PRIMARY KEY,
    ControlPointID int,
    WIUDataID int,
    MilepostPrefix varchar(5),
    MilepostSuffix varchar(5),
    Milepost decimal(10,3) NOT NULL,
    TrackName varchar(20) NOT NULL,
    Latitude decimal(15,8) NOT NULL,
    FOREIGN KEY(WIUDataID) REFERENCES               SSDB_WIUData(WIUDataID),
    FOREIGN KEY(ControlPointID) REFERENCES          SSDB_ControlPoint(ControlPointID)
    CREATE TABLE SSDB_WIUData (
    WIUDataID int IDENTITY PRIMARY KEY,
    ControlPointID int,
    DeviceStatusTableID int NOT NULL,
    BeaconFlag varchar(1) NOT NULL,
    ConfigCRC varchar(8) NOT NULL,
    EncryptedHmacKey varchar(64) NOT NULL,
    WIUAddress varchar(64) NOT NULL,
    WIUID decimal(12,0),
    WIUName varchar(40),
    WSRSType varchar(17),
    InsertDate Datetime NOT NULL DEFAULT getdate(),
    UpdateDate Datetime,
    InsertUser varchar(50),
    UpdateUser varchar(50),
    FOREIGN KEY(ControlPointID) REFERENCES SSDB_ControlPoint(ControlPointID),
    FOREIGN KEY(DeviceStatusTableID) REFERENCES SSDB_DeviceStatusConfiguration(DeviceStatusTableID),
    FOREIGN KEY(BeaconFlag) REFERENCES SSDB_BeaconFlag(BeaconFlag),
    FOREIGN KEY(WSRSType) REFERENCES SSDB_WSRSType(WSRSType)
    Below is the screen shot for Switch for a range of 170 to 172 Milepost.For this range i have control point ID as 48. And even ControlPoint ID is same for 173 Milepost also. In switch i have deleted only for the range.
    Below is the screenshot for WIU table . Here i have only ControlPointID as reference. Even in this table i should delete only the records deleted in switch table.
    Deepa

  • Difference between select-option and range

    Hi,
      wat are the difference between  select-option and range
    where u have to use those and give the syntax for the range option.
      if u use range option in report programming there is any advantages ?
      pls reply for this ..
    thanks
    rams

    Hi,
    Not much of a difference,
    A Select-Option could be like,
    SELECT-OPTIONS sel FOR f
    And a Range could be like,
    DATA: BEGIN OF sel OCCURS 10,
             SIGN(1),
             OPTION(2),
             LOW  LIKE f,
             HIGH LIKE f,
          END   OF sel.
    Here they both function the same. But then the Select-Options has numerous options associated with it than the RANGE option.
    Hope it helps,
    Pradip Parmar.

  • Using countif for multiple ranges

    I have a spreadsheet where I need to count a value in several ranges in the same column. Can't figure out how to do it

    You can't have non-contiguous ranges but the range can include blank rows. I mention that second part because I don't know what is between your ranges.
    You either need to use multiple COUNTIF functions or duplicate the data in another spot (such as another table) where you can make it all one big range (with or without blank rows). The table will simply be a bunch of formulas like =Table 1:: B2

  • Cannot obtain an appropriate JDBC type for class char.

    The above error while deploying...The full error is below. The only datatypes used are: integer, timestamp,string, decimal and date (so no char).  Can anybody help?
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/SAPAS12013.. Reason: Cannot obtain an appropriate JDBC type for class char. To store the field with this class in the database, the class must implement java.io.Serializable.; nested exception is: com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Cannot obtain an appropriate JDBC type for class char. To store the field with this class in the database, the class must implement java.io.Serializable.
    at com.sap.engine.services.ejb.deploy.tools.sql.Mappings.getDefaultSqlTypeForJavaType(Mappings.java:131)
    at com.sap.engine.services.ejb.deploy.xml.CMPParser.fillCmpFieldInfo(CMPParser.java:89)
    at com.sap.engine.services.ejb.deploy.xml.CMPParser.parseCMPFields(CMPParser.java:644)
    at com.sap.engine.services.ejb.deploy.xml.CMPParser.parseFields(CMPParser.java:121)
    at com.sap.engine.services.ejb.deploy.xml.EJBJarParser.parseXml(EJBJarParser.java:173)
    at com.sap.engine.services.ejb.deploy.xml.EJBJarParser.parseXml(EJBJarParser.java:97)
    at com.sap.engine.services.ejb.deploy.DeployAdmin.parseSingleJar(DeployAdmin.java:296)
    at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:246)
    at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2118)
    at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:594)
    at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:379)
    at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:296)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:323)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3033)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:463)
    at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
    at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:294)
    at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
    at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)

    Hi Ashley,
    And yet, apparently you have a cmp-field with type <b>char</b> in one of your CMP entity beans. This is not supported. Please refer to the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/13/dbb2b66146934a9662918755038ea1/frameset.htm">Object/Relational Mapping Rules</a> and especially to the first bullet under the table.
    Hope that helps!
    Vladimir

  • The Creative Cloud application becomes inoperable continually on both my Windows 7 and 8.1 operating systems. I'm tired of re installing the application after deleting the OOBE file to get updates and syn settings between computers for Photoshop. Is this

    The Creative Cloud application becomes inoperable continually on both my Windows 7 and 8.1 operating systems. I'm tired of re installing the application after deleting the OOBE file to get updates and syn settings between computers for Photoshop. Is this an endemic problem with others? I'm using Google Chrome as my browser. Is this an issue with the problem?

    Similar problem just happened to me with the Creative Cloud Update 1.7.1.418—slightly different so I thought I'd share. I have multiple Adobe Creative Cloud programs installed on my computer, all working just fine. I updated the Cloud App to the latest version and then it shows me that I have only one program installed! All my previously installed programs (Photoshop and the like) still work but show as "install" instead of "Up to date". Initially I thought I'd have to re-install the Cloud app or recreate the OPM data base but then I noticed that some of the Cloud app preferences (Apps > Settings > App Language) were different to what I had set previously. I use English (International) language, the update had reverted the app back to English (North American). I flicked back to my previous language and bam, all my apps now show as being installed correctly.

  • No authorization for number range object type BTI and activity SHOW

    Hi All,
    When I try to execute
    SAP Easy Access screen - > Auto-ID Infrastructure -> Master data -> Number Ranges -> Number Range Administration
    on the next web window when I select the object type BTI , it comes up with the error
    Number range table not maintained for object BTI in customizing  
      No authorization for number range object type BTI and activity SHOW  
    I am using AIN 5.1 .  Is this an authorization issue ?. If so which all roles I should give to the user?  IF you have any idea about this please share some tips.

    Hi Sahad,
    Only few number range object types are available in the standard system:
    Follow the link for help .
    http://help.sap.com/saphelp_autoid2007/helpdata/EN/45/e2240c7abb56dde10000000a114a6b/frameset.htm
    Follow the for setting up the others.
    http://help.sap.com/saphelp_autoid2007/helpdata/EN/45/e2240c7abb56dde10000000a114a6b/frameset.htm

  • Play Count Wont Update For Songs Under 11 Seconds Long

    Hello,
    I have downloaded iTunes 11 and have found that it does not seem to record a play count for songs (audio-book) that are under 11 seconds in length. Is there a way to amend this so that it does record a play count for these? I am playing songs directly from iTunes.
    Chris

    Hi Steven -- thanks, your fix works for me too.  I hadn't even known about iTunes'  File > Create New Version.
    An alternate symptom: If I played the song and manually clicked near the end, it *would* update correctly.  But if I played it through completely w/o skipping, it wouldn't update the play-count.
    For any others:
    I wanted to preserve the date-imported-into-library and play-count of the new version, so:
    - File > Create New Version
    - Looking at the new entry I saw, via File > Get Info > Summary > Where, that the new entry pointed to a (new) file which a " 1" added to the filename.
    - I quit iTunes
    - manually deleted the original/bad copy in the Finder,
    - renamed the newer/good copy (deleting the appened '2').
    - I re-started iTunes, and found the song.
      [At this point: There were still two copies of the song in my play-list (as expected), but it was NOT the case that one was shown as 'file not locatable'; both were pointing to the single, correct .mp3, and both entries the original date-imported and play-count ( ! ) -- a bit of smart library clean-up being done by iTunes under the hood.]
    - While viewing the full Songs list in iTunes (not a playlist) I deleted the version I didn't want (being sure to select 'keep file' rather than 'move to trash'), and it worked fine.
    > (This doesn't explain why the play count updated fine for a year, though ...)
    >
    Totally guessing, but: perhaps the mp3 file is not quite in the standard/proper format.  An old version of iTunes handled it correctly anyway, but a 2013-Nov-ish update to iTunes suddenly relies on the file being in the correct format?
    I'm assuming the mp3 file has a header stating its song-time, which is different from the data that's *actually* provided.  Redundant info can increase efficiency, but it opens the door to inconsistent data, which leads to bugs.  Fortunately, this is a relatively minor one....

Maybe you are looking for

  • Issues with scan to email

    Recently, the email/file server was upgraded to OS X 10.9.1. Since performing this upgrade, 3 of the 4 RICOH MFPs have not been able to scan to email. The SMTP Log shows this error for the non-functioning MFPs: Helo command rejected: need fully-quali

  • My account seems to be deactivated...how do i re-activate it?

    i can't download anything because my account has been deactivated... i don't know what to do to re-activate it.

  • Packaging material showing on delivery note

    Hi Sap Gurus, Could any one help me out in this issue on Packaging material number showing on delivery note. determination is based on masterdata Could any one help me out in this issue Thanks and Regards Edward

  • Control Surfaces and Native Plugins

    I have a Novation RemoteZero SL and, though I can access basic volume and pan, and I can control plugins from other companies where Novation has set up "AutoMap", I can't control Logic's own plugins! It won't learn them or control them in any way. Th

  • Am I correct? iCloud Calendar does not have Holidays

    I know there are a few options in iCloud.com, but am I correct that I do not see away to turn Holiday calendar on like iOS has built in?