SQL command to get latest effective date

Hi!
How can i want to write a sql command to fetch records as such
Vendor;    Item;     EffectiveDate;    UnitPrice;    Remarks
Vend1;      ABC;    31/01/2012;        120;            Dont show
Vend1;      ABC;    29/02/2012;        150;            Show
Vend2;      ABC;    01/01/2012;        140;            Show
Vend1;      XYZ;    15/01/2012;        100;            Show
Please help me, so far I can only figuire out how to get the latest effective date by vendor and item but was not able to get UnitPrice
SELECT  "VendPart"."Vendor", "VendPart"."Item", Max("VendPart"."EffectiveDate") AS MaxOfEffectiveDate
FROM   "POS_LiveRpt"."dbo"."VendPart" "VendPart"
GROUp BY "VendPart"."Vendor", "VendPart"."Item"
Edited by: MichellePoh on Feb 23, 2012 9:58 AM

hi Michelle,
you can use a subquery in your command to bring back the UnitPrice that is applicable to the max date...see the code below for an idea.
you'll have to change the "UnitPrice" field below to match yours.
note that in the subquery the vendpart table has been aliased as vendpart2 for the subquery to work. also note that the code may not work in your database as Alan aluded to the fact that the syntax is specific to the database type...if you get any database errors please refer to your database manual or a forum for your database type that has a subquery. and of course there may be errors from my typing in the query as it's just being done inside this forum thread...but hopefully this will give you an idea how to do this.
cheers,
jamie
SELECT 
"VendPart"."Vendor",
"VendPart"."Item",
Max("VendPart"."EffectiveDate") AS MaxOfEffectiveDate,
SELECT "VendPart2"."UnitPrice"
FROM "POS_LiveRpt"."dbo"."VendPart" "VendPart2"
WHERE "VendPart2"."EffectiveDate" = Max("VendPart"."EffectiveDate")
AND  "VendPart2"."Vendor" =  "VendPart"."Vendor"
AND "VendPart2"."Item" = "VendPart"."Item"
) AS UnitPrice
FROM  
"POS_LiveRpt"."dbo"."VendPart" "VendPart"
GROUp BY
"VendPart"."Vendor", "VendPart"."Item"

Similar Messages

  • Capture and Save SQL Command that Ran in OLEDB Data Source

    Hi,
    My company is using SSIS to occasionally generate a file that is then being loaded into a transactional system.  At this point, things are not fully automated; the SQL query that is used for the data source is manually altered, SSIS is run, and the
    file is uploaded to the other system.  Every time the SSIS package runs, a log entry is created with summary information.
    I'm wondering: is it possible to capture the SQL command that runs in the data source, and save it with the log entry as part of the package run?  This would provide an accurate historical record of what filters were applied to the data that was loaded
    to the transactional system.
    Any thoughts/comments would be appreciated.

    Hello Smith,
    What I understood from your question that you want to know the query which is running in SSIS Data Source and same you want to insert into a table.
    Below query gives you what all queries are currently running on a specified DB:
    USE [SAMPLE_DB_NAME]
    SELECT  distinct getdate(), command, s.text, start_time, percent_complete, CAST(((DATEDIFF(s, start_time, GetDate())) / 3600) AS int) AS Long, CAST((DATEDIFF(s, start_time, GetDate()) % 3600) / 60 AS int) as LongMin, CAST(((DATEDIFF(s, 
                          start_time, GetDate())) / 3600) AS varchar) + ' hour(s), ' + CAST((DATEDIFF(s, start_time, GetDate()) % 3600) / 60 AS varchar) + 'min, ' + CAST((DATEDIFF(s,
                           start_time, GetDate()) % 60) AS varchar) + ' sec' AS running_time, CAST((estimated_completion_time / 3600000) AS varchar) 
                          + ' hour(s), ' + CAST((estimated_completion_time % 3600000) / 60000 AS varchar) + 'min, ' + CAST((estimated_completion_time % 60000) 
                          / 1000 AS varchar) + ' sec' AS est_time_to_go, dateadd(second, estimated_completion_time / 1000, getdate()) AS est_completion_time, blocking_session_id, r.status, last_wait_type,
    r.open_transaction_count, r.session_id, client_net_address, 
     CONVERT(VARCHAR(20), sp.host_name) as hostname, 
     CASE WHEN program_name = '.Net SqlClient Data Provider                      ' THEN 'Reporting Service'
     ELSE CONVERT(VARCHAR(50), program_name) 
     END as program_name,
     sp.login_name as name
    FROM         sys.dm_exec_requests r CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) s INNER JOIN
                          sys.sysusers u ON r.user_id = u.uid
    INNER JOIN sys.dm_exec_connections dec ON dec.session_id = r.session_id INNER JOIN SYS.dm_exec_sessions sp on r.session_id = sp.session_id
    WHERE text not like 'SELECT     getdate(), command, s.text, start_time, percent_complete%'
    AND text not like '%sys.sp_trace_getdata%'
    AND text != 'sp_server_diagnostics'
    ORDER BY start_time
    You can schedule this query to run in 2-3 second and can capture the T-SQL and insert into a table.
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • Trying to get ending effective date for groups of rows

    Hi Everyone,
    I've searched the forums, but I can't find a post that presents a problem quite like this.
    I have some data that looks like this:
            ID_NUM     EFFECTIVE ALLOC_PERCENT   ACCT
           101 01-JUL-11            21   A1
           101 01-JUL-11            72   A2
           101 01-JUL-11             7   A3
           101 01-JUL-12            20   B1
           101 01-JUL-12            80   B2
           101 01-JAN-13            20   A1
           101 01-JAN-13            20   A2
           101 01-JAN-13            50   A3
           101 01-JAN-13            10   B1
           101 01-JUN-13            50   A1
           101 01-JUN-13            50   A2(note - I manually inserted blank lines for clarity)
    Here's the logic: The rows represent a percentage allocation to the account number for the specified id number, for that effective date. A newer effective date supercedes previous ones, and if any row in the conceptual group is superceded, then they all are.
    I'm trying to find out the date when each group's effective period ended, and include that in the result set so that I can subsequently calculate the number of days a given row was effective; something like this;
      ID_NUM     EFFECTIVE END_DATE   ALLOC_PERCENT ACCT
           101 01-JUL-11 01-JUL-12             21 A1
           101 01-JUL-11 01-JUL-12             72 A2
           101 01-JUL-11 01-JUL-12              7 A3
           101 01-JUL-12 01-JAN-13             20 B1
           101 01-JUL-12 01-JAN-13             80 B2
           101 01-JAN-13 01-JUN-13             20 A1
           101 01-JAN-13 01-JUN-13             20 A2
           101 01-JAN-13 01-JUN-13             50 A3
           101 01-JAN-13 01-JUN-13             10 B1
           101 01-JUN-13 <null>                50 A1
           101 01-JUN-13 <null>                50 A2The END_DATE of the group is the EFFECTIVE_DATE of the following group (ordered by ID_NUM, EFFECTIVE_DATE).
    The last two rows' END_DATE is null because there is no group of rows with a later effective date - in my process, I'll NVL that to sysdate so that my days calculations will be valid.
    I tried some analytic queries with LEAD, but I couldn't figure out how to make it get the next group's effective date. I could get the next row's effective date, but not the next group's. I couldn't specify how many lead rows to look ahead, because there is not a consistent number of rows in each group.
    How do I populate the END_Date column?
    Here's the code to create the above.
    create table t
    (id_num number,
    effective_date date,
    alloc_percent number,
    acct_code varchar2(4)
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jul-2011',21.0,'A1');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jul-2011',72.0,'A2');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jul-2011',7.0,'A3');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jul-2012',20.0,'B1');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jul-2012',80.0,'B2');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jan-2013',20.0,'A1');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jan-2013',20.0,'A2');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jan-2013',50.0,'A3');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jan-2013',10.0,'B1');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jun-2013',50.0,'A1');
    insert into t (id_num,Effective_date,alloc_percent,acct_code) values(101,'01-jun-2013',50.0,'A2');
    commit;
    select * from t;Oracle version information:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE     11.2.0.3.0     Production"
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    Thank you very much

    select  id_num,
            effective_date,
            first_value(effective_date)
              over(
                   partition by id_num
                   order by effective_date
                   range between 1 following and unbounded following
                  ) end_date,
            alloc_percent,
            acct_code
      from  t
      order by id_num,
               effective_date
        ID_NUM EFFECTIVE END_DATE  ALLOC_PERCENT ACCT
           101 01-JUL-11 01-JUL-12            21 A1
           101 01-JUL-11 01-JUL-12            72 A2
           101 01-JUL-11 01-JUL-12             7 A3
           101 01-JUL-12 01-JAN-13            20 B1
           101 01-JUL-12 01-JAN-13            80 B2
           101 01-JAN-13 01-JUN-13            20 A1
           101 01-JAN-13 01-JUN-13            10 B1
           101 01-JAN-13 01-JUN-13            20 A2
           101 01-JAN-13 01-JUN-13            50 A3
           101 01-JUN-13                      50 A1
           101 01-JUN-13                      50 A2
    11 rows selected.
    SQL> SY.

  • In which table we get latest finish date of operation

    Hello all,
    I have one report for planned order in which i have to display the latest finish date of all the operation in that particular plnned order.
    can you please tell me from which table i can get the latest finish date of the operation.
    I have used the table KBED, but in table KBED i am not getting data for all the operation in planned order. I am geting only one or two operation in table KBED.
    Is there is any other table or any other way by which i can find the latest finish date for the opeartion.
    Please help.

    Hello Rudra,
    I don't want dates of planned order.
    In planned order we have number of operation.
    I want latest finish date of these operation,
    In table KBED we get the latest finish date but i am not able to get details of all the operation.
    In table KBED i am getting detials of only two operations where as in planned order i have 7 operations.
    Thanks

  • How to pull the job with the latest effective date in PSFT?

    Hello,
    I am running the PSFT 9.1.1 connector workforcefullsync.
    I ran into a problem when the user has multiple job records. Each time that the user job is updated, a new job record is created. So, when the data comes from PSFT, for a user, we have multiple jobs records with different effective date (For example <EFFDT IsChanged="Y">1996-10-21</EFFDT>). OIM is only interested in the latest EFFDT.
    Question 1: is it something that we can set on the PeopleSoft side, so that only the job with the highest EFFDT is sent to OIM?
    Question 1b: is this is not easy to accomplish from the PSFT side, can I use transformation in the connector to only pull the job record with the highest effective date?
    Question 2: if the EFFDT shows a date in the future (HR wants to disable a person in the future), does OIM ignore this change until the sysdate is after that EFFDT date?
    Thanks
    PS: workforcefullsync worked fine if the file contains only 1 job per employee. When the xml files contain multiple job records, I got the error:
    ERROR QuartzWorkerThread-1 OIMCP.PSFTER - oracle.iam.connectors.psft.common.handler.impl.PSFTWorkForceSyncReconMessageHandlerImpl : handleMessage
    ERROR QuartzWorkerThread-1 OIMCP.PSFTER - 1
    ERROR QuartzWorkerThread-1 OIMCP.PSFTER - Description : 1
    ERROR QuartzWorkerThread-1 OIMCP.PSFTER - java.lang.ArrayIndexOutOfBoundsException: 1
    Edited by: user12049102 on Mar 22, 2010 12:06 PM

    Hello,
    When the PSFT team sends a message over to OIM to disable a user with today's date, the user got disabled fine in OIM. A reconciliation event is created.
    When the PSFT team sends a message over to OIM to disable a user with a future date for EFFDT, let's say 3/31/2010, no reconciliation event was created.
    Does OIM store this information somewhere so that it will process it later on?
    It's a good thing that OIM does not disable the user who has an EFFDT in the future, but we don't want that record to be forgotten.
    Please help.
    Thanks

  • Using OLE DB Source (SQL Command) as input to DQS Data Services

    Hi,
    I am using an OLE DB Source(SQL Command) as the input to my DQS Cleansing task.
    When I preview in design view my SQL Command I see rows returned.
    Yet at runtime no rows are sent to the DQS Cleansing Task.
    Can I use an OLE DB Source(SQL Command) as an input to a DQS Cleansing Task?
    Any ideas why it sends no records?
    Thanks,
    C.
    CG

    NuTech, is this still an issue?
    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!

  • Calculation to get latest completion Date

    hi.. thanks guys for all the info.. it really helped me a lot as a newbie..
    i am doing a report as an end-user of discoverer desktop 4. how can i get the highest completion date (table and crosstab format) in my data as follows:
    BudgetRef ProjectNo TaskNo CompletionDate
    2010-01 PN2600 A1000 Mar-2011
    2010-01 PN2600 B1000 Sep-2012
    2010-01 PN2600 C1000 Jun-2011
    2010-01 PN2665 A1000 Jun-2012
    2010-01 PN2665 B1000 Dec-2011
    2010-02 PN3005 A1000 Mar-2012
    2010-02 PN3005 B1000 Dec-2013
    2010-02 PN3005 C1000 Dec-2012
    Result should be:_
    BudgetRef          ProjectNo    CompletionDate
    2010-01 PN2600 Sep-2012
    2010-01 PN2665 Jun-2012
    2010-02 PN3005 Dec-2013
    thanks again for the usual assistance.

    thanks Michael.. it works fine..
    another thing :-).. i tried to run the same report but adding some fields.. comparing the original completion from amended completion but it seems it is giving me a null value if one of the ProjectNo completion date is empty or if the completion date is a text (ie "hold"), and in some cases it is not showing as a line item therefore affecting the ProjectCost
    if the comparative completion dates in the original and amended are either empty or is a text.. it should still show the field either an empty field or the text "Hold" (text has the priority when being compared to an empty field) so as to retain the total Project cost.
    my sample data are as follows:
    BudgetRef ProjectNo     TaskNo     ProjectCost     OrigCompletionDate     AmendedCompletionDate
    2010-01 PN2600     A1000     1,000      Mar-11     Mar-12
    2010-01     PN2600     B1000     5,000      Jul-10     Oct-13
    2010-01     PN2600     C1000     6,000      Hold     May-14
    2010-01     PN2665     A1000     3,000      Jun-12     Apr-13
    2010-01     PN2665     B1000     2,000      "Null"     Dec-11
    2010-02     PN3005     A1000     4,000      Mar-12     May-15
    2010-02     PN3005     B1000     9,000      Hold     May-15
    2010-02     PN3005     C1000     7,000      Dec-12     Jun-13
    2010-03     PN3007     A1000     8,000      "Null"     "Null"
    2010-03     PN3007     B1000     2,000      Hold     "Null"
    2010-04 PN3008 A1000 _5,000_ "Null" "Null"
              Total     *52,000*           
    The result should show as follows:                         
    BudgetRef     ProjectNo     ProjectCost     OrigCompletionDate     AmendedCompletionDate
    2010-01     PN2600          12,000      Mar-11     May-14
    2010-01     PN2665          5,000      Jun-12     Apr-13
    2010-02     PN3005          20,000      Dec-12     May-15
    2010-03     PN3007          10,000      Hold     "Null"
    2010-04 PN3008 _5,000_ "Null" "Null"
              Total     *52,000*           
    thanks again for the never ending assistance.

  • SQL 2008 R2 - get latest BIDS version for Visual Studio

    I recently had my PC upgraded, and I'm having issues editing a couple of SSRS reports in Visual Studio. When I compared my Visual Studio Help -> About screen between the 2 PCs, I noticed that the old PC had a newer version of Reporting Services Designer
    (10.50.1790.0 on the old PC, as compared to 10.0.1600.22 on the new PC). I was wondering how I go about updating this.
    I tried downloading and installing the SQL 2008 RS SP2 upgrade. However, I do not have an instance of SQL on this machine. I only installed tools such as SSMS, BIDS designers etc, no SQL instance. As such, the SP2 installation would not let me proceed, stating
    that there was no SQL instance to upgrade. Is there any way to just update the SSRS designer? Thanks.
    Eric

    Is there any way to just update the SSRS designer?
    Hello Eric,
    BIDS 2008 to 2008 R2 is not an "update", it's different version, so it's an "upgrade". You have to use the SQL Server 2008 R2 installation media (DVD or download file) to install BIDS 2008R2. Or you could install Report
    Builder 3.0, which is free available; you can get it here:
    Microsoft SQL Server 2008 R2 Report Builder 3.0
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Crystal runs sql command of first sub report in the second sub report ?

    Hi,
    I have report that contains 3 sub reports.
    Each subreport is running his own sql command to retrieve it's data.
    When moving from the first subreport to the 2nd subreport, we see on the oracle that the crystal runs the sql command of the 1st subreport, and then the sql command of the 2nd subreport.
    The results are fine (he ignores the 1st subreport result in the 2nd subreport), but it delays the showing of the 2nd subreport to show.
    Why? The 2nd subreport doesn't need the data of the 1st subreport!
    How do I cancel that????
    BTW - The 3rd subreport is running only his own sql command (As should be).
    Thanks.

    Hello,
    Not without more info about the report and the data. If there is nothing linked from the main report to sub1 then it's going to run and return all data, no filtering. And from the sounds of it to take 5 + minutes per query this is going to affect performance for the whole report.
    You may want to re-evaluate why and what the subreports are used for. If they all use the same data the link them in the main report use groups to sort the data.
    Having subreports in the Details section is asking for performance problems, every record returned will cause the subreport to run. Not knowing what the subs are doing I can't say for sure....
    What you should do also is re-evaluate your Commands for each sub and see if you can do it either in one SQL statement or write a Stored Procedure to do all of the data collection. DB Servers are much more efficient at collecting data than CR will ever be. Pushing just the results to CR makes it simply formatting the results in the Designer and no performance hits....
    Talk to your DBA on how to optimize your Command SQL's and how to get them into one SQL or into a SP that dumps the final results into a final SQL * from TEMP Table into Crystal.
    Don

  • Runtime error --sql command

    Hi All,
    I'm not familar with sql command, thus get this error when put into abap, can anyone help ?
    I use db connection, & the connection is fine, just that when I test append a line to the table AWB , it failed, is that sytax error ?
    WA_AWB-SHIPID = '1582271'.
    WA_AWB-SHIPNO = '2144399'.
    WA_AWB-COURIERID = 'XXX'.
    WA_AWB-COURIER = 'XXX'.
    INSERT WA_AWB INTO TABLE it_awb.
    EXEC SQL.
    APPEND AWB FROM TABLE IT_AWB
    ENDEXEC.
    Thanks in advance.
    Janice

    Hi Janice,
    what's the error your getting..,
    Anyhow let's see below the complete code example for creating table, inserting values and fetching the records.
    data: begin of itab,
            shipid type i,
            shipno type p,
            awb(50) type c,
            courierid(3) type c,
            amount type p,
            courier(20) type c,
          end of itab.
    itab-shipid = '1582273'.
    itab-shipno = '2144340'.
    itab-awb = 'mahesh'.
    itab-courierid = '123'.
    itab-amount = 44444.
    itab-courier = 'DHL'.
    */ Table creation in Oracle DB */
    *EXEC SQL.
    *CREATE TABLE mahi_temp(shipid NUMBER, shipno DECIMAL(18,0), awb VARCHAR(50), courierid CHAR(3), amount DECIMAL(18,0), courier VARCHAR(20))
    *ENDEXEC.
    */ Insert records into table*/
    EXEC SQL.
    INSERT INTO MAHI_TEMP VALUES (:itab-shipid, :itab-shipno, :itab-awb, :itab-courierid, :itab-amount, :itab-courier)
    ENDEXEC.
    */ Fetching records from table */
    exec sql performing list_itab.
    select * from mahi_temp into :itab
    endexec.
    form list_itab.
    write:/ itab-shipid, itab-shipno, itab-awb, itab-courierid.
    endform.
    Hope this helps you.
    Cheers\
    Mahesh

  • How to use Java with PL/SQL commands to send an email with attachment

    Apologizes in advance if this is the wrong place to ask the question.
    I need to use Java with PL/SQL commands to send an email with attachment. My java application runs from the command line and does some magic to gather info from an Oracle 11g db. If the DB has sendmail configured, I'd like to send the results of the data gathering as an attachment to the email addresses. I'm not sure how to do this. I've been reading up on on PL/SQL can send email with UTL_SMTP - with attachments. I'm just not sure how to translate that into being triggered by my Java application. Any suggestions or pointers on what I should read would be appreciated.
    Background - I've been programming in Java for 10+ years, but this is my first time using databases. I also have been on these forums for a long time, but lost my profile when it was switched to Oracle.
    Thanks for all help.

    user13726880 wrote:
    The original requirements were put together and given to me, an Oracle newbie. They expected the Java app to use something intrinsic to Oracle and Unix sendmail. To solve my problem, I use a JDBC connection to run some SQL commands. I take that data, format it and send the results by email to the user. By default the requirement is to send it as an HTML attachment using Unix 'sendmail'. So I do that using Runtime exec. I have also added JavaMail functionality as an alternative to sendmail. It works great and as expected.Sounds like a reasonable solution.
    Note however that PL/SQL itself can send email. And PL/SQL can call unix sendmail too.
    However myself I would have done it in java with JavaMail.

  • Oracle SQL command

    I have read this statement on these forums many times:
    Just keep 1 thin in mind... CR will send any SQL statement, exactly as it is written, to the database. That means that if you can execute it from TOAD or the Oracle SQL Developer, you should be able to do it from CR as well.
    I have an SQL command that I have simplified so that it contains just a snippet from the original that populates a temporary table.
    Since there is a DECLARE there must be a BEGIN and END.  The required SELECT * to get the fields to show up in the field explorer will not work before the END statement.  If I put it after the END statement I get an ORA-06550 error.  "FOUND SELECT WHEN EXPECTING..." .   I got on the ORACLE website and they told me to put / before and after the SELECT.  When I try this in CR SQL command, I get ORA-06550 "ENCOUNTERED /".
    I have tried this in SQL Plus and don't get any errors.
    DECLARE Pallet  VARCHAR2(8);
            Box     VARCHAR2(8);
            ItemBox VARCHAR2(8);
            CODE    VARCHAR2(6);
    BEGIN   
        CODE := '20151';
        CODE := CONCAT(CODE, '%');
        DELETE LoadItems_temp;
       COMMIT;
    END;
    SELECT * FROM LOADITEMS_TEMP;

    Just keep 1 thin in mind... CR will send any SQL statement, exactly as it is written, to the database. That means that if you can execute it from TOAD or the Oracle SQL Developer, you should be able to do it from CR as well.
    Sounds like that may have come from me...
    99% of my reporting is done using SQL Server as a back end so I can't say if the rules change when using Oracle any of the Oracle drivers.
    That said, I can create and drop temp tables as well as declare and set variables without any issues in SQL Server... And do so regularly.
    Looking at your code... (and bear in mind that I don't know PL-SQL specific syntax...) I don't see where you are creating the temp table LoadItems_temp.
    I did a quick Google search on ORA-06550 and it appears to be syntax error. So if the code is executing in SQL-Plus without any issues but bombs in CR, my guess would be that you aren't using the right driver for your database.
    HTH,
    Jason

  • How to get themes color data

    Hi, I want to do a research about colors related to words and want to get some color themes data from kuler. It seems that I should use RSS feed to get it. I applied a key for it but I don't know how to use it, where to enter the command to get my desired data. Do I need to install the kuler app or I could do it online?  Thank you.

    Hi dfsssss,
         Kuler provides RSS/XML APIs to access the Kuler data. Refer to te documentation at:http://learn.adobe.com/wiki/display/kulerdev/B.+Feeds. To access Kuler via command line you will need a tool that can communicate with the web to get the data via a library or the console version of a programming language that has http in built. Kuler data is returned as XML andcan be parsed by any XML parser.
    Thanks,
    Kuler Team

  • Need to set effective date on employee self service process

    Help! I need the following:
    My customer wants the employee to be able to change their own hours. If I assign this function in selfservice to the employees, I get no effective date page. And we do need this page.
    Does anyone have a solution how to bring up the effective date page in selfservice for employees?
    Corné

    1. Check personlization
    2. check this parameter &pEffective Date= attached to self service function.
    Thanks

  • How to get mailbox expiration date using cmdlets 2007 and 2010?

    i wants to know which cmdlets used to find the expiration date of mailbox in exchange server 2007 and exchange server 2010. I have a cmdlets that gives mailbox expiration date for exchange server 2013. Is there any equivalent cmdltes available for exchange
    server 2007 and exchange server 2010. cmdlets to get expiration date of mailbox for exchange server 2013 is as follow
    Get-ADUser -Filter * –Properties Name, EmailAddress, AccountExpirationDate, GivenName | select Name, EmailAddress, AccountExpirationDate, GivenName | where {$_. AccountExpirationDate –ne $null}

    Hi Belinda
    Thanks for your valuable replies
    Please mention PS command to get the
    expiration date for AD accounts created for Exchange 2010 and Exchange 2007.
    Thanks a lot

Maybe you are looking for

  • How do you create a Custom Component?

    I've made use of a few custom components available on the web (IE. a custom fire component from gskinner.com) which made me realize I haven't come across any way to make my own components. I don't have anything particular in mind at this time, but I

  • Is there a size limit to a PMString stored as persistent data?

    Hi, Is there a size limit to PMString and specifically, is there a size limit to a PMString stored as persistent data on the Document?  We're getting a corrupted string on documents, but it is a large string - over 6000 characters - and I wondered if

  • Concepts Oracle should look upon --1) Definition Security

    Hi All, Recently i was working on implementing Application Designer definition security in one of PeopleSoft instance. Well, i read the peoplebooks, employed the past knowledge and found one severe drawback of using definition group and primary permi

  • Problem in Workflow on Budget Release

    Hi Experts, I have created Workflow on Budget Release . in which as soon as Budget is Released for Respective WBS Element Workflow Will Trigger . My Problem is that if Budget Gets more than 1 crore then in Mail it only shows first Digit , it is not s

  • Clarifications on Custom component in adobe LC

    Hi, I am new to custom component. I just know when a desired result is not provided by stadard activities by adobe lc then we need to create custom components. 1.Could anyone post me a small sample. 2.How to use it in adobe lc as acitivity to get des