Getting .php files(output)with java

i'm trying to get he contenty of a php file,
but i don't receive anything with .html files it works great kan someone help me, please
import java.io.*;
import java.net.*;
import java.util.Date;
class URLConnecties
    public static void main(String args[]) throws Exception
        int teken;
        URL url = new URL("http://www.gamer.mineurwar.nl/net/javachallenge.php?command=DaTe");
        URLConnection urlconnection = url.openConnection();
        System.out.println("Type inhoud: " +
            urlconnection.getContentType());
        System.out.println("Datum document: " +
            new Date(urlconnection.getDate()));
        System.out.println("Laatst gewijzigd: " +
            new Date(urlconnection.getLastModified()));
        System.out.println("Document vervalt: " +
            urlconnection.getExpiration());
        int lengteinhoud = urlconnection.getContentLength();
        System.out.println("Lengte inhoud: " + lengteinhoud);
        if (lengteinhoud > 0) {
            InputStream in = urlconnection.getInputStream();
            while ((teken = in.read()) != -1) {
                System.out.print((char) teken);
            in.close();
}

but i don't receive anything with .html files it works great kan someone help me, pleaseWhat's that mean? Either you need to call:
URLConnection urlconnection = url.openConnection();
urlconnection.connect();
Or you mean you aren't getting things like the images in the file... Well, of course, cuz there are no images in an HTML file. Only links to images, which a browser would parse out of the HTML and make another connection to the server to get. So you'd have to do the same thing. URLConnection is not a browser, it doesn't parse HTML.

Similar Messages

  • Attempt to process file failed with java.lang.StringIndexOutOfBoundsExcep..

    Hello All,
       I am implementing file2file with file going from shared folder to FTPS server.
    I am using TLS and X.509 certificate in file receiver communication channel.
    when I implemented my scenario, this is the error its throwing :
    Success : Connect to FTP server "my ftp address", directory "/TEST/"
    Error : Attempt to process file failed with java.lang.StringIndexOutOfBoundsException: String index out of range: 3
    I know this error is caused when java expects the 3 character length string and if its getting more than that... Does any faced this kindaa problem before...Any help is greatly appreciated....Obviously even points....
    Thanks,
    Ravi

    There is no custom code at all? No mappings, no custom modules, no pre/post processing commands?
    Also, check if you get this error when sending to ftps server without certificate (or with another certificate). It may be an incompatibility issue with certificate.
    Did you import the .pfx (or .p12) file in KeyStorage Service?
    Regards,
    Henrique.

  • Attempt to process file failed with java.io.IOException

    Hi,
    The scenario is from Idoc to flat file and messages are getting processed successfully in XI. but in receiver communication channel error is coming:
    Attempt to process file failed with java.io.IOException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.
    MP: exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.: java.io.IOException: Error during STOR/APPE epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Connection closed; transfer aborted.

    Hi,
    If you are using FTP then,
    1. Make sure that the FTP sever does not have issues with Firewall or a Proxy server access.
    2. Also verify that the specified FTP user ID has the necessary WRITE or overwrite authorization?
    Regards,
    Sarvesh
    ***Reward points, if it helped you.

  • I have a white MacBook. I just changed out the hard drive with a 500GB. When I turn it on I get a file fold with a ? In the middle that flashes. What do I do next?

    I have a white MacBook and I just changed out the hard drive with a 500GB. When I turn it on I get a file fold with a ? In the middle that flashes. What do I do next?

    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • FM for getting teh file name with path

    Hi guys,
    Is there an fm getting the file name with path given the physical path and file name? Thanks!

    Hi Mark,
    Function Module WS_FILENAME_GET is obsolete, dont use it.
    Use the Method file_open_dialog of  class cl_gui_frontend_services as given below.
    DATA:
        lt_filetable TYPE filetable,
        lf_rc        TYPE i,
        lv_filename(50) TYPE c,
        lv_fileext(3) TYPE c,
        ls_file TYPE file_table,
        lv_file TYPE localfile,
        lv_title TYPE string.
      lv_title = sy-title.
      lv_progname = sy-cprog.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = lv_title
          file_filter             = '*.txt'
          multiselection          = abap_false
        CHANGING
          file_table              = lt_filetable
          rc                      = lf_rc
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
                   DISPLAY LIKE 'E'
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        EXIT.
      ENDIF.
    * Number of selected filed must be equal to one.
      CHECK lf_rc = 1.
    * Access selected file
      READ TABLE lt_filetable INTO ls_file INDEX 1.
      CHECK sy-subrc = 0.
      lv_file = ls_file-filename.
      SPLIT lv_file AT '.' INTO lv_filename lv_fileext.
    Revert back if you need clarifications.
    Regards
    Karthik D

  • Trying to make a php file work with my email form

    Hello,
    Going slightly mad trying to link my php file with my html and actually getting it to work.
    It (the php file) keeps coming up with a syntax error on line 37 - code hinting may not work etc etc but there is no error from what I can see - can anyone else point out the obviously to me? This is driving me around the bend!
    my code:
    <?php
    /*Subject and Email Variables */
        $emailSubject = 'Website Form';
        $webMaster = '[email protected]';
    /* Gathering Data Variables */
        $nameField = $_POST['name'];
        $addressField = $_POST['address'];
        $telephone1Field = $_POST['telephone1'];
        $telephone2Field = $_POST['telephone2'];
        $emailField = $_POST['email'];
        $name2Field = $_POST['name2'];
        $ageField = $_POST['age'];
        $dobField = $_POST['dob'];
        $commsField = $_POST['comms'];
        $messageField = $_POST['message'];
        $body = <<<EOD
    <br><hr><br>
    Name: $name <br>
    Address: $address <br>
    Telephone (daytime): $telephone1 <br>
    Telephone (mobile): $telephone2 <br>
    Email: $email <br>
    Childs Name: $name2 <br>
    Start Age: $age <br>
    Childs Date of Birth: $dob <br>
    Preferred form of communication: $comms <br>
    Message: $message <br>
    EOD;
        $headers = "From: $email\r\n";
        $headers .= "Content-type: text/html\r\n";
        $success = mail{$webMaster, $emailSubject,$body, $headers};
    /* Results rendered as HTML */
        $theResults = <<<EOD
    <html>
    <head>
    <title>Xxx</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    body {
        background-color: #f1f1f1;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        color: #666666;
        text-decoration: none;
    -->
    </style>
    </head>
    <div>
      <div align="left">Thank you for your message, Your email will be answered very soon!</div>
    </div>
    </body>
    </html>
    EOD;
    echo "$theResults";
    ?>

    Line 37 is this:
        $success = mail{$webMaster, $emailSubject,$body, $headers};
    It should be this:
        $success = mail($webMaster, $emailSubject, $body, $headers);
    Also the header for the From: is this:$headers = "From: $email\r\n"; but I don't see the variable defined for $email
    Also you should know about email injection. Someone could inject your headers and add additional BCC: addresses to send emails to many undisclosed recipients through your mail script. You'd be using your script to turn your server into a host for spam! Sanitize your fields to prevent injection attacks! Security should be the firt priority followed by functionality. If it's unsecure it shouldn't function

  • How do I get php files to render in Live View

    I'm using CS4 and have just found that I can't get php pages to render in live view.  I have no problems with html pages. Help

    Hi,
    his thread could solve your problem: http://forums.adobe.com/message/2610272 "DW CS4 - Design/Live view not available with PHP" where David Powers (nr. 5) answered in this way:
    Have you changed your preferences to open PHP pages in Code view?
    In the File Types/Editors category of Preferences, if you add .php to the list of file name extensions in "Open in code view", it disables Design view and Live View for that type of file.
    Hans-G.

  • Getting rates from ecb with java

    Does anyone know how i can get the latest exchange rates from the European central Bank website with java?

    Got this from [http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml]
    aparently it's updated daily :)
    <?xml version="1.0" encoding="UTF-8"?>
    <gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns="http://www.ecb.int/vocabulary/2002-08-01/eurofxref">
         <gesmes:subject>Reference rates</gesmes:subject>
         <gesmes:Sender>
              <gesmes:name>European Central Bank</gesmes:name>
         </gesmes:Sender>
         <Cube>
              <Cube time='2008-07-25'>
                   <Cube currency='USD' rate='1.5734'/>
                   <Cube currency='JPY' rate='168.77'/>
                   <Cube currency='BGN' rate='1.9558'/>
                   <Cube currency='CZK' rate='23.595'/>
                   <Cube currency='DKK' rate='7.4619'/>
                   <Cube currency='EEK' rate='15.6466'/>
                   <Cube currency='GBP' rate='0.78880'/>
                   <Cube currency='HUF' rate='231.35'/>
                   <Cube currency='LTL' rate='3.4528'/>
                   <Cube currency='LVL' rate='0.7032'/>
                   <Cube currency='PLN' rate='3.2080'/>
                   <Cube currency='RON' rate='3.5675'/>
                   <Cube currency='SEK' rate='9.4610'/>
                   <Cube currency='SKK' rate='30.385'/>
                   <Cube currency='CHF' rate='1.6268'/>
                   <Cube currency='ISK' rate='127.51'/>
                   <Cube currency='NOK' rate='8.0815'/>
                   <Cube currency='HRK' rate='7.2182'/>
                   <Cube currency='RUB' rate='36.7435'/>
                   <Cube currency='TRY' rate='1.8966'/>
                   <Cube currency='AUD' rate='1.6438'/>
                   <Cube currency='BRL' rate='2.4808'/>
                   <Cube currency='CAD' rate='1.5968'/>
                   <Cube currency='CNY' rate='10.7275'/>
                   <Cube currency='HKD' rate='12.2698'/>
                   <Cube currency='IDR' rate='14352.55'/>
                   <Cube currency='KRW' rate='1584.41'/>
                   <Cube currency='MXN' rate='15.7525'/>
                   <Cube currency='MYR' rate='5.1129'/>
                   <Cube currency='NZD' rate='2.1159'/>
                   <Cube currency='PHP' rate='69.143'/>
                   <Cube currency='SGD' rate='2.1407'/>
                   <Cube currency='THB' rate='52.608'/>
                   <Cube currency='ZAR' rate='11.9481'/>
              </Cube>
         </Cube>
    </gesmes:Envelope>

  • Get additional file attachements with file adapter

    Hello,
    Has anyone ever had the following situation:
    A Sender interface sends a little bit of data to XI.
    This data contains the filenames of some files on a FTP server.
    Based on these filename the file needs to be retreived from a FTP server and further handled as an attachement of the XI message?
    Is it possible to trigger a sender file adapter with a variable directory and filename from XI, in a BPM or Mapping?
    Warm Regards,
    Leon Boeijen

    hi,
    >>>>Is it possible to trigger a sender file adapter with a variable directory and filename from XI, in a BPM or Mapping?
    no it's not possible to start a file adapter from BPM
    you can use a java proxy that will do the trick
    we've used a solution like this many times with no big issues
    remember that it's better to use an async java proxy
    (with correlation) then a sync one...
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Hello, mac mini will not boot. I get a file symbol with a question mark, then a white screen, Hello, mac mini will not boot. I get a file symbol with a question mark, then a white screen

    Hello, My mac mini will not boot. When I turn it on, I get the chime, then the white screen, then the apple symbol, then a file symbol with a question mark, then the white screen and then it stays like that.
    Is this a bad hard drive?

    Sounds like it.  Try booting from your OSX restore DVDs - startup and hold down "C".  This will take AGES! Then run Disk Utility from the menu. 
    The flashing ? means your system is corrupt, dead, not there, on a dying HD, etc...

  • At startup I get a file folder with a ?

    I Have a 2007 iMac, I had to force shut off when iTunes froze.  When I rebooted the screen had a file folder with a ? On it.  I am running 10.6.8  and I have a time machine backup.

    This indicated the computer cannot find the startup volume per Flashing question mark appears when you start your Mac. If you can boot using the ML install discs open Disk Utility and check to see if the system can see the startup HD on the computer. If it cannot that verifies the HD has failed, which I think has happened anyway. If you want to continue using the machine have the HD replaced, install ML as you had before and then restore from your TM backup to get back to where you were before the crash occurred.

  • Trying to get .php to matchup with button script

    As it stands now when you click the submit button, to submit
    the form info., I get the form error message.
    I know my server account is linux so php is fine, there must
    be something that is butting heads in the code. Please take a look
    a tell me what you think might help
    PHP FILE
    <?php
    $to_1 = "[email protected]";
    //$form_subject = "Contact Form Submission:";
    $name = $_POST['name_value'];
    $email = $_POST['email_value'];
    $subject = $_POST['subject_value'];
    $message = $_POST['message_value'];
    $msg = "Sender: $name\nE-Mail: $email\nMessage: $message";
    $headers = "From:[email protected]\n";
    $headers .= "Reply-To:[email protected]\n";
    //print error_reporting(E_ALL);
    //mail_status = mail($to_1,$subject,$msg,$headers);
    $mail_status = mail($to_1,$subject,$msg,$headers);
    if($mail_status){
    echo "returnVal=success";
    else{
    echo "returnVal=error";
    ?>
    AS3 Form & Button Code
    //initialize the form
    resetForm();
    initSubjects();
    form_name_value.tabIndex = 1;
    form_email_value.tabIndex = 2;
    subject_btn.tabIndex = 3;
    form_message_value.tabIndex = 4;
    submit_btn.tabIndex = 5;
    reset_btn.tabIndex = 6;
    //add listeners to buttons so that these buttons can perform
    some actions
    submit_btn.addEventListener(MouseEvent.ROLL_OVER,b tnOver);
    submit_btn.addEventListener(MouseEvent.ROLL_OUT,bt nOut);
    submit_btn.addEventListener(MouseEvent.CLICK,btnCl ick);
    reset_btn.addEventListener(MouseEvent.ROLL_OVER,bt nOver);
    reset_btn.addEventListener(MouseEvent.ROLL_OUT,btn Out);
    reset_btn.addEventListener(MouseEvent.CLICK,btnCli ck);
    subject_btn.addEventListener(MouseEvent.ROLL_OVER, btnOver);
    subject_btn.addEventListener(MouseEvent.ROLL_OUT,b tnOut);
    subject_btn.addEventListener(MouseEvent.CLICK,btnC lick);
    submit_btn.label.mouseEnabled = false;
    reset_btn.label.mouseEnabled = false;
    submit_btn.buttonMode = true;
    reset_btn.buttonMode = true;
    subject_btn.buttonMode = true;
    function btnOver(event:MouseEvent):void{
    event.currentTarget.gotoAndStop("over");
    /*switch( event.currentTarget ){
    case submit_btn:
    submit_btn.gotoAndStop("over");
    break;
    case reset_btn:
    reset_btn.gotoAndStop("over");
    break;
    case subject_btn:
    subject_btn.gotoAndStop("over");
    break;
    default:
    //trace(event.currentTarget);
    function btnOut(event:MouseEvent):void{
    event.currentTarget.gotoAndStop("up");
    /*switch( event.currentTarget ){
    case submit_btn:
    submit_btn.gotoAndStop("up");
    break;
    case reset_btn:
    reset_btn.gotoAndStop("up");
    break;
    case subject_btn:
    subject_btn.gotoAndStop("up");
    break;
    default:
    //trace(event.currentTarget);
    function btnClick(event:MouseEvent):void{
    switch( event.currentTarget ){
    case submit_btn:
    if( validateData() ){
    sendData();
    break;
    case reset_btn:
    resetForm();
    break;
    case subject_btn:
    subjects_mc.gotoAndPlay("over");
    break;
    default:
    //trace(event.currentTarget);
    function validateData():Boolean{
    var is_form_valid:Boolean = true;
    if( form_name_value.text == '' || form_name_value.text ==
    'Name is required.' ){
    form_name_value.text = 'Name is required.';
    is_form_valid = false;
    if( !validateEmail(form_email_value) ){
    is_form_valid = false;
    if( form_subject_value.text == '' || form_subject_value.text
    == 'Choose A Subject...' ){
    form_subject_value.text = 'Subject is required.';
    is_form_valid = false;
    if( form_message_value.text == '' || form_message_value.text
    == 'Message is required.' ){
    form_message_value.text = 'Message is required.';
    is_form_valid = false;
    return is_form_valid;
    function validateEmail(email:TextField):Boolean{
    var email_exp:RegExp =
    /^[a-z0-9][-._a-z0-9]*@(([a-z0-9][-_a-z0-9]*\.)+[a-z]{2,6}|((25[0-5]|2[0-4]\d|[01]?\d\d?) \.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?))$/x;
    if( email.text == '' ){
    email.text = 'Email is required.';
    return false;
    if( !email_exp.test(email.text) ){
    email.text = 'Email is invalid.';
    return false;
    return true;
    function sendData():void{
    var url_loader:URLLoader = new URLLoader();
    //var url_request:URLRequest = new
    URLRequest("email.php"+getTimer());
    var url_request:URLRequest = new
    URLRequest("email.php"+getTimer());
    url_request.method = URLRequestMethod.POST;
    var url_variables:URLVariables = new URLVariables();
    url_variables.name_value = form_name_value.text;
    url_variables.email_value =form_email_value.text;
    url_variables.subject_value = form_subject_value.text;
    url_variables.message_value = form_message_value.text;
    url_request.data = url_variables;
    url_loader.load(url_request);
    url_loader.addEventListener(Event.OPEN,loadingOpen Handler);
    url_loader.addEventListener(Event.COMPLETE,loading
    CompleteHandler);
    url_loader.addEventListener(SecurityErrorEvent.SEC
    URITY_ERROR, securityErrorHandler);
    url_loader.addEventListener(HTTPStatusEvent.HTTP_S TATUS,
    httpStatusHandler);
    url_loader.addEventListener(IOErrorEvent.IO_ERROR,
    ioErrorHandler);
    function loadingOpenHandler(event:Event):void{
    form_status.text = 'Sending Data...';
    function loadingCompleteHandler(event:Event):void{
    form_status.text = 'Data sent successfully.';
    resetForm();
    function securityErrorHandler(event:SecurityErrorEvent):voi
    d{
    form_status.text = 'An Error occured.';
    function httpStatusHandler(event:HTTPStatusEvent):void{
    form_status.text = 'An Error occured.';
    function ioErrorHandler(event:IOErrorEvent):void{
    form_status.text = 'An Error occured.';
    function resetForm():void{
    form_name_value.text = '';
    form_email_value.text = '';
    form_subject_value.text = 'Choose A Subject...';
    form_message_value.text = '';
    function initSubjects():void{
    for(var i=1;i<=4;i++){
    subjects_mc["subject_mc_"+i].id = i;
    subjects_mc["subject_mc_"+i].addEventListener(MouseEvent.ROLL_OVER,subjectBtnO
    ver);
    subjects_mc["subject_mc_"+i].addEventListener(MouseEvent.ROLL_OUT,subjectBtnOu
    t);
    subjects_mc["subject_mc_"+i].addEventListener(MouseEvent.CLICK,subjectBtnClick
    subjects_mc["subject_mc_"+i].buttonMode = true;
    subjects_mc["subject_mc_"+i].subject.mouseEnabled = false;
    subjects_mc.mask = subjects_mask_mc;
    function subjectBtnOver(event:MouseEvent):void{
    event.currentTarget.gotoAndPlay("over");
    function subjectBtnOut(event:MouseEvent):void{
    event.currentTarget.gotoAndPlay("out");
    function subjectBtnClick(event:MouseEvent):void{
    subjects_mc.gotoAndStop("up");
    form_subject_value.text =
    subjects_mc["subject_mc_"+event.currentTarget.id].subject.text;
    }

    Okay, nice!
    I changed that bit to just "email.php"),
    and now I get the mesage "data sent successfully"
    The question is WHERE??
    It doesn't show up in the email addy specified in the .php
    file.

  • Macbook air mid 2013, I erased my HD and while downloading the OS screen went of and when I switched back on I get a file icon with a question mark.

    I erased my HD and while downloading a new screen went of.When I switched on again there was a file icon with a question mark

    restart holding down command+r, you'll be able to reinstall your OS here

  • Instead of an apple, I get a file folder with a question mark!

    Hi. I turned on my MacBook today, and instead of the apple popping on to the screen after a few seconds, I got something that looks like a file folder with a question mark in the middle of it. Then it starts to flash! Turned it off with the power button, tried again a few times...same result. Anyone know what to do? Thanks

    If the computer starts up after a brief delay, you probably just need to reselect your startup volume. Choose Apple menu > System Preferences. Click Startup Disk and select the the desired startup volume.
    If your computer does not start up, try repairing your startup disk and reselecting your Mac OS X startup volume. Click the link below for the webpage with detailed instructions.
    A flashing question mark appears when you start your Mac

  • Getting a file name using java.io.file

    Dear List,
    I am having problems using java.io package. I am reading a string on a linux tomcat server. I am
    trying to parse a windows type filepath (passed by a web-browser-client) and get only the filename. ie. sample.jpg.
    fileName = "c:\\temp\\sample.jpg"
    java.io.File file = new File(fileName);
    onlyFileName = file.getName();
    remember this on linux, and on my server onlyFileName contains "c:\\temp\\sample.jpg" and not sample.jpg as I would expect.
    can any one tell me what I (yet again) dont understand.? Strangely enough when the server is on windows and I am passing a linux string with the fileseperator as a forward-slash, the code manages to derive the correct filename.
    regards
    Ben

    Post this to the beginners forum - has nothing to do
    with native methods.Apologies I thought Java.io would be "native".
    sorry,
    BB

Maybe you are looking for

  • Document flow is not getting updated in SD in BW side

    Hi all In SD , we r cancelling an invoice .Doc type =  S1. Again , w r posting an invoice ,for the cancelled document . But in 2LIS_13_VDKON ,  after cancelled document , new billing documents are for the cancelled billing not updated. that is new bi

  • Drive Structure

    Hi all, i try to upload new WBS elements to an old project and the status of the superior WBS element for the new WBS elements has the systen status "Released,Settlement rule created" and when saving the system trigers an error message which is: *_En

  • How to get value of MA attributes on Contract Document phase change script

    Hi, I need to get value of Master Agreement attributes on Contract Document phase change. When Contract document phase changes to Supplier Draft, I want values of Master Agreement - Publish date, vendor visible, email. But I am unable to retrieve the

  • Will I lose my CD songs if I sync?

    When I first got my iPhone, I ripped a lot of songs from CDs through my dad's iTunes account. On my phone, whenever I buy something from iTunes, I buy it through my own account and I only ever buy songs through iTunes on my phone, not iTunes on my co

  • Set a parameter which is sent to a subreport into 'null'

    Hi everyone, I have a report that has an inner subreport and I want to link one of the parameters to it. The problem is that once the parameter is linked it loses the ability of being null (no 'set to null' check box). Any idea how can this problem b