Item Expiry Dates in a View ?

I would like to write a query to show items that have an expiry date or number of days until expiry set, is there a secured view that can be used or do I need to access the underlying table directly ?
The wwv_things table gives me the expiredate, expirenumber, expiremode. The content area view (wwsbr_all_items) only has the expiredate so doesn't show any items that are set to expire say 5 days in the future.
Is there a different view that shows this or should I just run the query off wwv_things ?

Simon,
You would need the expirenumber and expiremode columns from the wwv_things table to achieve this. Expiremode, a varchar2 column, can contain the literal 'PERMANENT', 'DATE', or 'NUMBER'. WWSBR_ALL_ITEMS view currrently does not expose these columns. If you have access to the source, add these 2 columns to the view creation script. If not use the view script given below to recreate the view:
PROMPT Creating View 'WWSBR_ALL_ITEMS'
CREATE OR REPLACE VIEW WWSBR_ALL_ITEMS AS
SELECT t.masterthingid masterid,
t.id,
t.siteid caid,
t.language,
t.iscurrentversion is_current_version,
t.cornerid folder_id,
t.regionid folder_region_id,
t.name,
t.title display_name,
t.itemtype,
t.type,
t.subtype,
t.parentid parent_item_id,
t.topicid category_id,
t.topicsiteid category_caid,
t.author,
t.description,
t.publishdate publish_date,
t.expiremode expire_mode,
t.expiredate expire_date,
t.expirenumber expire_number,
t.image,
t.keywords,
u.url url,
t.filename,
tx.text text,
t.cornerlinkid folder_link_id,
t.cornerlinksiteid folder_link_caid,
t.active,
t.checkable can_be_checkedout,
t.checkedout is_item_checkedout,
t.checker checker_username,
t.checkoutdate checkout_date,
t.fullscreen,
t.inplace,
t.hideinbrowse,
t.createdate,
t.creator,
t.updatedate,
t.updator,
t.seq,
t.author_seq,
t.createdate_seq,
t.itemtype_seq
FROM WWV_THINGS T,
WWSBR_URL$ U,
WWV_TEXT TX
WHERE t.url = u.url(+) and
t.siteid = u.object_siteid(+) and
t.textid = tx.id(+) and
t.siteid = tx.siteid(+) and
( EXISTS
-- site and style admin
SELECT 'x'
FROM WWSEC_SYS_PRIV$
WHERE OBJECT_TYPE_NAME = 'SITE'
AND NAME = TO_CHAR(T.SITEID)
AND OWNER = wwctx_api.get_product_schema
AND GRANTEE_TYPE = 'USER'
AND GRANTEE_USER_ID = wwctx_api.get_user_id
AND GRANTEE_GROUP_ID = 0
AND PRIVILEGE_CODE > 100 -- SITE and STYLE ADMIN
UNION ALL
SELECT 'x'
FROM WWSEC_SYS_PRIV$ P, WWSEC_FLAT$ F
WHERE P.OBJECT_TYPE_NAME = 'SITE'
AND P.NAME = TO_CHAR(T.SITEID)
AND P.OWNER = wwctx_api.get_product_schema
AND P.GRANTEE_TYPE = 'GROUP'
AND P.GRANTEE_USER_ID = 0
AND P.GRANTEE_GROUP_ID = F.GROUP_ID
AND P.PRIVILEGE_CODE > 100 -- SITE and STYLE ADMIN
AND F.PERSON_ID = wwctx_api.get_user_id
OR
-- portal admin
EXISTS
SELECT 'x'
FROM WWSEC_SYS_PRIV$
WHERE OBJECT_TYPE_NAME = 'ANY_SITE'
AND NAME = 'ALL_OBJECTS'
AND OWNER = wwctx_api.get_product_schema
AND GRANTEE_TYPE = 'USER'
AND GRANTEE_USER_ID = wwctx_api.get_user_id
AND GRANTEE_GROUP_ID = 0
AND PRIVILEGE_CODE = 500 -- ADMIN
UNION ALL
SELECT 'x'
FROM WWSEC_SYS_PRIV$ P, WWSEC_FLAT$ F
WHERE P.OBJECT_TYPE_NAME = 'ANY_SITE'
AND P.NAME = 'ALL_OBJECTS'
AND P.OWNER = wwctx_api.get_product_schema
AND P.GRANTEE_TYPE = 'GROUP'
AND P.GRANTEE_USER_ID = 0
AND P.GRANTEE_GROUP_ID = F.GROUP_ID
AND P.PRIVILEGE_CODE = 500 -- ADMIN
AND F.PERSON_ID = wwctx_api.get_user_id
OR
-- folder owner
( EXISTS (SELECT 'X'
FROM WWV_USER_OWNED_CORNERS
WHERE SITEID = T.SITEID
AND ID = T.CORNERID)
OR
-- view folder w/no ILS
( EXISTS (SELECT 'X'
FROM WWV_USER_CORNERS
WHERE SITEID = T.SITEID
AND ID = T.CORNERID
AND HAVEITEMSECURITY = 0)
OR
-- view folder or item w/ILS
EXISTS (SELECT 'X'
FROM WWV_USER_CORNERS C
WHERE C.SITEID = T.SITEID
AND C.ID = T.CORNERID
AND ((HAVEITEMSECURITY = 0) OR
(HAVEITEMSECURITY = 0 AND
T.SECURITY = 'folder') OR
(HAVEITEMSECURITY = 1 AND
T.SECURITY = 'item' AND
EXISTS
(SELECT 'X'
FROM WWSEC_SYS_PRIV$ D,
WWSEC_FLAT$ F
WHERE F.PERSON_ID =
WWCTX_API.GET_USER_ID()
AND D.OBJECT_TYPE_NAME = 'ITEM'
AND D.NAME =
T.SITEID| |'/'| |T.MASTERTHINGID
AND D.OWNER =
WWCTX_API.GET_PRODUCT_SCHEMA
AND D.GRANTEE_TYPE = 'GROUP'
AND D.GRANTEE_GROUP_ID = F.GROUP_ID
AND D.GRANTEE_USER_ID = 0
UNION ALL
SELECT 'X'
FROM WWSEC_SYS_PRIV$ D
WHERE D.OBJECT_TYPE_NAME = 'ITEM'
AND D.NAME =
T.SITEID| |'/'| |T.MASTERTHINGID
AND D.OWNER =
WWCTX_API.GET_PRODUCT_SCHEMA
AND D.GRANTEE_T YPE = 'USER'
AND D.GRANTEE_USER_ID IN
(WWCTX_API.GET_USER_ID(),2)
PROMPT Creating View 'WWSBR_ITEM_PERSPECTIVES'
CREATE OR REPLACE VIEW WWSBR_ITEM_PERSPECTIVES AS
SELECT tp.siteid item_caid,
tp.masterthingid item_masterid,
tp.perspectiveid perspective_id,
tp.perspective_siteid perspective_caid,
p.name perspective_name
from wwv_thingsperspectives tp,
wwv_perspectives p
where p.siteid = tp.perspective_siteid
and p.id = tp.perspectiveid
and exists (select 1
from wwsbr_all_items i
where i.masterid = tp.masterthingid
and i.caid = tp.siteid)
null

Similar Messages

  • Workflow to send mail 20 day before the expiry date

    Dear All,
    I created a workflow to send mail when a calculated column date is equal to today as follows:-
    Step1
    add -20 days  to Current Item:Expiry Date (Output to Variable : date)
    then set variable : Notification1 to Variable : date
    Step2
    If variable:notification1 equals (ignoring time) Today
    email users
    Now when i add a new item to the list , the workflow status is set to In progress , and when i refresh the page the status is changed to Completed before the condition is met and!!
    Any help
    Regards

    If I Understood your question correctly, you need to send email to user 20 days before expiration date. 
    From above you workflow I can see, you are just checking your condition once a item is created. As your Step2 condition is not met your  workflow is completed without any error. I suggest you might want to try below workflow
    Step1
    add -20 days  to Current Item:Expiry Date (Output to Variable : date)
    then set variable : Notification1 to Variable : date
    then Pause until Variable:date
    Step2
    email users
    Above workflow design will pause you workflow till 20 days before expiry date. and then send email to user. 
    Please ignore syntax, I just tried to put logic.
    Below is explantion on how to use Pause Action(from MSDN) in Sharepoint workflow
    This action is initially displayed in a workflow step as Pause until this time.
    Use this action to pause the workflow until a particular date. You can add a current date, a specific date, or a lookup.
    Following are examples of what the action might look like in a workflow step,
    Pause until 1/1/2010 12:00:00 AM
    Pause until Variable: A week from Modified
    If this helps Please mark it answer or vote as helpful.
    Thanks
    Siddharth

  • Getting hold of an item's expiry date

    WWSBR_ALL_ITEMS contains a column called EXPIREDATE.
    This only seems to get populated with a date if:
    1. An explicit expiry date is provided
    2. You click on the expire item link
    For items that are set to 'Expire in x days' nothing is stamped here when 'x' number of days past the publish date is exceeded.
    In fact, I cannot find where the 'x' days is recorded anywhere.
    This means I cannot write any SQL against the WWSBR_ALL_ITEMS view to pull back items that are not expired if 'expire in x days' is utilised.
    Can somebody point me in the right direction? I'm sure it is hiding as an attribute somewhere...
    Cheers,
    John

    Simply alter your database table liek this:
    alter table <your_table> modify (<your_date_column> default sysdate);
    You simple delete this date item from the APEX Form region. Each time you insert a record into thsi table, the column is set to sysdate.

  • Set Disable or Expiry Date for web app item via Edit form

    I have a user that wants to delete a web app item from a secure zone edit form, but they are not the owner of that web app item.  All items in the web app were imported via a csv file and hence do not have a 'submitted by' user id assigned.
    Is it possible to Disable a web app item using a web app Edit form?  or alternatively, is it possible to set the Expiry Date of a web app item using a web app Edit form?
    Thanks
    Dave

    Sorry Brian, but I'm not sure that answers my question.
    Sure, I can create a single web app item for every single client of my customer, manually.
    Sure, I can create and 'allocate' that single web app item to each customer manually.
    I pray the customer doesn't have hundreds of clients. And I would have to teach my customer how to do this convoluted process for every new client.
    But the one thing this doesn't do is answer the question of updating the value of units held.
    It seems the order module remains the closes to what I am looking for in that it allows an equation, and is automatically customer specific.
    However, I am looking for a way to achieve a single daily update by the customer as to the value of the units held by each client. This can be done via the product module - update price. But this does not update existing orders. Exisitng orders are fixed at the price on the day. The customer wants to update the value once, in one place, and have that amend all existing 'orders' to reflect the new total value of units held by each individual client, and to have this show in each client's member area.
    If you can think of a way of doing this in webapps or via the order module, this is what I am looking for. Anyone?

  • Make content item's status to expire after crossing expiry date in WLP repo

    Can anybody please tell me, how make the status of content to expired after crossing its expiry date(content attribute) programmatically.
    Thanks a ton in advance.

    Are you using Library Services and the WLP Repository? If so, are you looking to automatically move content Nodes to the Retired status when the expiry date is reached? If the answers to both of these are yes, then you'll need to write some type of job that runs on some frequency and queries for Nodes where the expiration/retired date is reached. Of course, you'll need to have a Property on each content Type that holds the scheduled retirement date. Your job would then need to query where the retirement date has been reached and do a checkout, change status to retired, and then check the Node back in. Note that the retirement would only occur as often as your job ran, so if the retirement is time senstivie (ie. to the minute or second), then you'll also need to filter your content searches that are used in your application to filter out items that have reached the expiration date (ex. Type.ExpirationProperty > now).
    If you're not using Library Services, then you would just include the expiration date test (Type.ExpirationProperty > now) in each query/display to ensure that you are not displaying content that has reached maturity.
    Brad

  • Expiry date for items

    Hi all,
    Is it possible to set Expiry date for Item. if so, how?
    Plz let me know,
    thanks in advance
    Kumar

    Hi,
    There is no Expiry date field available in the Item Master Data. However, you can check the option of the Validity dates in Item Master Data or if your item is a batch managed item, then you can have the batch expiry date.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • ALUI Publisher 6.4 - deleting of content items after expiry date

    Hi, We have a requirement to delete content items from Publisher after the expiry dates. Is there a process to do this within ALUI Publisher 6.4? Appreciate any suggestions or thoughts. Thanks.

    I work with publisher for a long time now, and I don’t think that there is an automatic process that dose that, you have to manually delete it when it is expired.
    -Lilach

  • Report with expiry date.

    In MB51, I cannot find the expiry date for the batch.
    Is there any report where I can find list of batch with PO and also the expiry date?
    Please advice.

    HI,
    MB5M is the perfect report as suggested by jurgen.The criteria is, in Material master the plant data
    storage view u have give the shelf life.It will work perfectly.Pl try.Give shelf life as one for the
    material .Goto MSC2N and change the manfactured as 17/06/09 and press enter .The expiration date
    will be calculated automatically by the system.Now goto MB5M the system will dislay the shelf life
    expiration date.
    Is there any report where I can find list of batch with PO-For this u can use MB51  report
    regards
    murugan
    Edited by: Murugan mgl on Jun 19, 2009 6:16 AM

  • How to change the default text "There are no items to show in this view" in the visual webpart

    Hi,
    I am using a visual webpart and in that if there are no items in the list it is showing the default text "There are no items to show in this view." I want to change this default text. 
    I checked the forums here there are multiple ways are shown but no one is working for me.
    Kindly help me to change this text.
    Thanks in advanced.

    It seems you're retrieving items inside a specific you.. why not having a <div> inside you're visual web part and check to see if the count of items retrieved is > 0 then insert that in the div, otherwise, insert your custom message and not rendering
    the web part itself. What you're describing is the default message from SharePoint which comes from default views, and this can be changed from xslt in SP 2010 or in JSLink in SP 2013, here's a link how to do so in JSLink :
    http://www.idubbs.com/blog/2015/jslink-csr-to-override-there-are-no-items-to-show-in-this-view/ .
    But as said, since you're doing a visual web part, keep your stuff in the visual web part and check for the count of items before adding the rendered data to your div.  
    Mohamed Derhalli
    SharePoint Consultant
    Blog: SharePoint Thoughts
       Twitter:
    LinkedIn:
      

  • An error occurred while loading the model for the item or data source 'EntityDataSource'.

    Hi Team,
    We are trying to configure the Power View in SharePoint 2013. We did the entire configuration by following below steps. When we open the excel workbook (2013) containing
    Power View sheet (using excel web services) deployed in SharePoint Document library, we get the below error.
    “An error occurred while loading the model for the item or data source
    'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access the data source.”
    Steps followed for configuring Power View in SharePoint Server 2013 (Single Machine setup):
    Installed SharePoint Server 2013 Enterprise edition
    Did not configure it at this time
    Installed SQL Server 2012 with default instance installation (selected every features)
    Later installed SP1 for SQL Server 2012
    After that installed Analysis Server in SharePoint mode (SQL Server PowerPivot for SharePoint)
    Again installed another Analysis Server and selected the tabular mode of data model
    Then ran the configuration wizard of Share point 2013 for farm configuration (only for central admin creation)
    Later we ran the PowerPivot for SharePoint 2013 (spPowerpivot.msi)
    Then using the Power Pivot Configuration tool for 2013 and completed all the steps and configured the excel service and registered the above two analysis service instances. 
    Questions/Doubts are:
    Is our steps followed as mentioned above is correct for configuring Power View in SharePoint Server 2013 Enterprise edition?
    Is the SQL Server 2012 Enterprise edition with SP1 installed is sufficient to view Power View sheets in SharePoint 2013 or we need to use the SQL Server 2012 SP1
    CTP3 software for Power View feature as mentioned in the below link.
    http://technet.microsoft.com/en-us/library/jj219634.aspx
    but we don’t have an option to download CTP3 software now from Microsoft site
    Or do we need to install
    Microsoft SQL Server 2012 With Power View For Multidimensional Models
    CTP
    http://www.microsoft.com/en-sg/download/details.aspx?id=35822
    Few blogs says that SQL Server 2012 instance should have been installed with SP1 at one go (not seperately).
    http://www.microsoft.com/en-in/download/details.aspx?id=35575
    Error detail :
    <detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access
    the data source.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3000.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'EntityDataSource'. Verify that the connection information is correct and that you have permissions to access
    the data source.</Message><MoreInformation><Source>Microsoft.ReportingServices.ProcessingCore</Source><Message msrs:ErrorCode="rsErrorOpeningConnection" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsErrorOpeningConnection&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3000.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">Cannot create a connection to data source 'EntityDataSource'.</Message><MoreInformation><Source>Microsoft.AnalysisServices.SPClient</Source><Message>We
    cannot locate a server to load the workbook Data Model.</Message><MoreInformation><Source></Source><Message>We cannot locate a server to load the workbook Data Model.</Message><MoreInformation><Source>Microsoft.Office.Excel.Server.WebServices</Source><Message>We
    cannot locate a server to load the workbook Data Model.</Message></MoreInformation></MoreInformation></MoreInformation></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices"
    /></detail>
    Please help me in  configuring Power View for SharePoint 2013.
    Thanks in advance.
    Pavan Kumar

    I'll bet that I know the answer to this one - and you probably won't like it ;)
    Here's the telling portion of that error:  "We cannot locate a server to load the workbook Data Model."
    This error is thrown in two scenarios; the first, when you haven't registered an analysis server.  The second appears to be the issue you're having:
    PowerPivot requires SQL Server 2012 SP1.  Microsoft issued a release of SQL Server 2012 SP1 that really wasn't SP1...
    Check the version of SQL that you are running.  It should be version 11.0.3000 or greater.  If it's not, you have the wrong "SP1" installed.  The correct one is
    here.
    Here's the bad news- you can't simply redeploy the correct one... because the installer already thinks that SP1 is installed.  You'll have to backup (or detach and copy) your databases, then re-install SQL with the correct SP1, then restore or reattach
    the databases.  Once you've done that, PowerPivot and PowerView will work properly.
    I sincerely hope this resolves your issues - we wasted TWO WEEKS of our time with this problem!

  • How is calculated SC current quantity in item basic data tab ?

    Hello,
    We work on a SRM 7 release with PPS.
    As it is not possible in Extended Classic Scenario to use local contracts (that is not replicated into ECC backend) as sources of supply for "Limit" item Shopping Cart creation, we create "Free text" (Description) SC item.
    For this kind of SC item, according to a specific and dedicated UoM, SC quantity is given as mandatory to be '1'. Then, users populate price. So, in this way, we have an "Amount" SC item being equivalent to standard "Limit" SC item.
    Then, at corresponding PO item creation, SC item quantity ('1') is populated into PO item gross price and SC item gross price is populated into quantity PO item in order to be able to confirm in "quantity" our PO.
    This process is OK.
    Nevertheless, we have two sides effect after PO is generated :
    1- Field "Current quantity" (not sure with the name - i do not have SRM system in front of me)  for SC item basic data tab seems to be populated with value being difference between SC item quantity and PO item quantity.
    For example, if SC item quantity is '1' and PO item quantity is  '20.000' in SC item basic data, order quantity is '1' and ordered quantity is '20.000' with is normal. But "Current quantity" (below "Ordered quantity") is '19.999-' instead of '0'.
    2- After a first confirmation created based on SC (not on PO, this is important), SC POWL button "Create confirmation" is greyed out. This seems to be normal behavior as PO item quantity confirmed first time can not be lower than 1, this confirmed quantity is greater than SC item quantity. So, there is no SC outsanding quantity...
    Our two problems should be linked: this is due to how "Current quantity" for SC is calculated.
    As our customer users do not have access to PO POWL, we can not use create Confirmation transaction in order to use PO as reference document to create confirmations.
    In a technical point of view, field concerned is PS_SC_OUT_QUAN (not sure with this name...) for context ITEM_BASIC_DATA from view V_DODCSC_I_BD (WDC /SAPSRM/WDC_DODC_SC_I_BD ).
    I found enhancement for this field ( /SAPPSRM/WD_SC_I_BD_QUAN ) but this enhancement has no method !
    I tried to debug some methods from Class /SAPSRM/CL_CH_WD_SET_FACADE, but i did not find yet where calculation is done for concerned field.
    My aim is to make an enhancement to overwrite standard calculation.
    An easier way should be to reverse gross price and quantity directly inside SC (to not have difference betwen SC and PO quantities), but our customer does not want.
    Do you have any idea ?
    Regards.
    Laurent.

    Hello,
    We used a workaround to answer to our customer's requirement.
    We ceated two customer fields, one for net price and a second one for the quantity. Using metadata, we hid the two corresponding standard fields and displayed our CUF in SC.
    Using BadI Change for SC, we populated standard fields with our CUF values (after having made inversion between quantity / net price).
    Checks are done in BAdI to be sure our quantity CUF and price unit values are '1'.  
    As we use SC to create only PO as follow-on document, no other modifications are necessary.
    Regards.
    Laurent.

  • No mention of contract expiry date on bill?

    I realise that when you enter into a new contract with BT you receive written details of start date, services etc.
    When logging in to My BT and viewing current balance, phone, broadband etc, I cannot see any reference to the contract period.
    Viewing my latest bill lists various services and charges along with any discounts etc. but again I can't see any reference to contract length or expiry date.
    Perhaps I'm missing a link somewhere? Woud appreciate advice.
    I know that I could always dig out the original contract confirmation letter but it's normally buried at the bottom of a drawer somewhere. I  assume BT has to send you a letter of confirmation for legal reasons but I thought the idea was to go paper free!
    Unless I AM missing something I fail to see why the contracted period is not clearly shown on my bill.
    Solved!
    Go to Solution.

    Try this direct link https://bt.custhelp.com/app/chat/contact_chat/queue_id/275/c/2902
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How does the project expiry date work?

    I am looking to buy Captivate. But I first need to know how the project expiry date works.
    I am currently producing a short course for a company in my area, but our agreement is that they get to use the short course for a period of 3 months. If I create the short course in Captivate, will I be able to set an expiry date on the project? For example, person A buys my short course. After 3 months (or however long) the course expires and he will no longer be able to open the short course. Is this what the expiry function does?
    Also, does the expiry function work even if the project is copied from one hard drive to another? For example, if someone makes a duplicate of the project onto a friend's hdd, will both projects still expire after 3 months?
    Thanks guys.

    Hi there,
    I have been a Articulate Storyline users for several years now and am new on the Captivate forum. Someone told me that Captivate can set an expiry date on the course content after being downloaded on an iPad for offline viewing (so without an LMS). In Articulate SL this is not possible unfortunately although a feature request has been made by quit a few. Situation is that I deliver course content to clients operating in remote areas (shipping). It is essential for me to have this feature and will seriously consider changing over to Captivate if this is true.
    Could anyone help me out on this one?
    Thanks in advance for sharing!
    Regards,
    John

  • Purchasing document item change date

    Hi GUrus,
    Could some one please explain me what is purchasing document item change date. while checking item changes for one PO i am getting this. it is showing one old value and one new value. only i wanted to know where is that date in side a PO.
    Thanks
    Sha

    Hello ,
    When you go to item level changes , sap shows the change history for that particular line items .
    So it will show all the values which is been changed . In terms of date , the old date is the date at which the line item must have been creaated or changed and the new date is the last change date by the user .
    For e.g .if the line item is changed multiple times , then it will show with respect to each date the change history . For better viewing and understanding you can sort the changes by date & find out what was the last change details .
    Hope its clear .
    Lawrence Fernandes

  • Can I list my purchased items by date? In Itunes on a PC

    On the latest Itunes on a windows 7 PC can I list my purchased items by date so I know what I downloaded in the order of date pourchased?

    Use View > View Options... or right click on the column headings to display the Date Added column, then sort on it.
    tt2

Maybe you are looking for