Cannot Modify Header Information error

Hi all

I working to build a members area only on my site and have used the "turorial" provided in dreamweaver help.  After you have created the pages but I meet erros that I think has to do with the redirect.

On my registration page (www.hondovfd.org/newsite/register.php), I get the error:

Warning: cannot modify header information - headers already sent in /var/home/hondovfd/hondovfd.org/www/newsite/register.php on line 50

Registration passes by, as I can see it in my database, but the error prevented anything more.

On my login page (www.hondovfd.org/newsite/login.php), I immediately get these two errors when the page is loaded:


Warning: session_start() [Function.session - start]: Cannot send session cookie - headers already sent in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 1074249146

Warning: session_start() [Function.session - start]: Cannot send session cache limiter - already sent headers (output started at var/home/hondovfd/hondovfd.org/www/newsite/login.php:1074249146) in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 1074249146

And once I get a name of user and password valid this error is also added:

Warning: cannot modify header information - headers already sent by (output started at var/home/hondovfd/hondovfd.org/www/newsite/login.php:1074249146) in /var/home/hondovfd/hondovfd.org/www/newsite/login.php on line 68

If you want to try and diagnose the name of user and password that I use is 'test' for both fields.

Someone has any ideas why this happens?

Thank you

David

Take another look at what I wrote. You need to replace the path with a relative to the document. Yours is relative to the root of the site.

PHP include and require constructions do not include site-relative links to the root. The include command should look like this:


Tags: Dreamweaver

Similar Questions

  • WARNING: Cannot modify header information error

    This is the error i recieve when I use the log in system of my website. The session ID is correctly sent to the database and the form is processed.
    Although, when it comes to redirecting to the logged in homepage this error appears. I have tested this exact script with no problems in my computers local host.
    WHen uploaded online and tested tho the error appears. Please help!:
    Warning: Cannot modify header information - headers already sent by (output started at /home/gr/public_html/members_login_handle.php:6) in /home/gr/public_html/members_login_handle.php on line 97.
    
    The coding for the members_login_handle.php which processes my members_login.php form to login is below:
    
    <?php
    session_start();
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/main_template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <script type="text/javascript">
    <!--
    var message="";
    ///////////////////////////////////
    function clickIE() {if (document.all) {(message);return false;}}
    function clickNS(e) {if
    (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {(message);return false;}}}
    if (document.layers)
    {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
    else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
    
    document.oncontextmenu=new Function("return false")
    // -->
    
    function disSel(target){
    if (typeof target.onselectstart!="undefined")
        target.onselectstart=function(){return false}
    else if (typeof target.style.MozUserSelect!="undefined")
        target.style.MozUserSelect="none"
    else
        target.onmousedown=function(){return false}
    target.style.cursor = "default"
    }
    </script>
    
    <script type="text/javascript">
    window.onload = function () {
    document.body.onselectstart = function () {
    return false;
    }
    document.body.ondragstart = function () {
    return false;
    }
    }
    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Staff Login</title>
    
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="seo" -->
    <meta name="Description" content="" />
    <meta name="Keywords" content="" />
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->    
    <link href="../stylesheets/main_styles.css" rel="stylesheet" type="text/css" />
    </head>
    
    <body>
    <div id="wrap">
      <div id="header">
        <div id="logo"><a href="../index.php"><img src="../images/logo.gif" width="156" height="148" border="0" alt="img" title="Logo"/></a></div>
        Great Linford
      <br />Primary School</div>
      <div id="motto"><div id="myarea"><a href="../html_files/student_area.html" >My Area</a></div>
      Be proud to do the "Right Thing"
        
      <a href="../html_files/student_area.html"><img src="../images/star.gif" width="89" height="89" border="0" alt="img"/></a></div>
     
      <div id="menu">
      <ul>
      <li><a href="../index.php" accesskey="1">Homepage</a></li> 
       <li><a href="../html_files/school_tour.html" accesskey="2">School Tour</a></li> 
       <li><a href="../html_files/calendar.php" accesskey="3">Calendar</a></li>
       <li><a href="../html_files/newsletter.php" accesskey="4">Newsletter</a></li>
       <li><a href="../html_files/events.html" accesskey="5">Events</a></li>
        <li><a href="../html_files/parents.html" accesskey="6">Parents</a></li>
       <li><a href="../html_files/staff.html" accesskey="7">Staff</a></li>
        <li><a href="../html_files/contact_us.html" accesskey="8">Contact Us</a></li></ul>
      </div>
      <div id="content"><!-- InstanceBeginEditable name="page_content" -->
      <?php
    include_once('members_login_con.php');
    $id = $_REQUEST['id'];
    $pwd = md5($_REQUEST['pwd']);
    if(preg_replace('/[a-zA-Z0-9]/', '', $id)){
        echo "Invalid entry"; echo "<br>";
        echo "<a href=\"members_login.php\"><br />Please try again</a>.";
        }
        else{
    $check=mysql_query("SELECT * FROM users WHERE email = '".$id."' AND pwd = '".$pwd."'");
    $row_num=mysql_num_rows($check);
     if($row_num < 1){
        echo "The user name and/or password has been entered incorrectly.";    
        echo "<br />";
        echo "<br />";
        echo "Please <a href=\"members_login.php\">Try again</a>.";
    }else{
        $_SESSION['members'] = md5($_REQUEST['number']);
        $members = $_SESSION['members'];
        $_SESSION['id']=$id;
        $check = mysql_query("SELECT*FROM $table WHERE id= '".$id."' AND pwd = '".$pwd."'");
        $row_num = mysql_num_rows($check);
        if($row_num < 1){
            mysql_query("INSERT INTO $table (session,id,pwd) VALUES ('$members','$id','$pwd')");
            header('location:"members_area.php?sess='.$URLsession.'"');
        }else{
            echo "You are not authorised to log in concurrent sessions";
            echo "<br />";
            echo "<a href=\members_login.php\">Try again</a>";
        }
    }
    }
    ?>
    
    Thanks and can't wait to hear back with responses. Been trying to fix it for days...
    If any additional infomation is required I would be happy to provide it.
    Louise

    I wanted to say that you must move the entire block of code above server-side the head tags.

  • PHP error: WARNING: cannot modify header information [...]


    Hello

    I just create a new page in dreamweaver (php server) to update a record, and the generated page gives the error:

    WARNING: Cannot modify header information - headers already [...]

    This happens after the update of the record, when it tries to access the page that I defined in the option "after updating, go to" Update Wizard. If looking at the code help, I put it in pastebinWeb site.

    Can you help me? Thanks in advance.

    Pedro

    PS - Yes, I'm a noob in PHP :-)

    ptknight wrote:
    > I don't see space before or after the php
    > tags. Is there anything else I should be looking? Would it be some parameters
    > or the fact that I write a text in PT (international characters)?

    The problem with spaces, it's that you can't see. The language
    you use is not important. This is something that is sent to the browser
    before the call to the header() function. Take a look at the PHP documentation on
    Header():

    http://www.php.net/manual/en/function.header.php

    The next section is particularly relevant:

    "Remember that header() must be called before any actual output is sent,
    either by normal HTML tags, blank lines in a file, or from PHP. It's a
    very frequent error to read code with include() or require() functions,
    or another file to access work and have spaces or empty lines that are
    output before header() function is called. The same problem exists when you use a
    simple PHP/HTML file.

    If you can't get the problem sorted, the answer is to put this right to
    at the top of your script:

    Also, you should put this right at the end of the page:

    This example gets around the problem of "headers already sent" by the buffering the
    output. Get rid of the problem by tracing his cause is best
    solution, however.

    --
    David powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • WARNING: Cannot modify header information - redirects with the server behaviors

    I know it's an old question, but I can't find the answer.  I get an error when you use the update of the server behavior redirects the Add record  I get the error message: warning: cannot modify header information - headers already sent by (output began to...)

    I deleted as much white space before the header() function and I still get the error.

    <? php require_once('.. / Connections/Old4thDB.php');? >

    <? PHP

    If (! function_exists ("GetSQLValueString")) {}

    function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")

    {

    If (via PHP_VERSION < 6) {}

    $theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;

    }

    $theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

    Switch ($theType) {}

    case 'text ':

    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

    break;

    case "long":

    case "int":

    $theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';

    break;

    case "double":

    $theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';

    break;

    case "date":

    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

    break;

    case "set":

    $theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;

    break;

    }

    Return $theValue;

    }

    }

    $editFormAction = $_SERVER ['PHP_SELF'];

    If (isset {}

    $editFormAction. = « ? ». htmlentities($_SERVER['QUERY_STRING']);

    }

    If ((isset($_POST["MM_update"])) & & ($_POST ["MM_update"] == "UpdateVarietyForm")) {}

    $updateSQL = sprintf ("setting a DAY various SET varietyName = %s varietyType = %s varietyAlphaAcidGeneral = %s, varietyBetaAcidGeneral = %s, varietyOld4thAA = %s, varietyOld4thBA = %s, varietyEssenOil1 = %s, varietyEssenOil2 = %s, varietyEssenOil3 = %s, varietyEssenOil4 = %s, varietyEssenOil5 = %s, varietyEssenOil6 = %s WHERE variety_id = %s",

    GetSQLValueString ($_POST ['varietyName'], "text").

    GetSQLValueString ($_POST ['varietyType'], "text").

    GetSQLValueString ($_POST ['varietyAlphaAcidGeneral'], "text").

    GetSQLValueString ($_POST ['varietyBetaAcidGeneral'], "text").

    GetSQLValueString ($_POST ['varietyOld4thAA'], "text").

    GetSQLValueString ($_POST ['varietyOld4thBA'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil1'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil2'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil3'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil4'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil5'], "text").

    GetSQLValueString ($_POST ['varietyEssenOil6'], "text").

    GetSQLValueString ($_POST ["'recordID"], "int"));

    @mysql_select_db ($database_Old4thDB, $Old4thDB);

    $Result1 = mysql_query ($updateSQL, $Old4thDB) or die (mysql_error ());

    $updateGoTo = "varieties.php";

    If (isset {}

    $updateGoTo. = (strpos ($updateGoTo, '?'))? « & » : « ? » ;

    $updateGoTo. = $_SERVER ['QUERY_STRING'];

    }

    header (sprintf ("location: %s", $updateGoTo));

    }

    @mysql_select_db ($database_Old4thDB, $Old4thDB);

    $query_rsUpdateVariety = "SELECT * FROM variety";

    $rsUpdateVariety = mysql_query ($query_rsUpdateVariety, $Old4thDB) or die (mysql_error ());

    $row_rsUpdateVariety = mysql_fetch_assoc ($rsUpdateVariety);

    $totalRows_rsUpdateVariety = mysql_num_rows ($rsUpdateVariety);

    ? >

    Am I missing other setups/configurations that could cause this?

    You forgot the most important part of the error message. "Output started at..." tells you where the production has started, guiding you to correct the error.

    The most common cause of this error is a space outside of an include file PHP tags. Most likely guilty is one or more new lines after the closing PHP tag in Old4thDB.php. Remove the closing tag PHP in this folder will be probably solved the problem.

    Another possible cause is using the BOM (byte order mark) on a PHP page. Make sure that the check box for the BOM is deselected in the Save dialog box.

  • Cannot modify payment information

    I need to change my credit card details.  I understand how I'm supposed to do, but when I try to click on the "Save" button after you have entered the new details about the update payment information screen, the button does not respond.  Only the button 'Cancel' answers (and, of course, the information that I entered is lost.

    Look elsewhere on the forum, this seems to be a common problem.  An Adobe representative can answer this?  (The only phone number I can find support is an American number.  I am in the United Kingdom and do not want to spend an indefinite period of time on an international call! )

    Thanks for the reply.  However, I had already run through the troubleshooting process.

    I solved the problem by now, and in the case where it is beneficial for other users who have the problem, I'll describe the bizarre steps that worked:

    • When I entered the credit card as a continuous string of 16 digits, the 'Save' button is inactive, but there was no warning that there was a problem with how I enter the card number.
    • I then inserted hyphens to separate the 16-digit credit card number in four groups of 4 digits (XXXX-XXXX-XXXX-XXXX).  This caused the button 'Save' become active, but when I left clicked, an error message indicates that the map was not correct 'type'.
    • Then, I removed the dashes in the number (so to restore the way in which I had first entry number).  The 'Save' button remained active, but this time, when I left clicked it, the number of the card has been accepted.

    I suspect that a lot of people will think that this can happen - that I made a keying error in my credit card number-, but this is absolutely not the case.  I had tried several times to enter the details, using 3 different browsers (Firefox, Internet Explorer and Opera) with 2 different operating systems (Windows XP and Windows 7).  The result was the same each time.

    It remains to be seen if Adobe will recognize and do something, this Kafkaesque programming bug.

  • Cannot modify the information from the user on the page change user IOM

    Hi *.

    When I try to edit the details of the user, it gives this error message and cannot change.

    * Commissioning Date error
    Commissioning date cannot be earlier than the current date *.

    I remove the date value commissioning of the table of the usr for this user. Then, it allow me to change.

    How can I solve this problem.

    On the creation of the user, is it ok if I join a before insert adapter to do provisioning date field empty?

    OR

    Is there another solution...

    Help...

    Kind regards
    Chaturanga

    No need to use an adapter.

    Automatic provisioning will work without this adapter.

    You remove commissioning Date of value on the before update, it's fake if you see business Point of view. He won't give you any problems in the future.

  • Cannot modify headers... when using OCI_Lob-&gt; writeTemporary

    Hello!

    I use an installation of PHP4 came installed on the Oracle application server. The php page responds to an HTTP POST request and inserts the content of the request body into my database using oci8. I would return a 200 HTTP header if the insertion of the database succeeds, or 400 if it fails.

    However, I run into error "cannot modify headers...". "where the header block has already been sent before that I try to put the status code. The culprit seems to be a function OCI_Lob-> writeTemporary, which I use to bind the string data received demand for a CLOB for insertion in my database. I wonder if there is any way to prevent the header sent, or any other way I could get the data string in my database that would allow me to avoid this error.

    Here is my code

    <? PHP
    get the content of the HTTP POST request
    $xml = @file_get_contents ('php://input');

    Open the connection to the DB
    $conn = ocilogon (user, pwd, host);

    error, if it is unable to connect
    If (! $conn) {}
    trigger_error ("Could not connect to database", E_USER_ERROR);
    }

    build the query
    $query is ociparse ($conn, "insert into XML_MESSAGE values (null, SYSDATE, null, XMLType(:clob), null, null)");.

    Open the lob to store the xml file to insert
    $lob = ocinewdescriptor ($conn, OCI_D_LOB);
    $lob-> writeTemporary ($xml);
    $lob-> close;

    bind variables and run the query
    ocibindbyname ($query, ': clob', $lob,-1, OCI_B_CLOB);
    $success = ociexecute ($query);

    Returns the status code
    If {($success)
    Header ("HTTP/1.0 200 OK");
    }
    else {}
    Header ("HTTP/1.0 400 Bad Request");
    }

    Disconnection of the Oracle
    ocilogoff ($conn);
    ? >



    And here is the error:

    WARNING: Cannot modify header information - headers already sent by (output started at c:\oracle\product\10.2.0\db\apache\apache\htdocs\test.php:18) in c:\oracle\product\10.2.0\db\apache\apache\htdocs\test.php on line 27

    You probably have a text sent (maybe a mistake?) before setting the header:

    $ php53 -r 'echo "something\n"; header("HTTP/1.0 200 OK");'
    something
    PHP Warning:  Cannot modify header information - headers already sent by (output started at Command line code:1) in Command line code on line 1
    

    A good practice would be to set up a Manager error and/or the buffer output.

  • Error: Error #2078: cannot modify the name property of a Timeline-place object.

    Error: Error #2078: cannot modify the name property of a Timeline-place object.
    to flash. display::DisplayObject / set name()
    at RonaldTest_fla::MainTimeline/frontWheelLoadComplete()

    The code that triggers this false error is the following:

    ------------------------------------------------------------------------------------------ --------------------------------------------------------

    var frontWheelLoader:Loader = new Loader();
    frontWheelLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, frontWheelLoadComplete);
    frontWheelLoader.load (new URLRequest ("FrontWheel.png"));

    function frontWheelLoadComplete(event:Event):void
    {
    var loadedImg:Bitmap = new bitmap;
    loadedImg = event.target.content;
    loadedImg.name = 'My Image loaded';          Online listening
    var kontainer:MovieClip = new MovieClip();
    kontainer.addChild (loadedImg);
    addChild (kontainer);
    }

    ------------------------------------------------------------------------------------------ --------------------------------------------------------

    Any ideas?

    Kind regards

    Ron

    The problem is that this charger adds that the information of an image loaded as an instance.

    If you want to change the name... Get the the bitmap data var BitmapData: BitmapData = Bitmap (event.target.content) .bitmapData

    and then var image: Bitmap = new Bitmap image (data); Frame.Name = "Name"

  • When I import pictures from my iPhone 4s in the Windows Photo Gallery, some come head down and cannot be rotated. Error code 0 x 80070057

    original title: Error Code 0 x 80070057

    When I import pictures from my iPhone 4s in the Windows Photo Gallery, some come head down and cannot be rotated.  Error code 0 x 80070057

    I use Windows Vista.  Help, please.

    Paint has definitely worked for me!  I tried to in WLPG (open with paint) then shot and recorded in the paint.  It is automatically changed in WLPG.  Thanks for the suggestion.
  • SQL error: ORA-01779: cannot modify a column that matches a key examine

    Hi all

    The requirement is that I have two tables s_party_d and S_CONTACT_d. the need to update the column name with FST_NAME | ',' | Last_name when column rowid in both tables are equal. I used the query previously below: -.

    Update
    (select
    E1. Name,
    e.FST_NAME,
    Select
    Of
    s_party_d e1,
    E S_CONTACT_d
    where
    E1. Game of ROW_ID = e.ROW_ID)
    name = FST_NAME | ',' | LAST_NAME;

    But I get the error message when executing the query

    Error in the command line: 31 column: 3
    Error report:
    SQL error: ORA-01779: cannot modify a column that is mapped to a table not preserved key
    01779 00000 - 'impossible to change a column that is mapped to a non-preserved table at key'
    * Cause: An attempt was made to insert or update columns in a join finds out who
    map to a table not kept the key.
    * Action: Change the directly underlying base tables.

    Can U please tell me why this error and how to solve?

    Thank you
    Mathon

    Mathon wrote:

    So, I have to look into some other method... I can't achieve this using a single update statement...

    Well, no matter what you do you need to decide what FST_NAME | ',' | Name to use. As I already pointed out for each line of the line of the s_party_d table there are several rows in table S_CONTACT_d. Again, you must yo decide what S_CONTACT_d table row you want to use. For example:

    update s_party_d e1
       set e1.name = (
                      select  max(e.FST_NAME) ||', '|| max(e.LAST_NAME)
                        from  S_CONTACT_d e
                        where e1.ROW_ID=e.ROW_ID
                     )
     where e1.ROW_ID in (
                         select  e.ROW_ID
                           from  S_CONTACT_d e
                        )
    /
    

    SY.

  • Web site cannot disply programming page error

    Original title: network map

    I have printed information: workstation because I got in trouble and can't seem to fix.  My computer information - status under Hardware page, network card, the State is not supported, and it is recommended that 'looking for pilot."  I did, and came a message indicating "web site cannot disply programming page error?  How can I fix?  He then shows in Network Diagnostics, network adapters, Intel(r) PRO/1000 PL Network Connection (FAILED).  Connecting TV/video of Microsft says (SUCCESS).  What can be done to change this?

    Hello

    ·         You will remember to do recent changes on the computer before this problem?

    I suggest you follow the steps from the following link:

    "Internet Explorer cannot display the webpage"

    http://support.Microsoft.com/kb/956196

    I hope this helps.

  • cannot follow the links-error message said "this operation has been cancelled due to restrictions in effect on this computer"

    cannot follow the links-error message said "this operation has been cancelled due to restrictions in effect on this computer

    Hello

    1 are. what links you referring?
    2 are. links to which application you referring?
    3. what browser do you use to open the links?

    Your question does contain all the required information necessary for us to help you. Please re - write your question, this time make sure you have all the information necessary and we will try to help.

    http://support.Microsoft.com/kb/555375

  • Cannot modify only directory attributes of reading, all the readers all the directories.

    Original title: cannot modify only directory attributes of reading, all the readers all the direcotries.

    For some reason now all directories are read-only. I have a check only reading tab, it goes through the process of change in all files in the subdirectory (I put their scrolling), click ok. But when I go in the directory again that reading is only check again. It is on my C: dirve all directories and all the other readers, including empty directories. Any suggestion would be appreciated. Thank you
    Bit defender shows no problem.
    SdS49r

    Hi SdS49r,

    I would like to ask you a few questions to better understand:

    (a) you connected to the administrator account? because you do not have the \n(Assurez-vous if you are not in the administrator account

    (b) don't you make changes on the computer?

    (c) have you created the file read-only?

    (d) what message do you get while changing the read-only attribute?

    (e) have you been able to change the attributes previously in your computer?

    You can scan your computer, then follow the steps in the link: http://www.microsoft.com/Security_Essentials/

    Try the system restore, it restores the computer to its point earlier while it was working fine.

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    Hope this information helped!

    Thank you, and in what concerns:

    Aziz Nadeem - Microsoft technical support.
    Visit our http://social.answers.microsoft.com/Forums/en-US/answersfeedback/threads/ Microsoft answers feedback Forum and let us know what you think.

  • Windows Live Photo Gallery. error: Windows Live Photo Gallery encountered an error loading WLXPhotoviewer.dll and cannot start. 0x8007007e error code

    Windows Live Photo Gallery. error: Windows Live Photo Gallery encountered an error loading WLXPhotoviewer.dll and cannot start. 0x8007007e error code

    Hello

     
    There seems to be a problem with the Windows Live Photo Gallery, it's better to post the same question to the Windows Live Photo Gallery site for assistance. We have a dedicated team to help you with such questions.
    Windows Live Gallery Portal: http://windowslivehelp.com/product.aspx?ProductID=20
     
    Hope the information is useful.
  • How to edit PO header information

    Hello

    I created an order form in Oracle e-Business using the tables of the interface (po_headers_interface, po_lines_interface and po_distributions_interface). My next demand must be able to change some data in the PO header as provider, bill location etc. I've read a few articles, and he said I could use po_headers_all and po_lines_all and fill 'UPDATE' in the field 'action '.

    So I insert a line in po_headers_interface with the same document_num and action = "UPDATE" and insert a line in po_lines_interface (number 1) and the action = "UPDATE" (note that the other fields are complete with the same data as the PO create). Ran the competing import program standard purchase stopped (Yes for create or update) and get the following error:

    Error: Line already settled number exists on the order form Standard (VALUE = 1)

    Looks like its trying to add a line in ca current rather than update the header.

    If someone managed update the PO header via the interface tables data?

    Hoang.

    Looks at it is not possible to update the PO header data using the interface tables according to Oracle Doc ID 224031.1

    > I update the header of a document. Is this possible via PDOI?

    > # It is not possible to update the header information, but only the line information may be updated to PDOI. You can use the 'Replace' option to replace all of the document in the case.

    I then tried to replace the document but that wrong:

    Error: You can not replace a standard purchase order. The code of the action for a standard purchase order must be ORIGINAL or UPDATED. (VALUE = REPLACE)

Maybe you are looking for

  • Suggestion of "Restrictions".

    It would be great if restriction offered some type of limit of time or planning to limit child accounts/material. Also be great if you could link Parent Apple ID and Apple ID child in family, and adjust the settings (restrictions) online.

  • How to remove a user account from my computer

    When setting up my computer, I added several user accounts with the same name.  How to remove a user account from my computer.

  • What is axipabusa.dll?

    I have problems with Windows XP (Windows explorer sometimes crashes at startup, but after chose to "end this program", everything seems to be ok) after which I used MSConfig to remove all startup items. However, axipabusa.dll does not disappear: it k

  • Pavilion dv9005: hp pavilion dv9000

    I have a HP Pavilion DV9005us.  I worked with this laptop for weeks.  I tried wiping and install win xp, 7, vista and nothing points: If left for more than an hour or so, it will freeze.  I would go online and download anything or play a movie, just

  • BlackBerry smartphones, why the latest version of the software does not release 4.0.0.141 work?

    I just installed the latest version of the software for the storm, and many do not work. RIM/BlackBerry take no responsibility nor will be my supplier of Vodafone. Has anyone else noticed that the release is not right and what can be done (apart form