Course program: meaning of validity period of course/curriculum type

Hello,
After the installation of enhancement pack 4, we noticed some new columns in the course program block for course and curriculum types: validity period and alternatives.
Can someone explain to me the (functional) meaning of these fields (maybe with an example)? I can't find anything in the SAP documentation about this.
Many thanks in advance!

bump

Similar Messages

  • How to change validity period of cost centre or activity type

    Hi
    How to change validity period for an Activity type or Cost centre?
    Can we change the validity period once created?
    regards
    Prakash

    Please note this can be done.
    Go to Edit Cost Center
    Goto Edit, Analysis Period.
    Create a new validity period say today until 3112999
    Change the data you want and save.
    When you go into the CC again it will show two validity periods.

  • Enabled validity period at VK13

    Hi all , i view v/04 for change condition table. i check this table 616.. its not ticked with validity period and woth release status. and both of it disabled. how i can enabled this checkbutton to allow me to key in the validity period?

    Hi Jaseri,
    Address validity periods can be maintained against each address type. Table BUT020 shows address with validity period.
    You are not able to see validity period because it might be disabled. Go to CRM IMG - Cross application - BP - Activation switch for functions and flag the check box for time dependency for BP address.
    Then you can maintain validity period against each address type. You may link your address with address type in the BP address overview screen.
    Cheers
    Umesh

  • PO with Validity Period

    Hi SAP Expert,
    We are creating a delivery instruction order using PO Sub Contracting Type. The validity Period need to be enter at the header of the PO. Our User said there can do GI after Po has been end.
    Let say I'm creating 10 quantity of material A for this month and i have GR all the 10 Quantity. from 10 Quantity i have Good Issue 5 and left with 5 . Can we block this 5 unit so that the user could not GI this 5 quantity for the next month process ?
    can anyone explain what is the PO validity date for ?

    i belive u are already puting the validity period in NB document type but still  system is allowing  to do the gr after expiry
    the please ste the warning message as error message if you are getting any after expiry at the gr
    or in th epo itself at item detail level in the second tab there is the field of last gr date there u can put the date whihc is equal to the expiry date of po then system wil throw a error message and u will not be able to do gr

  • Restricting Change of Validity Periods in Quatations

    Hello Everyone,
    I know that if the valid to period has crossed sales order can't be created. The system will give a warning. However is there any way we can restrict the end user going to quotation again and extending the validity period so that the order can be created. Moreover, one more thing I noticed that we can create quotations in backdate.  Is there a way to avoid that?
    Please advise.
    Thanks

    Hi Rohit,
    Appreciate if we can try to close this.
    Thank you Rohit for your quick response.
    So that means we can restrict the valid to field. Now will we use Status profile or any exit.
    Because you mentioned program MV45AFZZ so is there any exit in SAP SD or status profile will work,
    Moreover, can you please confirm If I want to close al the open quatations for one particualr year, let say 2013. What is the best way to do it?
    thank you in advance

  • Fetch the netprice from the validity period which always matches with the

    Let me describe the same.
    Suppose the PO creation date is 04.07.2007
    The conditions for an item in a contract for the PO are as follows;
    1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
    2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
    We need to always fetch the netprice from the validity period which always matches with the PO creation date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
    But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
    This data is then used to fetch the get the netpr data from EKPO.
    what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date..
    Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
    FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
    p_c_k_bstyp TYPE ebstyp
    p_p_bukrs TYPE bukrs
    p_p_ekorg TYPE ekorg
    p_p_ekgrp TYPE bkgrp
    *Begin of Mod-004
    fp_p_cernam type ty_r_ernam
    p_p_cernam TYPE ernam
    *End of Mod-004
    p_s_werks LIKE s_werks[]
    p_s_matnr LIKE s_matnr[]
    p_s_lifnr LIKE s_lifnr[]
    p_s_val_dt LIKE s_val_dt[].
    *mod-002
    data : l_amount type BAPICURR_D, " Net price
    l_waers TYPE waers, " Currency Key
    l_eff_amount type BAPICURR_D. " Effective value
    data: l_v_netpr type bprei.
    *mod-002
    SELECT ebeln
    bukrs
    bstyp
    aedat
    ernam
    lifnr
    zterm
    ekorg
    ekgrp
    waers
    wkurs
    kdatb
    kdate
    inco1
    INTO TABLE i_ekko
    FROM ekko
    WHERE ebeln IN p_s_cebeln
    AND bstyp EQ p_c_k_bstyp
    AND bukrs EQ p_p_bukrs
    AND ekorg EQ p_p_ekorg
    AND ekgrp EQ p_p_ekgrp
    *Begin of Mod-004
    AND ernam EQ p_p_cernam
    AND ernam IN fp_p_cernam
    *End of Mod-004
    AND lifnr IN p_s_lifnr
    AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
    IF sy-subrc EQ 0.
    Populates internal table i_ekpo using EKPO table.
    SELECT ebeln
    ebelp
    loekz
    txz01
    matnr
    werks
    ktmng
    menge
    meins
    bprme
    netpr
    peinh
    webaz
    mwskz
    uebto
    untto
    erekz
    pstyp
    knttp
    repos
    webre
    konnr
    ktpnr
    ean11
    effwr
    xersy
    aedat
    prdat
    INTO TABLE i_ekpo
    FROM ekpo
    FOR ALL ENTRIES IN i_ekko
    WHERE ebeln = i_ekko-ebeln
    and aedat = i_ekko-aedat
    AND werks IN p_s_werks
    AND matnr IN p_s_matnr.
    LOOP AT i_ekpo INTO rec_ekpo.
    MOVE rec_ekpo-ebeln TO rec_contr-ebeln.
    MOVE rec_ekpo-ebelp TO rec_contr-ebelp.
    MOVE rec_ekpo-loekz TO rec_contr-loekz.
    MOVE rec_ekpo-txz01 TO rec_contr-txz01.
    MOVE rec_ekpo-matnr TO rec_contr-matnr.
    MOVE rec_ekpo-werks TO rec_contr-werks.
    MOVE rec_ekpo-ktmng TO rec_contr-ktmng.
    MOVE rec_ekpo-menge TO rec_contr-menge.
    MOVE rec_ekpo-meins TO rec_contr-meins.
    MOVE rec_ekpo-bprme TO rec_contr-bprme.
    MOVE rec_ekpo-netpr TO rec_contr-netpr.
    move l_v_netpr TO rec_contr-netpr.
    mod-002
    read table i_ekko into rec_ekko with key
    ebeln = rec_ekpo-ebeln.
    l_waers = rec_ekko-waers.
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-netpr
    IMPORTING
    AMOUNT_EXTERNAL = l_amount.
    rec_contr-netpr = l_amount.
    mod-002
    MOVE rec_ekpo-peinh TO rec_contr-peinh.
    MOVE rec_ekpo-webaz TO rec_contr-webaz.
    MOVE rec_ekpo-mwskz TO rec_contr-mwskz.
    MOVE rec_ekpo-uebto TO rec_contr-uebto.
    MOVE rec_ekpo-untto TO rec_contr-untto.
    MOVE rec_ekpo-erekz TO rec_contr-erekz.
    MOVE rec_ekpo-pstyp TO rec_contr-pstyp.
    MOVE rec_ekpo-knttp TO rec_contr-knttp.
    MOVE rec_ekpo-repos TO rec_contr-repos.
    MOVE rec_ekpo-webre TO rec_contr-webre.
    MOVE rec_ekpo-konnr TO rec_contr-konnr.
    MOVE rec_ekpo-ktpnr TO rec_contr-ktpnr.
    MOVE rec_ekpo-ean11 TO rec_contr-ean11.
    MOVE rec_ekpo-effwr TO rec_contr-effwr.
    mod-002
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-effwr
    IMPORTING
    AMOUNT_EXTERNAL = l_eff_amount.
    rec_contr-effwr = l_eff_amount.
    *mod-002
    MOVE rec_ekpo-xersy TO rec_contr-xersy.
    APPEND rec_contr TO i_contr.
    CLEAR: rec_ekpo,rec_contr.
    mod-002
    CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
    mod-002
    ENDLOOP.
    Modifying i_contr using i_ekko.
    SORT i_ekko BY ebeln.
    LOOP AT i_contr INTO rec_contr.
    READ TABLE i_ekko INTO rec_ekko WITH KEY
    ebeln = rec_contr-ebeln
    BINARY SEARCH.
    MOVE rec_ekko-bukrs TO rec_contr-bukrs.
    MOVE rec_ekko-bstyp TO rec_contr-bstyp.
    MOVE rec_ekko-aedat TO rec_contr-aedat.
    MOVE rec_ekko-ernam TO rec_contr-ernam.
    MOVE rec_ekko-lifnr TO rec_contr-lifnr.
    MOVE rec_ekko-zterm TO rec_contr-zterm.
    MOVE rec_ekko-ekorg TO rec_contr-ekorg.
    MOVE rec_ekko-ekgrp TO rec_contr-ekgrp.
    MOVE rec_ekko-waers TO rec_contr-waers.
    MOVE rec_ekko-wkurs TO rec_contr-wkurs.
    MOVE rec_ekko-kdatb TO rec_contr-kdatb.
    MOVE rec_ekko-kdate TO rec_contr-kdate.
    MOVE rec_ekko-inco1 TO rec_contr-inco1.
    MODIFY i_contr FROM rec_contr.
    ENDLOOP.
    ENDIF.
    REFRESH: i_ekko,
    i_ekpo.
    CLEAR : rec_ekko,
    rec_ekpo,
    rec_contr.
    ENDFORM. "select_contracts
    Thanks.

    Hi,
    Please get the valid condition ( based on date ) from A016 (MK & LPA). With the appropriate KNUMH read the Condition header. You can access the different condition items viz., PB00, RA00 etc., for the values from table KONP. Further if you have Value scales / Quantity scales, you can read the data from KONM, KONW.
    An additional tips: in KONP, if you have a condition like RA00 - Rebate, the value will be multiplied by 10 and saven in database to accomodate the discount to the third decimal.
    I could not completely understand your requirements like nature of development ( Is it a Report / SAP Script ??) you are working etc., so that I could help you precisely.
    Hope this helps,
    Best Regards, Murugesh AS
    Message was edited by:
            Murugesh Arcot

  • Purchase Info record conditions Validity Period

    Hi,
    In the Inforecord ME12/ME13 the conditions are displayed with validity period which are shown in ascending order.
    Example
    23.10.2008 to 31.10.2008
    01.11.2008 to 30.06.2009
    01.07.2009 to 31.10.2009
    01.11.2009 to 31.12.9999
    The required display or change is in the decending order in Inforecord Conditions
    01.11.2009 to 31.12.9999
    01.07.2009 to 31.10.2009
    01.11.2008 to 30.06.2009
    23.10.2008 to 31.10.2008
    What are the setting required to get the output as above in the decending order?
    Regards,
    Vengat

    Hi,
    SAP  Standard for the infor record is the Ascending Order
    The old validity period will be displayed and in the end the  latest validity period is displayed
    Go to the  program  SAPMM06I
    with the help of ABAP Technical just check whether it is possible to change
    I think it is not possible .
    Please check
    Regards
    Ganesh

  • Validity periods

    Please confirm what is the validity periods in terms of transaction ME21N,
    does it mean begin of validity period means the starting of date from which vendor needs to be paid and end of validity period
    means from tille whcih dsate we can pay to the vendor
    in whcih table we maiantain the valdity dates.
    does document date with ME21N have any significance related with valdity period dates

    Hi
    Start of Validity Period
    Date as of which services can be performed or materials delivered.
    In the case of outline agreements:
    Start of the stipulated validity period of an outline agreement.
    In the case of RFQs:
    Start of the period in which the quotation is to be submitted.
    In the case of purchase orders:
    Start of the period in which the service is to be performed or the material delivered.
    Service entry sheets can only be created within the specified period.
    End of Validity Period
    Date up to which services can be performed or materials delivered.
    In the case of outline agreements:
    End of the stipulated validity period of the agreement.
    In the case of RFQs:
    End of the period in which the quotation is to be submitted.
    In the case of POs:
    End of the period in which the service is to be performed or the material delivered.
    No further service entry sheets can be created after this date.
    Thanks & Regards
    kishore

  • FM or any method required to fecth the course type from the curriculum type

    Hi,
    I have a requirement where in i need to fetch all the couse type and curriculum types from the given course program (the given course program has various course program block )
    i have made use of the FM  
    " LSO_CP_TRAININGSEQUENCE_GET " which also helps me to get the same along with block type, block id ,elem_group and elem_default .
    As we know the curriculum type so fetched has the course types in it ,
    so can you please suggest me any method to fetch the block type, block id ,elem_group and elem_default along with the coursetype and coursetype id ???
    Thanks in advance
    Archana

    To change the materila type for any material by using MMAM,Please check the following things:
    - Number rage for both material type should be same
    - Account determination or valuation class for both material type should be same
    - there should not be any open purchasing documents for this material
    -Account Category refernce assigned for both the material type should be same so tht the accounting determination wrt to material type is not effected
    -No Stock should exist .

  • Set Validity period to internal catalogs.

    Hi All,
    I am trying to assign a validity period for Internal catalog on the Supplier catalog CSV2 file. I have defined the characteristic Id
    as /CCM/VALID_TO and /CCM/VALID_FROM.
    I am unable to upload the supplier catalog. But if I remove this fields it allows me to upload.
    I tried with COMT_VALID_FROM and COMT_VALID_TO also.
    The date I defined was in YYYYMMDDhhmmss.I tried with different formats of date like DDMMYY,yyyymmdd,ddmmyyyy.
    Please suggest how to assign the validity period to the catalogs.
    Thanks,
    Devi

    Hi Chris,
    It says catalog cannot be uploaded for item.
    This is error I get in SLG1.
    The following exception was raised:
    /CCM/CX_CONVERSION_FAILED
    The exception occurred at the following point:
    Program  /CCM/CL_UPDATE_CONTENT_SERVICECP 
    Include  /CCM/CL_UPDATE_CONTENT_SERVICECM00W Line  41 
    Other properties of the exception: Property  Value 
      KERNEL_ERRID    
      TEXTID    
      $STACK_LVL    1 
      $TXT    Characteristic VALID_FROM not found 
      $EXC_CLASS    /CCM/CX_OBJECT_NOT_FOUND 
      $SRC_PRG    /CCM/CL_CHAR_MANAGER==========CP 
      $SRC_INC    /CCM/CL_CHAR_MANAGER==========CM00J 
      $SRC_LNO    32 
      $STACK_LVL    2 
      $TXT    Characteristic VALID_FROM not found 
      $EXC_CLASS    /CCM/CX_OBJECT_NOT_FOUND 
      $SRC_PRG    /CCM/CL_CHAR_MANAGER==========CP 
      $SRC_INC    /CCM/CL_CHAR_MANAGER==========CM00K 
      $SRC_LNO    86 
      $STACK_LVL    3 
      $TXT    Characteristic VALID_FROM 0000000004 AI_VALID_DATE 0000000001 does not exist 
      $EXC_CLASS    /CCM/CX_INTERNAL_ERROR 
      $SRC_PRG    /CCM/PROCESS_PACKAGE 
      $SRC_INC    
      $SRC_LNO    0 
      V1    10NBC 
      V2    1428 
      %LOGNUMBER    00000000000000031567 
    Regards,
    Devi

  • Any validity  period or expire of maintain the skip indicator is there

    Hi
    Any validity  period or expire of maintain the skip indicator is there.
    Because we mantianed the skip lot for the materials. and it create the correctly upto some period and now eventhou we maintained in the insp type . it not show the X mark against the skip lot field for this lot for the materials.
    Thanks
    vraj

    Hi,
    What is the status of the lot lots
    UD ICCO SPCO STUP
    and let me know what is the DRM setting you have
    u mean DMR.
    DMR is LOT .  dynamic modification -at lot creation
    stage 10::
    inspection severity : blank
    skip : tick
    ist: tick
    short text: skip
    No. of skips........ 9
    Max. skip duration:blank
    New insp. stage 20
    Rejections 1
    New insp. stage 30
    stage20 :
    inspection severity : 4 say
    skip : blank
    ist: blank
    short text: inspect
    No. of inspections.. 1
    New insp. stage 10
    Rejections 1
    New insp. stage 30
    stage30 :
    inspection severity : 4 say
    skip : blank
    ist: blank
    short text: inspect
    No. of inspections.. 5
    New insp. stage 10
    Rejections 1
    New insp. stage 30

  • VK11 Validity period - Change Pointer

    Hi,
    I have a pricecondition ZPMO that has a Validity period.
    A change pointer is created when I create or change the pricecond but when the Validity period is over, nothing happends.
    Any pointers to how I can get a ChangePointer when a Validity period is over ?
    Br,
    Martin

    Hi
    Go to change mode of condition record and here you can extend  the validity periods even though the validity period date is in the past. What i mean to say is that even the validity period for the condition record is over, you can change the valaidity period because it will be in enable mode.
    if needed any inputs pls feel free
    Thanks
    Guru Prasad

  • Condition Record as per validity Period with variation of Qty.

    Hi, Experts
    I have a querry in pricing -
    Suppose i have contract of 30 tons of validity period is 3 months.For this i ahve maintained a condition record(Customer/material) Rs1000/1ton.
    That means customer has to give a order of 10 tons/month.
    If customer is ordering bellow 10ton/month, then i will charge as a price of Rs1100/1ton.
    Otherwise if customer is ordering morethan 10tons, then i will charge market price of exceeding qty.
    For example customer order 15ton/month ,for this i will charge 10tons for as usual our contract price i.e Rs1000/1 ton & rest
    5 tons i will charge for market price.
    which is having material specific condition record for normal scenario
    Kindly revert back if any clarification--
    Thanks'
    Soumya

    Hi ,
    Ifyour asking for any Scale Base Prices follow as required
    Maintain Condition records (VK11)----
    >   1 ton Rs1100 with Dates as per ur requirements
    Then Click on "Scales Icon"  Ther u can maintain  required scales
    1 ton Rs1100
    5Tons< Price is Rs1100
    10 tons> Price Rs 1000
    Regards,

  • Java security error after 8u31 (Timestamped Jarsigned Applet within valid period of Code Signing certificate)

    Hello,
      I have an applet running in embeddad systems. This program runs without any problem since 8u31 update! After this update it starts to give java security warning and stops running.
    Here is the warning message:
      "Your security settings have blocked an application signed with an expired or not-yet-valid certificate from running"
    What it says is true; my Code Signing Certificate (CSC) is valid between 24 Jan 2014 and 25 Jan 2015. And it expired! However, while i was signing my applet with this certificate i used "timestamp". The authority i choosed was DigiCert. My signing date was 26 Jan 2014 (when my CSC was valid).
    When i started to have this Java Security Error, first i thought i mis-timestamped my code, and check by using the jarsigner -verify command. Here is a partial result:
    s      19607 Mon Jan 27 13:17:34 EET 2014 META-INF/MANIFEST.MF
          [entry was signed on 27.01.2014 13:19]
          X.509, CN=TELESIS TELECOMMUNICATION SYSTEMS, OU=ARGE, O=TELESIS TELECOMMUNICATION SYSTEMS, STREET=TURGUT OZAL BLV.NO:68, L=ANKARA, ST=ANKARA, OID.2.5.4.17=06060, C=TR
          [certificate is valid from 24.01.2014 02:00 to 25.01.2015 01:59]
          X.509, CN=COMODO Code Signing CA 2, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB
          [certificate is valid from 24.08.2011 03:00 to 30.05.2020 13:48]
          X.509, CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US
          [certificate is valid from 07.06.2005 11:09 to 30.05.2020 13:48]
          X.509, CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE
          [certificate is valid from 30.05.2000 13:48 to 30.05.2020 13:48]
    sm       495 Thu Jan 23 14:55:22 EET 2014 telesis/WebPhone$1.class
    As you may see the timestamp was correctly done. And it is in the valid period of CSC.
    Than i started to check how Java confirms the Certificate, and found some flowcharts.
    Here is an example from DigiCert:
    Code Signature Verification Process
    After the Web browser downloads the Applet or Web Start application, it checks for a timestamp, authenticates the publisher and Certificate Authority (CA), and checks to see if the code has been altered/corrupted.
    The timestamp is used to identify the validation period for the code signature. If a timestamp is discovered, then the code signature is valid until the end of time, as long as the code remains unchanged. If a timestamp is not discovered, then the code signature is valid as long as the code remains unchanged but only until the Code Signing Certificate expires. The signature is used to authenticate the publisher and the CA, and as long as the publisher (author or developer) has not been blacklisted, the code signature is valid. Finally, the code is checked to make sure that it has not been changed or corrupted.
    If the timestamp (or Code Signature Certificate expiration date) is verified, the signature is validated, and the code is unchanged, then the Web browser admits the Applet or Web Start application. If any of these items do not check out, then the Web browser acts accordingly, with actions dependent on its level of security.
    So according to this scheme, my applet had to work properly, and without security warning.
    However i also found that from Oracle, which also includes the timestamping authorities Certification validity period??? :
    The optional timestamping provides a notary-like capability of identifying
    when the signature was applied.
        If a certificate passes its natural expiration date without revocation,
    trust is extended for the length of the timestamp.
        Timestamps are not considered for certificates that have been revoked,
    as the actual date of compromise could have been before the timestamp
    occurred.
    source:  https://blogs.oracle.com/java-platform-group/entry/signing_code_for_the_long
    So, could anyone please explain why Java gives security error when someone tries to reach that applet?
    Here is a link of applet: http://85.105.68.11/home.asp?dd_056
    I know the situation seems a bit complicated, but i tried to explain as simple as i can.
    waiting for your help,
    regards,
    Anıl

    Hello,
      I have an applet running in embeddad systems. This program runs without any problem since 8u31 update! After this update it starts to give java security warning and stops running.
    Here is the warning message:
      "Your security settings have blocked an application signed with an expired or not-yet-valid certificate from running"
    What it says is true; my Code Signing Certificate (CSC) is valid between 24 Jan 2014 and 25 Jan 2015. And it expired! However, while i was signing my applet with this certificate i used "timestamp". The authority i choosed was DigiCert. My signing date was 26 Jan 2014 (when my CSC was valid).
    When i started to have this Java Security Error, first i thought i mis-timestamped my code, and check by using the jarsigner -verify command. Here is a partial result:
    s      19607 Mon Jan 27 13:17:34 EET 2014 META-INF/MANIFEST.MF
          [entry was signed on 27.01.2014 13:19]
          X.509, CN=TELESIS TELECOMMUNICATION SYSTEMS, OU=ARGE, O=TELESIS TELECOMMUNICATION SYSTEMS, STREET=TURGUT OZAL BLV.NO:68, L=ANKARA, ST=ANKARA, OID.2.5.4.17=06060, C=TR
          [certificate is valid from 24.01.2014 02:00 to 25.01.2015 01:59]
          X.509, CN=COMODO Code Signing CA 2, O=COMODO CA Limited, L=Salford, ST=Greater Manchester, C=GB
          [certificate is valid from 24.08.2011 03:00 to 30.05.2020 13:48]
          X.509, CN=UTN-USERFirst-Object, OU=http://www.usertrust.com, O=The USERTRUST Network, L=Salt Lake City, ST=UT, C=US
          [certificate is valid from 07.06.2005 11:09 to 30.05.2020 13:48]
          X.509, CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE
          [certificate is valid from 30.05.2000 13:48 to 30.05.2020 13:48]
    sm       495 Thu Jan 23 14:55:22 EET 2014 telesis/WebPhone$1.class
    As you may see the timestamp was correctly done. And it is in the valid period of CSC.
    Than i started to check how Java confirms the Certificate, and found some flowcharts.
    Here is an example from DigiCert:
    Code Signature Verification Process
    After the Web browser downloads the Applet or Web Start application, it checks for a timestamp, authenticates the publisher and Certificate Authority (CA), and checks to see if the code has been altered/corrupted.
    The timestamp is used to identify the validation period for the code signature. If a timestamp is discovered, then the code signature is valid until the end of time, as long as the code remains unchanged. If a timestamp is not discovered, then the code signature is valid as long as the code remains unchanged but only until the Code Signing Certificate expires. The signature is used to authenticate the publisher and the CA, and as long as the publisher (author or developer) has not been blacklisted, the code signature is valid. Finally, the code is checked to make sure that it has not been changed or corrupted.
    If the timestamp (or Code Signature Certificate expiration date) is verified, the signature is validated, and the code is unchanged, then the Web browser admits the Applet or Web Start application. If any of these items do not check out, then the Web browser acts accordingly, with actions dependent on its level of security.
    So according to this scheme, my applet had to work properly, and without security warning.
    However i also found that from Oracle, which also includes the timestamping authorities Certification validity period??? :
    The optional timestamping provides a notary-like capability of identifying
    when the signature was applied.
        If a certificate passes its natural expiration date without revocation,
    trust is extended for the length of the timestamp.
        Timestamps are not considered for certificates that have been revoked,
    as the actual date of compromise could have been before the timestamp
    occurred.
    source:  https://blogs.oracle.com/java-platform-group/entry/signing_code_for_the_long
    So, could anyone please explain why Java gives security error when someone tries to reach that applet?
    Here is a link of applet: http://85.105.68.11/home.asp?dd_056
    I know the situation seems a bit complicated, but i tried to explain as simple as i can.
    waiting for your help,
    regards,
    Anıl

  • Pricing How to shorten validity period of conditon record throgh LSMW ?

    Friends:
    We have to shorten validity period of conditon record.  We have records expiring in 2015. We have new pricing which i am planning to load through LSMW but before i load new prices i need to clean up reocrds expiring in 2015 through LSMW. Does any know how to clean up these records or shorten this records ?
    Vanbills

    Hi Vanbills,
    You need not do anything to shorten the pricing validity dates.
    Just upload your new prices using LSMW.  System will automatically shorten the validity dates.
    Example :
    Existing Pricing record     -  PR00 - 100 USD  - from 01.01.2008 to 31.12.2015
    if you are creating a new pricing record today - PR00 - 120 USD - from 01.05.2009 to 31.12.2010
    system will automatically shorten the previous record.
    It means your existing record will become - PR00 - 100 USD - from 01.01.2008 to 30.04.2009 and
    new record will be                                     PR00 - 120 USD -  from 01.05.2009 to 31.12.2010
    Hence just upload new prices....forget about shortening the old dates.
    Regards
    Krishnam Raju

Maybe you are looking for

  • A new socket for every http-request?

    Do I have to make a new socket for every http-request? The code below doesn't work because it is two requests in a row. The first GET works, but the second doesn't. I thought that the purpose of a socket is that you set it up once and then you should

  • Comparing 2 Timestamps in an SQL Query

    Hi all, I'm connecting to an Oracle Database by JDBC und now I'm trying to compare the stored Timestamp-Object with another Java-TimestampObject. My Query looks like that: select * from table where date.getTimestamp() > old_date The first 'date' name

  • PSE Install problem

    I have not tried a bunch of times to install PSE 10 on my Windows 7 desktop (32-bit).  It keeps getting to the point where it is trying to install the Shared Technologies package and then fails and does a roll back uninstall.  I have looked at the in

  • Installing E- Business Suite R12 in XP

    Hi, I want to install EBS R12 in my laplop (Windows XP). But other products like Oracle Database 10g Express Edition, Oracle Fusion Middleware 11gR1 and Oracle Developer Suite 10g are already installed in the system. Will it be a problem for EBS inst

  • Skype crashes on login

    Hello everyone! I have reinstalled Arch on my new hard drive (and it's more awesome than it was before) but I have a problem where Skype crashes on login, and ALSA is at fault here: Output in console when the crash happens: ** glibc detected *** /usr