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.

Similar Messages

  • 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

  • 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

  • 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&#0124; &#0124;'/'&#0124; &#0124;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&#0124; &#0124;'/'&#0124; &#0124;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

  • 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?

  • How to get account expiry date for Oracle Directory Server?

    I need to get the account expiry date for Oracle Directory server. Which attribute stores this value? Please let me also know the attribute type and how to fetch it.
    Thanks,
    Subrat

    Hello,
    Yes you can use nsAccountLock directly (When nsAccountLock=true, the object is inactivated and the user cannot log in)
    This is documented in Modifying Directory Server’s NsAccountLockAttribute Directly (Sun Java System Directory Server Enterprise Edition 6.2 In…  (release number is old but it does not matter, Thats the first one Ive found)
    You can also use dsutil account-inactivate as described in dsutil - 11g Release 1 (11.1.1.7.0)
    Sylvain
    Please mark this response as correct or helpful when appropriate to make it easier for others to find it

  • Camel Query : Calender list : Get Items agains given date that must be greater than and eqaul to start date and greater less than or equal to end date ?

    Camel Query : Calender list : Get Items agains given date that must be greater than and eqaul to start date and greater less than or equal to end date ?
    A Snap of Employee holiday list
    Case : Anne juul Sondergaar is on leave from 05-06-2014 to 07-06-2014
    I need a query to check wheither Anne juul is on leave at 06-06-2014 ????
    I am using this query that return nothing
    SPQueryquery =
    newSPQuery();
                                query.Query =
    @"<Where>
    <And>
    <And>
    <Leq>
    <FieldRef Name='Til' />
    <Value Type='DateTime'>"
    + WorkingStartDate.ToString("yyyy-MM-dd")
    + @"</Value>
    </Leq>
    <Geq>
    <FieldRef Name='Fra' />
    <Value Type='DateTime'>"
    + WorkingStartDate.ToString("yyyy-MM-dd")
    + @"</Value>
    </Geq>
    </And>
    <Eq>
    <FieldRef Name='Medarbejdere' />
    <Value Type='Lookup'>"
    + EmployeeName.Trim() +
    @"</Value>
    </Eq>
    </And>
    </Where>"
                                query.ViewFields =
    " <FieldRef Name='ID' />";
    Ahsan Ranjha

    Hello,
    Download CAML query builder from below location and use it to build your query:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f7b36ebc-6142-404a-8b04-9c87de272871/where-can-i-download-the-u2u-caml-query-builder-for-sharepoint-2010may-i-know-the-exact-link?forum=sharepointgeneralprevious
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • 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

  • ItemRenderer method  which gets item index in data provider?

    How do I write a method in an AdvancedDataGridItemRenderer which
    gets the index of the item in the data provider?

    I've used your example to write this code:
    var itemIndexInDataProvider:int = advancedDataGrid.indicesToIndex(listData.rowIndex, listData.columnIndex);
    At first I thought I've solved the problem
    but my AdvancedDataGrid displays hierarchical data
    so the rowIndex depends on what folders are expanded: different items can have the same rowIndex.
    In other words indicesToIndex() works only with non hierarchical data.
    Any suggestions?

  • Getting hold of filtered POWL data

    We have a POWL in which the standard 'filter' is frequently used. When an action is performed after a filter has been applied, I need to be able to get hold of the filtered data and perform a task. I've debugged the POWL feeder class but cannot find a way of getting to this data. In particular, in the HANDLE_ACTION method, I can see the original set of data but not the filtered data. Can anyone help please ? 
    thanks,
    Malcolm.

    Hello Malcolm,
    Did you find any solution for this requirement?
    I have a similar requirement with one of my customer?
    Regards,
    Manu

  • BAPI_GOODSMVT_CREATE - Batch Expiry Date......

    HI Im,
    using this BAPI to post a goods movement from one location to another in the same plant.
    The stock is being posted to a specific Batch.  When I do this the material document gets created okay and the stock moves.
    The problem is that the batch expiry date is not updating.  The stock I'm moving has a later expiry date than the current date.  If I do this manually in MIGO it works fine and updates the batch expiry date with the later date.
    Has anyone else experienced this or know of a work around ?

    Hi
    I am populating the item data like:
    *- Populate item data
      LOOP AT i_items_trans.
        CLEAR ibapigm_item.
    *- Convert the matnr backto 18 char form (External)
        CALL FUNCTION 'CONVERSION_EXIT_MATN2_INPUT'
          EXPORTING
            input            = i_items_trans-matnr
          IMPORTING
            output           = i_items_trans-matnr
          EXCEPTIONS
            number_not_found = 1
            length_error     = 2
            OTHERS           = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        ibapigm_item-material   = i_items_trans-matnr.
        ibapigm_item-plant      = x_user-werks.
        ibapigm_item-stge_loc   = x_user-lgort.
        ibapigm_item-move_type  = '101'.   "Goods Receipt
        ibapigm_item-mvt_ind    = 'B'.     "Goods Movement for PO
        ibapigm_item-po_number  = i_items_trans-ebeln.
        ibapigm_item-po_item    = i_items_trans-ebelp.
        ibapigm_item-gr_rcpt    = sy-uname.
        ibapigm_item-quantity   = i_items_trans-ktmng.
        ibapigm_item-base_uom   = i_items_trans-meins.
        ibapigm_item-entry_qnt  = i_items_trans-ktmng.
        ibapigm_item-entry_uom  = i_items_trans-meins.
        ibapigm_item-batch      = i_items_trans-charg.
        APPEND ibapigm_item.
      ENDLOOP.
    Header data like:
      MOVE: sy-datum TO bapigm_head-pstng_date,
            sy-datum TO bapigm_head-doc_date,
            sy-uname TO bapigm_head-pr_uname,
            v_mblnr  TO bapigm_head-ref_doc_no,
            con_bfwms_bestand TO bapigm_head-ext_wms.
    *- Document Header Text
      IF NOT v_bktxt IS INITIAL.
    *- Preceed "INV=" to the Invoice number entered
        CONCATENATE 'INV='(003) v_bktxt INTO v_bktxt
        SEPARATED BY space.
        bapigm_head-header_txt = v_bktxt.
      ENDIF.
      MOVE gmcode_01 TO bapigm_code-gm_code.
    And calling the BAPI as:
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header  = bapigm_head
          goodsmvt_code    = bapigm_code
        IMPORTING
          goodsmvt_headret = bapigm_headret
        TABLES
          goodsmvt_item    = ibapigm_item
          return           = ibapigm_ret.
    *- Commit on Success
      IF NOT bapigm_headret-mat_doc IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDIF.
    Havent faced any problem so far...
    Did you populate <b>EXPIRYDATE</b> in  structure <b>BAPI2017_GM_ITEM_CREATE</b>? If yes, see in debugging, whatz happening to this value.
    Regards,
    Raj

  • The Ipad cannot be synced because there is not enough free space to hold all the items in the ITunes library (6.55G required, 6.98G available)

    The message is The Ipad cannot be synced because there is not enough free space to hold all the items in the ITunes library (6.55G required, 6.98G available). which doesn't make sense as there is enough room according to the message

    How much space is your Other using? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • Get open and close items

    Hello All,
    I need to get Open and Close items for customer based on company code....i mean to say user don't want to give customer number he want to get Open and Close item for all customer under that company code.
    It would be great if some one suggest me any function module and BAPI name....

    Hi,
    I/m not sure whether there is any FM for the requirement.Instead can have a look into this BAPI_AR_ACC_GETOPENITEMS Customer account open items at a key date or CUSTOMER_OPEN_ITEMS FM
    In a report prpgram.. Hit the KNB1 table for a specify company code fetch all the customer and using these customers fetch the open and closed items.
    Regards,
    Aditya
    Edited by: aditya on Dec 22, 2009 12:42 PM
    Edited by: aditya on Dec 22, 2009 12:46 PM

  • G/L A/C OUTSTANDING SHOWING CLEARED IN ALL ITEMS ON SAME DATE

    Dear Expert
    G/L A/C outstanding documents are showing cleared transactions in all items category
    using the same date in FBL1N.
    To illustrate in detail when we click on the radio button with
    open item with date 17.11.2009 i  m getting certain uncleared
    documents, now when I am using the radio button with all items with
    same date i m getting all those docs which were uncleared showing
    cleared.While in the database documents are showing in BSAK table only.
    What are the causes for the same .
    Thanks - Viral

    The items that you are questioning most likely were cleared after 17.11.2009.  When you run FBL1N for open items with key date 17.11.2009, SAP will show you all items that were open as of that date - even if the items have since been cleared.  When you run FBL1N for all items, their clearing status is displayed as of the current date.  For example, if an item was cleared on 18.11.2009, then it was open as of 17.11.2009, but is cleared as of today.
    Regards,
    Shannon

  • How to efficiently get hold of N randomly selected keys out of X?

    I am writing some benchmark programs for Coherence caches and would need a way to as efficently as possible get hold of a "fairly random" selection of N keys from the cache out of the total X keys (where X >> N).
    With "fairly random" I am in particular looking for a way to get keys somewhat uniformly spread over all partitions.
    First i tried picking the first N keys obtained when iterating the key-set but they all seemed to come from just a few partitions (perhaps iteration is performed partition by partition?). Next I tried some algortihms I have used in the past to pick random keys from in memory-map (where one basically iterate and if a randomly generated value between 0.0 and 1.0 exceed a percentage calculatwed as the factor N/X the key is included. This does work (one may occasionally need to iterate the map more than once) but is VERY slow since iterating the key-set of a large cache remotly is kind of expensive.
    All sugestions are warmly appreciated - the best would be solutions that do not require anything to be added to the pof-config (i.e. not rely on custome aggregators or invocables etc) - this because I would liek to be able to easilly use my benchmark as part of several applications without having to modify there configuration files!
    /Magnus
    Edited by: MagnusE on Aug 7, 2009 10:21 AM

    Hi Magnus,
    you can go the other way round:
    With key-association you can ensure that your request goes to the partition you want it to go. You just need to generate a reverse mapping array between partition ids and integer associated key values which are mapped to that partititon.
    You can use this method for it:
    public static int[] generateReverseAssociatedKeysForService(DistributedCacheService service) {
         KeyPartitioningStrategy keyPartitioningStrategy = service.getKeyPartitioningStrategy();
         int partitionCount = service.getPartitionCount();
         int[] reverseKeys = new int[partitionCount];
         int i=1;
         while (partitionCount > 0) {
              Integer associatedKey = new Integer(i);
              int partitionId = keyPartitioningStrategy.getKeyPartition(associatedKey);
              if (reverseKeys[partitionId] == 0) {
                   reverseKeys[partitionId] = i;
                   --partitionCount;
              ++i;
         return reverseKeys;
    }After this, you generate an equal amount of entries for each partitions with composite keys which implement key association in a way that it returns an integer which maps to your designated partition id to serve as your data. Alternatively you can sort an existing key-set into per-partition keysets.
    After this, you just generate evenly spread random numbers between 0 and (partitionCount - 1) (both inclusive) which random number you use as an index to the reverse map to get an associated key value. Then you can generate another random number if you have multiple keys within a partition, or choose a key from the per-partition keyset for that partition if you have a set of existing keys.
    This way you get keys which are as evenly spread between partitions as your random generator generating your associated key indexes is spread.
    Best regards,
    Robert
    Edited by: robvarga on Aug 7, 2009 11:55 AM
    Added some more ideas and method implementation.

Maybe you are looking for

  • GUI JAVA 7.20 rev.2 (on Mac OSX 10.6.3): Print preview does not work!

    I've just started using rev 2 of java sapgui and print preview is not working anymore. Client: OSX 10.6.3 SAP: ERP5.0 on WAS 640 Has anyone experienced the same problem?

  • N95 and isync 2.4

    I just bought n95 and trying sync with isync 2.4. i installed the nokia n95 plugin but it not working everytime i click on add device in isync 2.4 pop up comes up says NO DEVICE FOUND i don't know what to do. Please help me I bought n95 cause i think

  • I am looking to purchase a monitor for a Power Mac G4 OR a Web cam that is compatible with the the Power Mac G4.

    I have a G4 Power Mac without the original monitor - I am using a monitor from a PC that does not have a built in webcam. I have also tried a "Blue" brand webcam that was received as a gift for me that does not work...and went to best buy to buy a co

  • Unable to Send Mail - Part Deux

    I posted a question yesterday on my inability to send mail to some email addresses. As I mentioned yesterday, I had placed an Ad in Craigslist, and have received several responses. I am unable to respond to those emails through Mail. When I try, it "

  • What does Command netsh reset do?

    I had problems with my internet connection on my laptop before and I was told that if I reset something in my internet it might help. What exactly is netsh int ip reset do? When is it useful? Thanks.