EBS - Auto posting not working  if text behind the document number

Hi,
When the document number is at the end of the payment reference, there is no problem.
    However, when there is text behind the document number, the posting rule doesn't work anymore.
    The autoposting also fails when there is a seperator (like a comma) directly added to the document number.
-   In the posting rule for invoice numbers (BE51), it is able to find multiple invoice numbers and clear these together.
    We were expecting this posting rule will behave the same, so when a customer mentions more than 1 document number,
    it is able to find them all and clear if they fulfill the criteria (total amount of the documents matches the amount received).
    But because of 1st mentioned problem, system doesn't clear anything because of additional text present.
I am look help to solve this issue
Thanks.
With regards,
V.K
Best regards,

Hi,
Any input for above issue?
With regards,
V.K

Similar Messages

  • BLOB download via WPG_DOCLOAD not working: what's with the document table?

    Hi,
    We upgrade our APEX application to 4.2 on RDBMS 11.2.0.1.0, and now our file downloads are failing with 404-not found errors.
    Documents are stored as BLOBs in a dedicated table TICKETDOC. Uploading works fine via APEX, I can query the docs in the table and all is looking fine so far.
    I have a report column formatted as HTML, making it a clickable thumbnail which should open the file in a separate browser window when clicked.
    HTML format for column:
    +*
    <img src="#OWNER#.DOWNLOAD_FILE?p_id=#THUMBNAIL#" height=40">
    </a>
    *+
    This is supposed to call our own procedure TICKET.DOWNLOAD_FILE, which calls WPG_DOCLOAD:
    +*
    create or replace
    PROCEDURE "DOWNLOAD_FILE" (p_id in number) AS
    l_mime varchar2(255);
    l_length number;
    l_file_name varchar2(2000);
    lob_loc BLOB;
    v_found BOOLEAN := FALSE;
    CURSOR c_doc IS
    SELECT doctype, doc, naam, DBMS_LOB.GETLENGTH(doc)
    FROM ticketdoc
    WHERE ticketdocid = p_id;
    CURSOR c_mail IS
    SELECT mimetype, content_attachment, filenaam, DBMS_LOB.GETLENGTH(content_attachment)
    FROM mailattachment
    WHERE mailattachmentid = p_id;
    param_val owa.vc_arr;
    p_table Varchar2(200);
    l_errm varchar2(2000);
    BEGIN
    p_table := 'TICKETDOC';
    IF p_table = 'TICKETDOC' THEN
    OPEN c_doc;
    FETCH c_doc INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_doc%FOUND THEN
    v_found := TRUE;
    else
    END IF;
    CLOSE c_doc;
    ELSIF p_table = 'MAILATTACHEMENT' THEN
    OPEN c_mail;
    FETCH c_mail INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_mail%FOUND THEN
    v_found := TRUE;
    END IF;
    CLOSE c_mail;
    END IF;
    IF v_found THEN
    --initialise owa with some environment variable
    param_val (1) := 1;
    owa.init_cgi_env(param_val) ;
    -- Set up HTTP header
    -- Use an NVL around the mime type and if it is a null, set it to
    -- application/octect - which may launch a download window from windows
    owa_util.mime_header(nvl(l_mime,'application/octet-stream'), FALSE );
    -- Set the size so the browser knows how much to download
    htp.p('Content-length: ' || l_length);
    -- The filename will be used by the browser if the users does a "Save as"
    htp.p('Content-Disposition: attachment; filename="' || l_file_name || '"');
    -- Close the headers
    owa_util.http_header_close;
    -- Download the BLOB
    wpg_docload.download_file( Lob_loc );
    END IF;
    exception
    when others then
    l_errm := sqlerrm;
    raise;
    END;
    *+
    The idea is to display a thumbnail image which, when clicked, will open the document (image, pdf, whatever) in a new browser window.
    Executing the procedure in SQLDeveloper works fine and I can query the downloaded BLOB (getlength etc).
    However, when I click the thumbnail in the APEX application I get a 404.
    Enabling debug via exec dbms_epg.set_dad_attribute('APEX', 'error-style', 'DebugStyle') yields the following:
    +*
    Fri, 31 May 2013 09:41:35 GMT
    Error retrieving document.
    Please verify that the document you requested exists in the document table
    DAD name: apex
    PROCEDURE : TICKET.DOWNLOAD_FILE
    URL : http://XDB HTTP Server:8080/apex/TICKET.DOWNLOAD_FILE?p_id=1091
    PARAMETERS :
    ===========
    p_id:
    1091
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle Embedded PL/SQL Gateway/11.2.0.1.0
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=8080
    SERVER_NAME=XDB HTTP Server
    REQUEST_METHOD=GET
    QUERY_STRING=p_id=1091
    PATH_INFO=/TICKET.DOWNLOAD_FILE
    SCRIPT_NAME=/apex
    REMOTE_HOST=
    REMOTE_ADDR=127.0.0.1
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=ANONYMOUS
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=0
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    HTTP_HOST=localhost:8080
    HTTP_ACCEPT=text/html,application/xhtml+xml,*/*
    HTTP_ACCEPT_ENCODING=gzip,deflate
    HTTP_ACCEPT_LANGUAGE=nl-BE,en-US;q=0.5
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=__utmc=31852350; __utmz=31852350.1366364489.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=31852350.974780296.1366364489.1366364489.1369990367.2; ORA_WWV_USER_61804796552973=930EBD5017F98F039F659148EAE74140; ORA_WWV_REMEMBER_UN=JO:ticket; ORA_WWV_F4000_P4150_TREE=RenderingTree%3A3727930518286945_columns%3A3729417793306453; SHARED_SESSION=87D7D96BC5A457924CB86A817315D30E; [email protected]
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://10.0.25.1/apex/f?p=101:40:7036965658754:::::
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    *+
    I made minor adjustments to the original (pre-4.2) code:
    * initialised owa with some environment variable
    * registered DOWNLOAD_FILE in wwv_flow_epg_include_mod_local
    but still no success.
    Any ideas on how to fix this?
    Greetz
    Jo

    As I understand:
    The procedure works.
    The link 'appears' to work. (ie you saw the procedure run a 2nd at the database level)
    But it doesn't actually work (because you get a 404)
    I think I ran into an issue, on a completely different page type, that produced an 'error 404'. (I can't seem to reproduce it, though)
    The only way I discovered what was really going on was with an HTTP sniffer. (eg HTTPFox for FireFox)
    Through that, I noticed that the browser was (for some reason) calling a completely non-sensible APEX page. (hence the PAGE NOT FOUND error)
    My solution was to add a "submit to self" branch point.
    If that doesn't work, I'm at a loss.
    MK

  • Auto brightness not working in ios6

    I updated my iPad (3rd gen) to ios6, but when the update is complete i found that the auto brightness not working, when i use the ipad on dark room the brightness not changing, when i use ios5.1 it changing.. Any solution and actually the problem is on ios or in the hardware? Looking for help asap...

    Well my device is different and since it is a iPhone 5, it is not being updated to iOS 6 but the issue is exactly the same. From my mind this could be up to software but also could be from an hardware issue. The thing is that even if it worked before iOS 6 for you the new software could have revealed hardware conflicts since the software interacts different with the hardware for some features. This would be the worst case scenario because I know that normally iPhone 4 devices if not the 8GB model will be out of warranty. For me this is just a small issue since my warranty is still one year :(
    I have contacted apple care for this issue and have get the info that it will be escalated to the engineering team, for further investigation. As I know there was also an issue with some proximity sensors at the beginning if the iPhone 4 models and I think there was an software fix for a lot of them. Hope for the best!!!
    I have also done a lot of Troubleshooting, reseted settings, content and settings, restored in dfu and recovery mode, restored with new .ipsw (iPhone OS), restored on different pc (so even this step gas downloaded a totally new .ipsw file), first on a Mac!
    Next step wis that I will let the battery drain low entirely, a Troubleshooting idea of an friend. This might empower the entire hardware for a restart. I am not really believing in this step but I will give it a try :)

  • Word substitution does not work on texts

    Word substitution does not work when texting. It's fine in all other applications. Not even the pre defined substitutions like "mypin" works within text.

    yoyongsc wrote:
    Mine doesn't work in all applications, bbm, text, email, etc.
    Verry odd! My Word Sub works well in all of those you've listed.
    It does not work in commenting on BBM group pictures and in some BBM Channel comments... works every where else.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • AUto attendant not working

    Auto attendant not working .....
    If i assign AA script Transfer_v02.aef then i hear an just 1-2 seconds the script after that again it is just ringing ...
    Is there Option to set
    Please press the extension which you want to Call ...
    Eg: if i press 222 that time it should ring the 222 extension
    Please help this is the first time i am working on this stuff
    If i chnage the scrpt file then i can hear auto attendant not initiazlised..  please find the attched screen shot and back file for more details.
    Best Regards
    Shabeel

    Hi KMS, check the codec used between that GW using the FXO and the CTI RP.
    Check also the Calling Seach Space
    GW should be able to reach CTI Route Point and CTI ports partition.
    If you try other extension it works fine?

  • Sound not working for text alert just vibrate

    Sound not working for text alert just vibrate and no sound on keyboard

    I'm having the same problem, it just started today (11/13/2012). 
    Settings > Sounds> Text Tone = Tri-tone
    Lock Sounds = On
    Keyboard Clicks = Off
    The mute button is also in the correct place (ring, not mute).

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

  • Auto keyframe and auto transition not working

    auto keyframe and auto transition not working and I have a creative cloud, in addition the auto keyframe works in the getting startel lessons....

    In order to use these you need to have the autokey frame and transition selected
    OFF   ON
    and have the first key checked then move the playhead to the new position and it should add the transition.
    Did you try this and it is not working?.

  • Auto dial not working

    Auto dial not working
    I'm using an iPad 4, with WiFi and Cellular and iOS 8.1.3
    In the past if I was searching for a hotel and found one I only had to tap on the phone number and it would dial using either Skype or MagicJack. It worked using Wi-Fi or my data plan. It was an absolutely valuable function especially when traveling.
    Now, when I click on a phone number, it says that it's going to exit the program (like Safari) and start a new program. When I click, Ok, nothing happens.
    I must have inadvertently changed some setting.
    Skype works, MagicJack works, but I must dial the number manually.
    I have tried turning "Handoff" off and on then rebooting, turning FaceTime off and on and rebooting (and every combination of those two programs and actions).
    To say the least, I am frustrated because it must be something obvious. (to everyone else!)
    Any ideas as to how to how I can get it to dial automatically again?
    Thanks for any assistance.

    IPAD user guide for IOS 8 is available on line at apple -
    you can download it in IBOOK or PDF format to refer to when you can't get connected to see it on-line
    http://support.apple.com/manuals
    Handoff is only for using with multiple devices - Iphone/Ipad/ipod
    This is the bit in Handoff on Phone calls
    Phone calls
    If your iPhone (with iOS 8) is nearby, you can make and receive phone calls on your other iOS devices and Mac computers. All devices must be on the same Wi-Fi network, and signed into FaceTime and iCloud using the same Apple ID.
    Make a phone call on iPad. Tap a phone number in Contacts, Calendar, or Safari. You can also tap a recent contact in the multitasking screen.
    Disable iPhone Cellular Calls. On your iPhone, go to Settings > FaceTime, then turn off iPhone Cellular Calls.
    You may have to use Face Time to make calls from the IPAD -- there are page or 2 on that --

  • Auto brightness not working on iPhone 5?

    On the iPhone 5 - In the settings, when flicking the auto brightness on/off the screen shows no change in brightness - whether in a completely dark room or with the lights on etc. My iPhone 4 has been updated to IOS6 and seems to be working normally (brightness auto adjusts in all situations).
    Anyone else have this problem of the auto brightness not working?

    There is nothing wrong with the auto brightness.
    When you have auto brightness enabled the slider works as the minimum brightness setting with auto brightness.
    If you have the slider too high the brightness cant reduce because youre not letting it.
    Set your brightness at about 25% and you'll see what I mean.

  • Auto Caption not working

    Hi I have been trying everthing but can't get the auto
    captions to work am aware of the rule use Demo or Custom mode. It's
    really anooying, is this a bug or should it work. Vers 3.0.0 Build
    580 can anyone help Rick you seem to have answers can you?????
    Thanks

    Hi again
    You might try resetting your Captivate preferences file.
    Sometimes that fixes things. I've never known it to specifically
    address the issue you are having, but hey, it's worth a shot!
    To reset the file, close Captivate. Now open Windows Explorer
    and navigate to the following location:
    ?DriveLetter?:\Documents and Settings\?UserName?\Application
    Data\Adobe\Adobe Captivate
    *NOTE: ?DriveLetter? will be whatever drive you have
    Captivate installed on. ?UserName? will be however you logged into
    your PC.
    If you don't see this location or files, it's probably
    because Windows is “helping you out” and hiding them
    from you. To fix that, click Tools * Folder Options * View tab and
    ensure you are Showing hidden files and folders as well as
    DE-selecting the Hide extensions for known file types and Hide
    protected operating system files.
    Rename or Delete the file you should find in this location.
    The file is labeled
    captivate_v30.dat.
    Restart Captivate and give it a try.
    Beyond that, I'm unsure as to exactly why Captivate wouldn't
    automatically insert captions. Unless for some reason it was
    improperly installed. But in that case, I'd think other symptoms
    would present themselves.
    Cheers... Rick

  • Iphone 4s Running Ios(7.1) Camera Focus Not Working Like Text On book It Showed Blurey Text & My Friend Also Same Modle His Camera Focus Perfectly..Is Is Possible To Fix It...Thnx Every 1

    Iphone 4s Running Ios(7.1) Camera Focus Not Working Like Text On book It Showed Blurey Text & My Friend Also Same Modle His Camera Focus Perfectly..Is Is Possible To Fix It...Thnx Every 1

    Hello SajidChaudhary,
    Thanks for using Apple Support Communities.
    For more information, take a look at:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    Have a nice day,
    Mario

  • Office 2013 Auto Archiving not working

    Dear Sir / Madam,
    We are using MS OFFICE 2013 with Windows 8.
    Problem we face is Auto Archiving not working at all. We have defined all the parameters, still it is not working. We are using Exchange Server and all the emails are Archived to local PST files after a defined time period.
    We have defined all the steps required to do Auto Archiving.
    Your help is required in this since we have tried all the options.
    Paloli Manoj

    Hi,
    What's the size or your archive.pst file? Please first make sure it's not getting close to 50 GB limit.
    If the size far below 50 GB, please try to use the Inbox Repair tool to scan and repair the archive.pst file. If the file is corrupt, the autoarchive will not happen.
    http://office.microsoft.com/en-in/outlook-help/repair-outlook-data-files-pst-and-ost-HA102749454.aspx?CTT=1
    For more troubleshooting steps, please refer to this:
    http://www.howto-outlook.com/faq/archivenotworking.htm
    Regards,
    Steve Fan
    TechNet Community Support

  • In iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work.  Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8

    in iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work. Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8.
    Tom at the Genius Bar told me that Option Delete would work. It does not.
    I had to upgrade to iTunes 11.1.(I26) because it is required with OS7 on my iPod Touch (5th Gen). I have tried shutting down iTunes, then shutting down the entire system. This is the first in many visits that the Genius Bar gave me a solution that did not work.
    This is a big awkward computer locked to my desk. I would rather not unlock it and then carry it through a shopping center to the Genius Bar if i can avoid oit.
    When I installed iTunes 11.1, I discovered that Ihad to resubscribe to virtually all of the podcasts that I had previously been subscribed to. That was a surprise.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

  • My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    When normally powering the phone, there would not be a loading bar, you would just see the Apple logo. You can try a reset of the phone, hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.
    You can take the phone to Apple, by making an appointment at the Genius Bar to have the hardware checked. Apple handles warranty and post-warranty issues, not Verizon. Have Apple look at the hardware to see if there are any problems.

Maybe you are looking for

  • How can I manage access to dimension members in a layout?

    Hello, I have a dimension member list of materials (400) on a "material" dimension. But some people have access to one portion of the whole group and others may have access to other groups. But the materials can be shared between groups so I cannot g

  • HDMI for non-HD content

    This might be a total noob question, but here it is: Just got the Apple TV along with an HDMI cable. We have an HD TV, all ready to go. Before I go out and buy component audio & video cables, will standard Def content, such as dvd's copied to iTunes,

  • •••••cant view nano recorded videos??•••••

    hey Im having trouble transfering the videos that i recorded using my new ipod nano I turned the ipod to enable disk use and i can see where the movie is on the ipod and i can drag it onto my desktop , BUT when i try to view the video using quicktime

  • Is there a CS4 raw plugin for Canon S95?

    A search indicates that Camera Raw 6.3 plugin and later will work, but it is apparently for CS5 only.  Is it true that CS4 loses the ability to work with camera raw files of newer cameras?  If not, where can I get a camera raw plugin for my new S95 t

  • How could i share my ical into my lokal network

    To compare our Data-sending termines have i created a calender in iCal on Mac OS-X 10.4.11 How could i share it in our local Network without iCloud or internethost? The calender must shared to 15 Computers and must editable on every workstation.