Open pdf on AS side

Dear experts,
I'm facing problem that I couldn't open pdf file which reside on AS side (put it on E partition).
Tried to call file with next command, by putting code inside when-button-pressed trigger:      HOST('cmd /c start E:\btpdocs\SA13_ED.pdf');Nothing happens when press the button. :(
Also, is it mandatory to install any software on operating system where AS belong (just in case, i installed Foxit reader), or it's enough to have on client side that kind of software (also have installed Foxit reader on client)?
thanks in advance, Adnan
My configuration:
forms10g, R2
AS 10g 10.1.2
ff 3.6.3

Ammad Ahmed wrote:
SaRaH wrote:
in 10g then u can try client_host() will work in server too..If you want to say that command will run for server files. Then i am not agree with this.
@Adnan
I want to know what is the reason for opening file on AS side? Actually command will run but you can not see the file is open or not on cleint side? If you want to open the file for client then first you will have to transfer that file onto the client side using webutil_file_transfer. Then you can use the CLIENT_HOST for opening that file on client side.
-AmmadAmmad,
i'm developing application which needs to open schema of electrical circuits which are stored in .pdf and .tip format, and there are a thousands of them. Only way to do that is to store all of them on some server which is common for all users (i though that's better to put them on AS side, because that way i escape to put whole path for opening files (for example host('cmd /c start server_name\path_to_my_files\file_name.pdf');). Hence, i call them by putting: ('cmd /c start E:\btpdocs\SA13_ED.pdf');Command is running, but i cannot see any opened file. Also, i logged on AS operating system and there's no open file there, so i don't know where is problem....
edit: i'm not sure that copying files from AS to client side every time is the best solution in my case...
thx for replying,
Adnan
Edited by: adnanBIH on Jun 22, 2010 10:02 AM

Similar Messages

  • Trying to convert pdf to word. A msg box is open on the right side of the screen that says, "retrieving current session status..." It's frozen. What can I do? Thanks.

    Trying to convert pdf to word. A msg box is open on the right side of the screen that says, "retrieving current session status..." It's frozen. What can I do? Thanks.

    Hi Dewey,
    Are you trying to convert via Adobe Reader? If so, are you able to close and restart Reader (you may need to force quit, or use Task Manager to quit Reader if it's truly frozen)? After restarting, choose Help > Check for Updates to make sure that you have the most current version.
    And, if updating Reader doesn't help (or you already have the most current version), please try converting that same file using the ExportPDF web interface at https://cloud.acrobat.com.
    Please let us know how it goes.
    Thanks!
    Sara

  • Open PDF Attachment with Adobe Reader put GW to background

    Hello all,
    We have problems with opening pdf attachments from GroupWise client 12.02 with Adobe Reader 11.0.06. The attachment opens fine, but when opening the attachment, the mail and GroupWise client immediately are placed to the background in Windows. So when closing Adobe Reader, the user won't come back in the mail but in another application that was open and the user have to click on groupwise in the taskbar to go back to the mail.
    There is no problem with opening other attachments from other applications (like Word or Excel) or when opening the pdf with Adobe Standard. It happens with every user.
    They are working in a Citrix Xenapp 6.5 environment on Windows 2008R2 (it also happens if working in a RDS session)
    Any thoughts?
    Regards,
    Jaap

    In article <[email protected]>, Jhpoot wrote:
    > They are working in a Citrix Xenapp 6.5 environment on Windows 2008R2
    > (it also happens if working in a RDS session)
    >
    Are you trying to say that all of the apps mentioned are running as
    XENapps? If not please specify which are local vs remote.
    What is the client OS being run as that may also factor in.
    Worth trying another PDF reader such as FoxIT reader to better see
    which side is driving that behaviour.
    Andy of
    KonecnyConsulting.ca in Toronto
    Knowledge Partner
    http://forums.novell.com/member.php/75037-konecnya
    If you find a post helpful and are logged in the Web interface, please
    show your appreciation by clicking on the star below. Thanks!

  • Getting error while opening pdf on server

    Dear All,
    I am working on jdeveloper 11.1.1.4.0.
    I have a use case where on click of link , generating a dynamic pdf. The pdf i am arranging with the help of itext through backing bean. It is generating as well downloading the pdf.I have used filedownloadlistner to call the generate and download pdf methods.
    On integrated weblogic server the pdf is working fine, but when i deploy on server while opening pdf getting error :
    *"Adobe Reader could not open 'test.pdf' beacause it is either not a supported file type*
    *or because the file has been damaged (for example, it was sent as an email attachment and*
    *wasn't correctly decoded)."*
    I am not able to get the root cause for the problem. The sample code to generate and download pdf is :
    // Generate PDF
    private void generatePDFFile(FacesContext facesContext,
    java.io.OutputStream outputStream) {
    try {
    System.out.println("In Generate PDF................");
    Document document = new Document(PageSize.A4);
    PdfWriter.getInstance(document, new FileOutputStream(FILE));
    document.open();
    addMetaData(document);
    addTitlePage(document);
    document.close();
    System.out.println("End of PDF......................");
    facesContext = facesContext.getCurrentInstance();
    ServletContext context = (ServletContext)facesContext.getExternalContext().getContext();
    System.out.println(context.getRealPath("/"));
    String FILE = "test.pdf";
    File file = new File(FILE);
    FileInputStream fdownload;
    //BufferedInputStream bis;
    byte[] b;
    System.out.println(file.getCanonicalPath());
    System.out.println(file.getAbsolutePath());
    fdownload = new FileInputStream(file);
    int n;
    while ((n = fdownload.available()) > 0) {
    b = new byte[n];
    int result = fdownload.read(b);
    outputStream.write(b, 0, b.length);
    if (result == -1)
    break;
    outputStream.flush();
    } catch (Exception e) {
    e.printStackTrace();
    Download PDF
    private void downloadPDF(FacesContext facesContext, java.io.OutputStream outputStream) {
    try {
    facesContext = facesContext.getCurrentInstance();
    ServletContext context = (ServletContext)facesContext.getExternalContext().getContext();
    ExternalContext ctx = facesContext.getExternalContext();
    HttpServletResponse res = (HttpServletResponse)ctx.getResponse();
    res.setContentType("application/pdf");
    outputStream = res.getOutputStream();
    System.out.println(context.getRealPath("/"));
    File file = new File(FILE); // FILE = 'test.pdf'
    FileInputStream fdownload;
    // BufferedInputStream bis;
    byte[] b;
    fdownload = new FileInputStream(file);
    //bis = new BufferedInputStream (new FileInputStream(file));
    int n;
    while ((n = fdownload.available()) > 0) {
    b = new byte[n];
    int result = fdownload.read(b);
    //outputStream.write(b, 0, b.length);
    outputStream.write(b, 0, b.length);
    if (result == -1)
    break;
    outputStream.flush();
    outputStream.close();
    fdownload.close();
    } catch (Exception e) {
    e.printStackTrace();
    Any help will be appreciated.
    Thanks
    Kanika

    If the pdf file don't open on the server where you created them, they won't open on the client side either.
    The code you are using should be refactored to use different file names for the generated files. In a multi user environment (which every web application is) you overwrite the file generated with each new request, even before the file is loaded by a client. This will corrupt the file a client is loading and you get the error you see.
    Next I would look into org.apache.commons.io package (http://commons.apache.org/io/) which has utility classes which allows easy handling of streams without looping over the data.
    Timo

  • Error opening PDF files on anonymous SharePoint 2013SP1 site with IE

    Clicking search results, in the strict sense pdf files, using IE on an anonymous SharePint 2013SP1 site, I received the error:
    There was an error opening this document. The filename, directory name, or volume label syntax is incorrect.
    I would like to solve this problem on the server side.
    Starting position:
    - SharePoint 2013 SP1
    - Web Application:
      - based on template 'Publishing Portal'
      - Anonymous Access enabled
      - Claims based authentication: Integrated Windows Authentication NTLM
      - Client Integration disabled
    - Site Collection:
      - Anonymous Access enabled for 'Entire Web site' => group 'Anonymous Users' was created
      - added permission to open items: $Web.AnonymousPermMask64 = "ViewListItems, ViewVersions, ViewFormPages, Open, ViewPages, UseClientIntegration, OpenItems"
      - SC-Feature 'Limited-access user permission lockdown mode' disabled
    Client side solutions:
    c1) Open Link with “Open in new tab” or “Open in new window” => OK
    c2) Disable IE Add-on “Adobe Acrobat Sharepoint OpenDocuments Component” => OK
    c3) Set bDisableSharePointFeatures to 1 in regetit => OK
    Server side solutions:
    S1) Turn off Client Integration => didn't work, still same error
    S2) Modify DOCICON.XML => didn't work, still same error
    I gave these two options a chance:
    first: <Mapping Key="pdf" Value="icpdf.png" OpenControl="SharePoint.OpenDocuments"/>
    then: <Mapping Key="pdf" Value="icpdf.png" OpenControl="AdobeAcrobat.OpenDocuments"/>
    I modified DOCICON.XML on both hives 14 and 15.
    Remarks:
    - After changingparameters I allways did an IISreset.
    - As far as I understood I can only change bDisableSharePointFeatures on Client Side.
    Any help, suggestion, idea wellcome!
    Thanks!

    Hi Harry,
    From your description, I understand you encountered the issue when open PDF documents from search result page.
    Here is a similar thread, please try the piece of code in the page layout for the search results page from Mitch B_83:
    https://social.technet.microsoft.com/Forums/appvirtualization/en-US/545efcc6-b748-4df8-aee0-7f57f778ad1e/sharepoint-2010-opening-pdfs-in-search-results-the-filename-directory-name-or-volume-label?forum=sharepointgeneralprevious
    You could refer to this for search result page layout: Site settings > Web Designer Galleries > Master pages and page layouts > SearchResults.apsx .
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Strange error while opening pdf in Firefox

    Hi there,
    I have a strange problem with Acrobat 9 on Windows 7 64bit. When I click on a PDF file on websites, a white site opens and I get an Acrobat message, which is totally empty.
    In the error box there is just a question mark on a blue circle, an "OK"-button and the title line says "Adobe Acrobat". The PDF files won't open.
    That is something I have never had yet! When I choose "repair installation" from the Acrobat help menu - it works and I can open PDF files n the Firefox 3.5.5 browser - but about half an hour later I get the same error message again.
    Any ideas?
    Thank you!

    Header 1
    Header 2
    Problem is on my end … I’m running on windows 2008r2 server  which has a computability problem with Acrobat Reader on client side ..Adobe is working out a fix….i wuill be switch back to the old server late today which should cure the problem If you wish to see the tech side of it Here's the official word on what the problem is, from MS tech support: In IIS7.5 we have implemented an optimization code that handles especially byte-ranges request whose result is a single range as follows. When a client makes a request of byte-ranges whose result is a single range, IIS 7.5 does not include the media type in the response! This seems to break Adobe-reader add-on in IE. In IIS7 and below we treated byte-ranges requests whose result is a single range the same manner as byte-ranges requests whose result is NOT a single range meaning that we all the time sent a media type in the response header. Example: The below request: Command: GET   + URI: /test.pdf   ProtocolVersion: HTTP/1.1   Accept:  */*   Range: bytes=153572-186237, 748935-750373, 748238-748934, 186238-411153, 750374-750792, 411154-486125, 486126-748237 … … Is equivalent to making a request to range 153572 - 750792 IIS7 will respond with - Http: Response, HTTP/1.1, Status Code = 206, URL: /test.pdf   ProtocolVersion: HTTP/1.1   StatusCode: 206, Partial content   Reason: Partial Content   ContentType: multipart/byteranges; boundary= … … IIS 7.5 will respond with   ProtocolVersion: HTTP/1.1   StatusCode: 206, Partial content   Reason: Partial Content   ContentType: application/pdf … … So in the case of IIS7.5, it is just like we are responding to a single range request “153572 - 750792 “  in which the HTTP RFC says that you should NOT send a media type in the response header! The IIS 7 and IIS7.5 behavior are both HTTP RFC compliant   A response to a request for a single range MUST NOT be sent using the   multipart/byteranges media type.  A response to a request for   multiple ranges, whose result is a single range, MAY be sent as a   multipart/byteranges media type with one part. A client that cannot   decode a multipart/byteranges message MUST NOT ask for multiple   byte-ranges in a single request. Adobe was finally able to recreate the problem on Friday, and they are supposed to be working on it.  (I don't know what their issue was with not being able to recreate it, but I did find out over the weekend that the behavior is different if the client you are using to browse the website is in a remote desktop session - everything seems to work fine.) Not sure what IIS Core team is doing, if anything.  Even if Adobe provides a patch, I'm not too sure about using 2008 r2 as public web server if it requires the client to have the latest and greatest plugin.  Microsoft may have the letter of the law on their side regards the RFC, but sometimes being right just isn't enough.

  • Can not open PDF file in IE8

    I am running Windows XP sp3 and IE 8. When I try and open PDF files from a webpage I get a find button, save button, or cancel button. The PDF file will open if I save it to the desktop first but there is now way I can open the PDF from the webpage. And this is very annoying to the user. I have tried checking and unchecking the Display PDF in Browser option but this has not helped anything. Does anyone have any idea what might be happening or what I should try?
    Thanks

    no solution yet....adobe does not play well with redmond....ie microsoft...
    ((sidebar:
    as adobe in silicone valley near apple....adobe started with WYSIWYG when they were
    all PARC (division of xerox which closed down parc)...steven jobs bought the gui for apple and those that did not want to work for
    jobs started adobe...and here we are w/ little/no support for adobe reader....which won the war with the pagis reader (xerox), now defunct...))
    work around
    open adobe reader and turn off "display pdf in browser" by  unchecking the box...
    steps
    open adobe reader
    edit
    preferences
    categories = internet
    will be top line on right side....
    OK and close...
    now when you do a pdf,..the file will download to a temp folder and open a seperate window for the reader...
    caveat:
    store this info somewhere...after figuring out what to do i saved an adobe.txt file to aid this old memory of mine...
    why
    because sometimes you will have to turn it back on....
    for example i had one bank where i have to turn it off to properly view/download the statements....
    and another bank where i have to turn it back on to properly download the statements  (this bank utilizes an aspx file to access/display the pdf and will not open it in a seperate window....)  so it all depends on how the pages are coded....and you thought it was all to some standard...shame on you...ha ha
    here's hoping this helps...
    and wishing/hoping that the good folks at adobe (they have to be good, they didn't go to work for steve...nasty man...) will come up with a solution that will auto update...one can only hope...the ultimate optimist....good luck...and pls excuse any typos....

  • Opening PDF File in CS5

    In CS5, is there a way to open a PDF file, but have each page either saved as a seprate file in a selected directory (like in a batched action or similar) vs. opening each file as its own separate PS file?  In opening PDF files with over a hundred pages, the system crashes after only two pages, and processing them one page at a time would be extremely time-consuming.

    Try the PDF Processor script:
    ( works in cs5 and goes in the cs5>Presets>Scripts folder
      and then listed under File>Scripts in photoshop)
    http://www.ps-scripts.com/bb/viewtopic.php?f=10&t=1882&sid=26a26e41a37b78db4b39c1cd933bdd7 f
    MTSTUNER

  • Difference between IE and acrobat in opening PDF

    Hi, I have adobe acrobat 9 pro and if I open a PDF using acrobat, I have a bunch of toolbar functions like redaction, advanced editing and so on. However, if I open it using IE, which also uses acrobat, its toolbar provides limited functions. I only installed adobe acrobat version, and I uninstalled the acrobat reader 8.
    Is it because that acrobat 9 provides the reader functions in IE acrobat activeX?
    If so, is there any way to activate the functions in IE activeX?

    Hi,
    I have similar kind of situation and facing problem.
    We have developed custom plugins which resides under Adobe/Acrobat/Plug_ins/<Directory>/MyPlugin.API. We have used Acrobat SDK to create this custom plug_in.
    We have developed PDF viewer (using Acrobat SDK) which loads this plug_in and opens PDF file and this PDF Viewer we are using in our web site inside internet explorer.
    We have web application which displays list of name of PDF documents like 1.pdf, 2.pdf, 3.pdf, 4.pdf.
    Step (1) When user opens 1.pdf it will open PDF using our PDF viewer and custom plug in and working fine.
    Step (2) Now if user opens another PDF (xyz.pdf) in other tab of internet explorer or in a different instance of a Internet Explorer it opens PDF but using IE PDF viewer ActiveX provided by Adobe under  Program Files/Common Files/Acdobe/Acrobat/ActiveX/AcroPDF.dll.
    Step (3) Now if user goes back to our web site and opens another pdf like 3.pdf our custom plug in in stop working. It's like it has never been loaded.
    This only happens if user perform Step (2) using IE. If user does not do Step (2) or open PDF out side of Internet explorer using Adobe Acrobat it will not create any problem because out side of IE it will open PDF using Acrobat Standard.
    My question is ,
    Is Acrobat PDF viewer ActiveX for IE is doing something which is causing this issue? I came to this conclusion because this only happens when user does step (2).
    Thanks,
    twinkle

  • Adobe & Internet Explorer crashing when opening pdf within an Internet Explorer window

    Hello,
    Can anyone help me with this issue or maybe point me in the right direction? Thank you!
    Working with in a ASP that uses reader to display forms. The form opens as an embedded adobe form in a new Internet Explorer window. Once the form opens it pulls data from the ASP. At times when the form opens in the new window both the Internet Explorer windows close. Other times a "user request stop" error appears and once OK is pressed both windows close. The ASP does not know what causes this & can not seem to replicate the problem. ASP is on the other side of the country.
    Would the acrotray.exe be causing this?
    Adobe Reader           9.3.2
    Internet Explorer:        8 up to date
    Message was edited by: battleaxes1

    Hi, thank you it is working now, I deinstalled and reinstalled the complete
    acrobate set, the reader is version 11 now,
    Sincerely,
    Maria
    2013/6/20 PoojaSehgal <[email protected]>
       Re: Explorer error when opening pdf file from internet  created by
    PoojaSehgal <http://forums.adobe.com/people/PoojaSehgal> in Adobe Reader- View
    the full discussion <http://forums.adobe.com/message/5430017#5430017

  • IE7 randomly freezes in a strange way opening pdf

    Hi all,
    this is for a bug which occurs sometimes opening pdf with Internet Explorer. Plugin used from Adobe Reader.
    OS: Windows XP
    Internet Explorer Version: 7
    Adobe Reader Version: 9.4.0 (same issue with 9.4.6)
    Even if this bug occurs randomly, I realizes it happens expecially when I have already opened (and closed) many pdf.
    The freeze is strange: IE7 is distorted, like in the picture attached!
    Are you aware of this specific kind of bug?
    A part of finding a trick to avoid this problem, it would be amazing to get an Adobe/Microsoft official link describing the bug and the fixing.
    Many thanks in advance
    Best Regards
    seth

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Older versions of Pages 5 can not open files from later versions of Pages 5.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud and opened in a newer version of Pages is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Peter

  • Opening PDF in client incorrectly adds to browser history

    When I click on PDFs, they open in an Adobe window.  However, I have to click the back button as many times as I have opened PDF’s.  Is there a way to open the PDFs in the client
    but not have the containing folder written to the back history?

    Hi,
    don't use a hyperlink element to link to your PDF documents. Clicking a hyperlink adds an entry to the travel log. If you choose the "Save target as" context menu for a resource link, no travel log entry is created.
    eg. <a href="path/pdfdocument.pdf">pdfdocument</a>
    use a button element instead.
    <button type="button" onclick="download.aspx?pdfdocument.pdf">Download pdfdocument</button>
    (note: !important specify type="button" otherwise the button element defaults to type="submit" which triggers form.submit which may raise a navigation and travel log events).
    PDF documents are opened by ActiveX addons in MSIE browsers.. (Adobe PDF Reader)
    Outcomes for embedded pdf documents vary depending on your security zone settings, addons settings or PDF Reader settings and version).. For consistent behavior force the download of the pdf document.
    if downloading from a https uri the "Do not save secure content to disk" option on the advanced tab of Internet Options must be unchecked (default)... if you have a server side download manager, then there is no need to use a https uri.
    Rob^_^

  • In documents I can open pdf files but none of the others

    When I go to documents I can open pdf files but nothing else. Same on downloads. I have lots of info I've downloaded over time and I often use it. Can I just go back and use internet explorer for that and if so how?

    Opening in the side bar is the default for bookmarks that are created via a link or button on a website.<br />
    You can check the Properties of a bookmark via the right-click context menu in the side bar (Ctrl+B; Cmd+B on Mac).<br />
    In the Bookmarks Manager (Bookmarks > Show All Bookmarks) you can click the More button in the Details pane at the bottom right.<br />
    Make sure that "Load this bookmark in the side bar" is not selected.<br />

  • How To Remove Prompt To Open PDF?

    When using IE 11 to open a PDF, I am prompted to open the file.  I wish to eliminate this prompt.
    I am deploying Reader 11 to 2,300 locations, each with 5 - 10 users.  They open PDF's throughout the day and this extra step is very annoying.
    I've tried using this registry setting but it doesn't work:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\AttachmentExecute\{0002DF01-0000-0000- C000-000000000046}]
    @=""
    "AcroExch.Document.11"=hex(0):       <-- not sure which, if any of this is the correct ProgID for a PDF file
    "AcroPDF.PDF"=hex(0):
    "AcroPDF.PDF.1"=hex(0):
    "AcroExch.PDF.PDF.1"=hex(0):
    Please help
    Thanks!
    ~Dave

    Hey David,
    Please let me know if you are on 64-bit operating system.
    If yes, then navigate to "C:\Program Files (x86)\Internet Explorer" and launch IE from there.
    Else, try the following steps:
    Launch IE and go to Tools> Internet Options> Programs> Manage add-ons
    On the left hand side, choose all add-ons under show.
    Disable Adobe PDF Reader add-on
    Now, restart IE and follow the same procedure to enable it.
    Let me know if this works.
    Regards,
    Anubha

  • Opening pdfs using a CD based application

    Hi:
    I am heartily sick of Adobe Acrobat and would like my users
    to open pdfs with the Foxit application. Currently I scan the users
    system for acrobat and, if it isn't there, prompt them to install
    the reader. However, I'd like to give this approach the heave-ho
    and instead just get pdfs to open with Foxit -- however, I don't
    want them to install the program -- I just want the program to run
    from the cd. Has anyone made this work?
    Thanks for any advice you can provide

    Last I checked, Authorware will default to the Windows
    associations for
    launching a parent application. So if the user has Acrobat
    installed, no
    matter what you enter for the first JOR argument, Acrobat
    will be
    launched for PDF files. BUT if the computer doesn't have an
    association,
    then it shouldn't have a problem launching the specified
    parent application.
    Just mentioning that in case you required Foxit to be used
    for some reason.
    Side note, I love the Foxit Reader. So nice to have a basic
    .exe with no
    dependencies, required installing, and such silliness.
    I've replaced Acrobat on all my machines with Foxit and PDF
    Creator for
    reading and printing PDFs (respectively, of course). And PDFs
    open so
    much quicker too than the Acrobat bloat.
    Erik
    EdKaset wrote:
    > Problem solved. I hadn't realized that Foxit Reader was
    a standalone .exe --
    > thought it required installation like Adobe Reader.
    Thank God I never have to
    > use Adobe Reader again. What a hideous bloated thing it
    is.
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

Maybe you are looking for

  • System ID in Message Mapping in PI 7.11

    Hi Experts I am working on a  file to IDOC scenario where I need to pass the system ID to the data element RCVPRN on the IDOC side, How can I get the system ID when the mapping is being executed System id should get the dev PI system or QA or PRD whe

  • Safari Has encountered an error and needs to close

    Hi I have been having this problem with safari that right after it starts it closes due to an error (thats what it says) I really like safari and i'm waiting on my mac to get here so HELP!

  • Installing complimentary PDF Portfolio into Acrobat XI Standard?

    I can download the complimentary PDF Portfolio and extract it from the zip, but when I open Acrobat, there are no instructions to follow (as the download page says there will be). And it isn't showing on the create menu. Ideas? Thanks.

  • HT1338 I can't activate my iphone

    Dear Sir, Kindly help me to activate my iPhone 3G as I can't activate my iPhone cause of the activation server is unavailable, what I have to do? Best Regards, Youssef

  • IPOD TURNED BLACK AND WONT COME BACK

    I clicked an app and then my screened turned black but it wont turn on and i have tried holding the buttons and nothing worked. I plugged it inot my computer and it doesnt appear in itunes. Please someone help me !!!