Dreamweaver Insert Problem

I'm using the built in INSERT using a command procedure. I
would like to take the form variables and insert them into a
database when the user clicks the submit button. However the code
that dreamweaver generates is giving me an error. The error I am
getting is :
Microsoft JScript compilation error- Error '800a03f6'
Invalid character
/orderinsert.asp, line 79
var insertcmd__@@varName@@ = "@@defaultValue@@";
here is the code that is generated by dreamweaver:
// set the form action variable
var MM_editAction = Request.ServerVariables("SCRIPT_NAME");
if (Request.QueryString) {
MM_editAction += "?" +
Server.HTMLEncode(Request.QueryString);
// boolean to abort record edit
var MM_abortEdit = false;
%>
<%
if (String(Request("MM_insert")) == "form1") {
if (!MM_abortEdit) {
// execute the insert
var MM_editCmd = Server.CreateObject ("ADODB.Command");
MM_editCmd.ActiveConnection = MM_eastwingdbconn_STRING;
MM_editCmd.CommandText = "INSERT INTO Customers (Fname,
Lname, Address, Email, City, Province, Phone, Pcode, Cphone) VALUES
MM_editCmd.Prepared = true;
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param1",
202, 1, 50, Request.Form("fname"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param2",
202, 1, 50, Request.Form("lname"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param3",
202, 1, 50, Request.Form("address"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param4",
202, 1, 50, Request.Form("email"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param5",
202, 1, 50, Request.Form("city"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param6",
202, 1, 50, Request.Form("province"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param7",
202, 1, 50, Request.Form("phone"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param8",
202, 1, 50, Request.Form("pcode"))); // adVarWChar
MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param9",
202, 1, 50, Request.Form("cphone"))); // adVarWChar
MM_editCmd.Execute();
MM_editCmd.ActiveConnection.Close();
// append the query string to the redirect URL
var MM_editRedirectUrl = "order2.asp";
if (MM_editRedirectUrl && Request.QueryString
&& Request.QueryString.Count > 0) {
MM_editRedirectUrl += ((MM_editRedirectUrl.indexOf('?') ==
-1) ? "?" : "&") + Request.QueryString;
Response.Redirect(MM_editRedirectUrl)
%>
<%
var insertcmd__@@varName@@ = "@@defaultValue@@";
if (String(@@runtimeValue@@) != "undefined" &&
String(@@runtimeValue@@) != "") {
insertcmd__@@varName@@ = String(@@runtimeValue@@);
%>
I'm using asp and Javascript with html.
Any help would be appreciated.
Thanks.

Hi
I'm writing because exactly the same thing happened to me on my G5 PowerMac in DW CS4. I've read a few other threads where Adobe haven't managed to solve the problem yet have somehow managed to close the threads. Is this; trying to brush the problem under the carpet a bit?
Anyhow, just before the same issue happened to me, I got an error message that when it came up I thought to take a snapshot of it which I enclose below. Additionally I had downloaded a newer copy of iTunes and also VLC softwares just prior to this annoying problem starting.
In the past, I was advised by Adobe to put the plist prefs in the bin, then not actually empty the bin but make a new installation so these would get re-made and possibly cause problems to get fixed. So far I haven't done this yet but have made a new installtion of DW CS4 but this problem still exists.
So my message is to any senior Adobe DW specialist reading this;  Can you fix this?  Do you know what is causing it to happen? How best to make a complete installation of DW so that we can get this glitch fixed please? Should we delete the prefs as well?
My FLV file was made in Squeeze software by the way, but has the icon from VLC as I like to open up the FLVs in this software.
Best regards
Paul

Similar Messages

  • Update/Insert Problem with Oracle Warehouse Builder

    Hello,
    i have update/insert problem with owb.
    Situation: I have a source-table called s_account and a target table called w_account_d. In the target table are already data which was filled trough the source table inserts. Now anyone make changes on data on the target table. This changes should now give further on the source table with an update operation. But exactly here is the problem i can´t map back the data to source because that will create a loop.
    My idea was to set a trigger but i can´t find this component in owb or is anywhere hidden?
    Also i have already seen properties as CDC or conditonal loading in the property inspector of the table, but i have no idea how it works.
    Give it other possibilities to modeling this case? or can anyone me explain how i can implement this eventually with CDC?
    I look forward for your replies :)

    Hi
    thanks for your answer. I follow your suggestion and have set the constraints of both tables into the database directly.Nevertheless it doesn´t work to begin. In the next step i found by right click on a table the listpoint "configure" - I goes to "unique key" --> creation method and set here follow options: Constraint State = ENABLE, Constraint Validation = Validate. That error message that appears before by the deployment disappears yet. Now i start the job to test if the insert/update process works right. Finally it seems to work - but not really.
    My Testscenario
    1. Load the data from source table about the staging area to data warehouse table: Check - it works!
    2. Change one data record in source table
    3. Load the source table with changed data record once again to staging area: Check - it works!
    4. Load new staging area table with the changed data record to data warehouse table: Check it works! BUT, BUT i can not recognize if it is insert or update operation, then under the design window by jobs execution windows is reported "rows selected 98", Rows inserted" is empty and "rows updated" is empty. So i think works not correct, then my opinion if it works correct it should show be "rows updated" 1.
    What can yet now still be wrong or forgotten? Any ideas?
    *By the way think not 98 rows there is not important if you make an update or insert which performance. It is an example table the right tables have million of records.*
    I look forward for your answers :)

  • CRUD insert problems.

    Hello all,
    I was wondering about DB operations in JSF pages, so I took a look over the Single Page CRUD example. What hitted me was there is a need for a two step insertion, first by issuing a select in search for the biggest ID of the primary key, and after that the insertion of the element with that obtained biggest ID + 1. I see at least 2 problems with this approach:
    1. Concurrency issues.What happends if 2 users are issuing at the same time an insert operation over the same table? There is the possiblity of getting the same ID to insert, and the first one could insert, but the second one would fail even if it's request is logically corect (validated & converted). I see three solutions over the insert problem:
    a. lock on the database (if it's possible).
    b. using a synchronized block in the application bean to get the ID and insert.
    c. using DB specific constructs (e.g. MySQL's AUTO_INCREMENT)
    2. Overhead issues. Why doing in two steps an operation that should be just an insert? Previous a. an b. approaches do not solve our overhead problem, because we still have two steps in insertion; we only synchronize them.
    I was wondering which is the best practice for production quality web applications. Personally because I've picked MySQL as DB I've used AUTO_INCREMENT, but the immediate huge and obvious drawback is dumping DataProvider's capability of changing the storage medium at a glance.

    I'm not sure if I entirely understood your questions here.
    - Concurrency problem.
    database bound Data provider underneath uses CachedRowset, which uses SyncProvider to take care of concurrency problem. If the default RIOptimisticProvider is not enough, it possible to register other more sophisticated SyncProvider.
    You can read about it here.
    http://java.sun.com/j2se/1.5.0/docs/api/javax/sql/rowset/CachedRowSet.html
    - Overhead issue
    I believe, it is possible to let the DB auto increment the primary key field, and left it out in the insertion from data provider.
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Dreamweaver encountered problems while constructing the menus from the current menus.xml file

    So, after having trouble with my Photoshop scratch disk, I had to do an archive and install of my Mac OS 10.6.1 then reinstall the Adobe suite. I then had to run the Licensing Repair Tool (http://www.adobe.com/support/contact/licensing.html).
    Now everything works but Dreamweaver, which is throwing the following error:
    "Dreamweaver encountered problems while constructing the menus from the current menus.xml file.
    Please delete the current menus.xml file and rename menus.bak to menus.xml"
    I tried that. menus.bak is a directory, not a file. Even renaming the directory didn't work.
    I saw this http://forums.adobe.com/message/2188511#2188511
    but I don't have a /FlashPlayerTrust/ directory, nor do I see what that has to do with Dreamweaver.
    I couldn't find a corresponding solution for this http://forums.adobe.com/message/862339#862339 for the Mac OS.
    This http://forums.adobe.com/message/3396334#3396334 didn't help, either.
    Anybody have any ideas?
    Thanks!

    This is the error I got after deleting (moving) the configuration directory.
    "No document types have been found in the Configuration/DocumentTypes/ folder. The MMDocumentTypes.xml file may be missing or corrupted. The application will exit now."
    I've reinstalled the entire Adobe CS4 (which fixed my Photoshop problem but created this Dreamweaver problem) and then reinstalled Dreamweaver alone.
    I've also attached a screenshot of the Dreamweaver directory tree with the menus.xml files.

  • Dreamweaver Installation Problem

    Hi
    I have started to download Dreamweaver and shortly after the serial no is accepted the message comes up to close Adobe Bridge CS5 ( Bridge.exe ) - I do not have Bridge open but can remember getting a similar message when I installed PS5 a couple of years ago. Unfortunately I did not note down the solution which was given to me at the time - I think this is also hindering me downloading Bridge updates.
    Can any one help ?
    Regards
    Martin 

    Thankyou - that worked. Just as a matter of interest why does the process show even if the application has been closed down ?
    Date: Thu, 29 Mar 2012 23:46:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: Dreamweaver Installation Problem
        Re: Dreamweaver Installation Problem
        created by Mylenium in Downloading, Installing, Setting Up - View the full discussion
    Task Manager --> Processes tab --> Bridge.exe --> right-click --> terminate Mylenium
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4301698#4301698
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4301698#4301698. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Record insertion problem and another question...

    I know I'm now php mysql expert so I am trying to use the
    insertion wizard and I can make the form and have it supposed to
    link to another page after its done inserting but when I run the
    page and fill in the details it inserts the record but does not
    goto the directed page and also shows the error:
    Warning: Cannot modify header information - headers already
    sent in C:\wamp\www\toursite\admin\users\add.php on line 56
    and on line 56 is:
    header(sprintf("Location: %s", $insertGoTo));
    Can anyone help me here?
    My second problem is not really a dreamweaver problem but it
    may be linked to it. Im using a server package called WAMP and
    pages that I can run will sometimes cause and error box to popup
    saying that Apache has caused error, the box that gives you the
    option of sending the report or not. Anyone know what the problem
    is here?
    If I have not given enough information to help please ask for
    more.
    Thanks
    Dan

    mondan wrote:
    > Warning: Cannot modify header information - headers
    already sent in
    > C:\wamp\www\toursite\admin\users\add.php on line 56
    > and on line 56 is:
    > header(sprintf("Location: %s", $insertGoTo));
    > Can anyone help me here?
    The headers already sent error is a common problem that
    baffles
    beginners. It's caused by some output being sent to the
    browser before a
    call to certain functions, such as header() or
    session_start(). You need
    to eliminate that output, and the problem will go away.
    Common causes of output are:
    * Blank space before the opening PHP tag
    * Blank space before the opening PHP tage or after the
    closing PHP tag
    of any include files
    * Use of echo or print anywhere before the call to the
    problem function
    * Error messages generated by PHP
    > Im using a server package called WAMP and pages that I
    can run will
    > sometimes cause and error box to popup saying that
    Apache has caused error, the
    > box that gives you the option of sending the report or
    not.
    None of the server packages are endorsed by PHP. Some are
    good, others
    not so good. It sounds as though you have a bad installation.
    Seek
    advice from the WAMP team or support forum if they have one.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • Flash Insertion Problem

    Alright, so my problem is this:
    I am trying to add a simple slide-show ---built in Flash--- to one of the pages on my site.  However, I am unable to see the content when I preview my site in DW, and furthermore, whenever I attempt to play the animation, while it is design view, DW completely crashes.  Although the slide-show does not play, whenever I preview the page, the Flash animation box flickers for a moment and disappears, and sometimes the site-default message will appear that I need Flash Player to view this content.  Ultimately,  am I mistaken, or is inserting a Flash object supposed to be a relatively easy task to perform.
    To answer in advance, I am using the SWF file-type, and I also have the appropriate Flash scripts within DW.  Additionally, the animation works fine when I use the Flash HTML preview.  So, what am I doing wrong? Is this a software, site design, or simple code error?
    Thanks
    P.S. I recently downloaded CS5.5 and some of the other programs have been acting very unstable (e.g. Bridge and Extension Manager), which is what has me thinking it could be an error within Dreamweaver. 

    It will be easier to help if you place the files on a server and provide a link.  One thing you should do is use the code that the Flash html page uses in the DW file rather than relying on DW to create the code, being sure to include any code relative to any supporting js file.
    If the slideshow is loading images dynamically, meaning they are not stored in the swf file, then that could be another factor for which you might have to adjust the swf code.

  • CS3 flash insertion problems

    I just upgraded to CS3. When I insert my swf file dreamweaver
    is only placing this in the code:
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="670" height="308" title="bob">
    <param name="movie" value="/homeMovie4.swf" />
    <param name="quality" value="high" />
    <embed src="/homeMovie4.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="670"
    height="308"></embed>
    </object>
    </body>
    </html>
    That's it! Thus when I upload to the server I don't get to
    see a flash movie. It worked fine in version 8 but 8 inserted
    additional code. PLEASE HELP....is there some option I don't have
    turned on?????
    Thanks
    Andy
    Text

    Are you sure you just aren't looking at all the code? When I
    follow your
    steps, I get this -
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','132','height','82','src','Flash/rollingsquare','quality','high','pluginspage','http:/ /www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','Fl ash/rollingsquare'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="132" height="82">
    <param name="movie" value="Flash/rollingsquare.swf" />
    <param name="quality" value="high" />
    <embed src="Flash/rollingsquare.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="132"
    height="82"></embed>
    </object></noscript>
    Note that *your* code IS there, but it's properly placed
    within <noscript>
    tags. Are you certain you do not have that?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "wwwlord" <[email protected]> wrote in
    message
    news:[email protected]...
    > Open DWCS3
    > My site is defined
    > File - New - blank page HTML
    > File save as whatever.htm
    > Click in the design window....cursor is in top left
    corner of the view
    > Insert - Media - Flash (first selection in the list)
    > Browse in my site to the swf file
    > The accessibility pop up shows up title in this case was
    bob
    > Flash object appears in the design view and code is
    written as it appears
    > in
    > my first post.
    >
    > I have 4 installs in my office none of which as this
    problem.
    > I have a client that installed DWCS3 earlier this week
    and is having the
    > identical problem.
    >
    > I have reinstalled and I have also tried to insert the
    media using the
    > Common
    > toolbar....same problem.
    >
    > Ideas????? I kinda need to be able to insert flash. I
    have not found any
    > forums or KB's that address this specific problem of not
    writing all the
    > code
    > needed.
    >
    > Any help is appreciated.
    >
    >

  • Dreamweaver CS4 problem: .swf banner

    Good Morning
    Im having a problem with an .swf banner that i have designed in flash and trying to get it to display on a website...
    In the past this has never been a problem... simply "Insert" > "Media" > "SWF".... and make sure the file is in the same folder etc......
    But since transferring over to CS4 the .swfs stopped working.... so as a quick fix we changed the banners to static images.... but this is not ideal.
    It shows the swf in dreamweaver when in design view and you click "PLAY" in the properties... however it doesn't work when published nor does it work in the "Preview" it simply shows a white box... doesn't even register there is a missing file or anything... even when you right click on the area, it does not come up with the flash player details...
    Can anyone offer any help on this issue?
    Everything that has been done is in design view.... i have no clue about scripts...
    Thank you very much in advance

    Thanks for your reply. I cant post a link as its an internal website so therefore user name is required :/ however i have copied teh source code to see if this is of any help.........
    Thanks again
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Homepage</title>
    <style type="text/css">
    <!--
    .style6 {
    font-family: Verdana;
    font-size: 10px;
    .style7 {
    font-family: Verdana;
    font-size: medium;
    .style9 {font-size: x-small}
    .style10 {font-size: xx-small}
    -->
    </style>
    <script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <div align="center">
    <table cellSpacing="0" cellPadding="0" width="764" bgColor="#ffffff" border="0">
      <tr>
       <td vAlign="top" align="left" width="764" colSpan="3" height="185"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="764" height="185" id="FlashID" title="home">
         <param name="movie" value="homesnow_effect.swf">
         <param name="quality" value="high">
         <param name="wmode" value="opaque">
         <param name="swfversion" value="6.0.65.0">
         <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
         <param name="expressinstall" value="../Scripts/expressInstall.swf">
         <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
         <!--[if !IE]>-->
         <object type="application/x-shockwave-flash" data="homesnow_effect.swf" width="764" height="185">
           <!--<![endif]-->
           <param name="quality" value="high">
           <param name="wmode" value="opaque">
           <param name="swfversion" value="6.0.65.0">
           <param name="expressinstall" value="../Scripts/expressInstall.swf">
           <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
           <div>
             <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
             <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
           <!--[if !IE]>-->
            </object>
         <!--<![endif]-->
          </object></td>

  • Dreamweaver cs5 problems and adobe support close the case on you

    I emailed Adobe support with the message below and they closed the case on me and told me to go over to the developers connection website and open a case there. Well of course there is no where to open a case there, it brings you back to the normal support pages, so I opened a case again!
    This is just one of the flaws in Cs5 I've found from intensive useage yesterday.
    1. Hangs for nearly 2 minutes if you use an external link to ny file like jquery in the header of the pages - detailed below
    2. Sometimes when selecting a related file it says "not on server" and actually tries to open ANOTHER ftp connection listed. It switches connection and then says"not on server" - well of course not....because it just changed to another server! However many time you change it back, it won't have it.
    3. The pop up css is a good idea but not well thought out. I have to right click to get inspect but when I roll over the areas it doesn't show the css in the css panel. If I right click and select to show the code, it shows me the css, I then have to click it to select it in the left column. All very long winded... WHY NOT JUST CLICK AN AEA ON THE LIVE VIEW PAGE AND IT SHOWS THE CSS THERE INSTANTLY TO EDIT?!
    4. On first open after a quit and relaunch, or restart, switching from normal view to live view hangs Dreamweaver for over a minute before live view is displayed.
    Very very buggy and I feel I have paid for a beta version.
    Hello I now have Dreamweaver CS5.
    It has MAJOR flaw.
    If a webpage contains the code
    <script type="text/javascript"
    src="http://code.jquery.com/jquery-1.4.2.min.js"></script>#
    It takes over 1 minute to open each page after launching
    This is caused by the 'related files' facility
    THIS IS TOTALLY UNACCEPTABLE in software which is this expensive.
    All design companies such as us use jquery.
    Please fix this flaw asap or supply me with a fix. Turning of related files
    helps but if I was to do that what would be the point in
    having that facility? (which I am paying for!)

    Hi,
    Appreciate your reply and accept what you say, I'll take on board the suggestions.
    My answers under yours below
    Second, the Bug Report form is here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform .  Technical support is not a bug reporting center, nor are they developers which is why they probably closed your case. And there really are not any questions in your support request it reads like a bug report and an angry one at that, not even starting out calm, shouting almost immediately.
    - Frustration, I've been up all night, hours messing with it.
    Thanks for the link, I'll post to that. I personally don't agree that bugs this big should be present in software of such high upgrade fee's and which should have been tested but I guess we all know its the way of the world now.
    1.  Why are you working with remote website files that are not part of your domain and not in your local site?  This is a bad practice to get in the habit of.  If their website shuts down, so does the functionality of yours.  Many here will argue that point.
    - This is a valid point I've come across before and reading up on it I found it was said that the site in question was on cloud servers, mirrored etc. The link I posted was from someone elses post who was having a similar problem. I personally use the flowplay/jquery main link which has ALL the jquery plugins/effects so whatever is used on that page works.
    http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js
    We did this as it seemed that was what everyone was doing, it seems I am wrong and I take on board your comments about downloading the file.
    2.  "Sometimes".  That is the key word in your statement.  Sometimes it happens, sometimes it doesn't.  What happens when it says "Sometimes not on server" and what happens in the other times.  What's different?  It's usually hard to believe it's random luck.  But developers in a bug report need to know these things.  What's different about the file(s)?  Is it with certain file(s), type(s), etc?  How would it open another FTP connection, do you have multiple FTP locations defined within one site definition?
    I probably used the wrong word in 'sometimes' - A better description would be "some of the related files". When live view is on the right and code on the left, related files across the top. If I hover my mouse over the files, it tells me where they are. This info is incorrect on 'some' of the files, not all of them but about 8 out of 10.
    It shows the file as being in the folder of another account in the site defs, but its not in there, it's in the one I'm working on (and which is live in the ftp file window). So if I click on the file to view it, it says its not available, and asks if I want to download it from the server. That doesn't work because it then tries to switch the ftp connection to the other site and download.
    I thought it was muddled so I removed all the ftp sites and set up just one, the one I was working on. But that didn't work... it then thinks the related files are in "unnamed site 1" - anywhere but looking in its own folder or on its own ftp server!
    4.  You seem to be referring to Question #1 here so that is answered.
    "Please fix this flaw asap or supply me with a fix." - So you are saying Please fix this flaw with a patch or give me the patch.  Again, this sounds like you want to file a bug report and not create a support request.
    - Accepted, you are right, its a bug report, just they directed me to the developer website and I kept ending up here, so began to believe this is where I should be posting.
    "All design companies such as us use jquery".  - While I wouldn't be so quick to say all, but rather most, I would say see my answer to #1.  Why make your site dependent on someone else's?
    - Accepted, I appreciate your honest comments and critism and fot taking the time to reply :-)

  • User defined field insertion problem in Stock Taking Report (PLD)

    We are creating one PLD for one of our customer for Stock Taking Report by modifying the existing sytem report. We will insert two user defined fields (Rack & Bin) from OITW table and link these with the warehouse code field which is at report header as there are different warehouse for the item and material is kept in different rank and bin in different warehouse. But after inserting these fields we found that repetative area becomes blank in the report.
    So please let us know how to overcome this problem.
    Thanks & with regards.
    Aloke
    Edited by: ALOKE BANDYOPADHYAY on Sep 4, 2010 4:42 PM

    Hi Aloke,
    This PLD is one of the hard coded PLD. You are not able to add UDF freely. I believe you may only add UDF from OITM table. Try you own report instead.
    Thanks,
    Gordon

  • Insert problem

    hi guys,
            i want to insert the data into sap r/3 table..via jco using bapi
             here is the program...., but data is not found in the sap table...
             any wrong in my program ?...
             they given some data to insert into sap table
             import parameters,table rows.... i shown in the below program.(exact information i set )
           IFunctionTemplate ftemplate = repository.getFunctionTemplate("ZHR_INFOTYPE_OPERATION");
               if(ftemplate != null) {
            // Create a function from the template
           JCO.Function function = ftemplate.getFunction();
           JCO.ParameterList paralist=function.getImportParameterList();
                             paralist.setValue("11","PERNR");
                             paralist.setValue("INS","ACTIO");
                             paralist.setValue("A","TCLAS");
                             paralist.setValue("20071213","BEGDA");
                             paralist.setValue("20071213","ENDDA");
                             paralist.setValue("1","OBJPS");
                             paralist.setValue("LTA","SUBTY");
                             client.execute(function);  //executing the function.
                       JCO.Table sales_orders = function.getTableParameterList().getTable("PROPOSED_VALUES");
                             sales_orders.appendRows(3);
                              System.out.println("after function"+sales_orders.getNumRows());
                             for(int i=0;i<sales_orders.getNumRows();i++)
                                     sales_orders.setValue("0582","INFTY");
                                     sales_orders.setValue("P0582-AMTEX","FNAME");
                                  sales_orders.setValue("200.00","FVAL");
                                  sales_orders.nextRow();
                                  sales_orders.setValue("0582","INFTY");
                                  sales_orders.setValue("P0582-JBGDT","FNAME");
                                  sales_orders.setValue("20071213","FVAL");
                                  sales_orders.nextRow();
                                  sales_orders.setValue("0582","INFTY");
                                  sales_orders.setValue("P0582-JENDT","FNAME");
                                  sales_orders.setValue("20071213","FVAL");
                        JCO.Table sales_orders1 = function.getTableParameterList().getTable("MODIFIED_KEYS");
                                 sales_orders1.setRow(1);
                                 sales_orders1.appendRow();
                               sales_orders1.setValue("11","PERNR");
                               sales_orders1.setValue("0582","INFTY");
                               sales_orders1.setValue("LTA","SUBTY");
                               sales_orders1.setValue("1","OBJPS");
                               sales_orders1.setValue("20071213","BEGDA");
                               sales_orders1.setValue("20071213","ENDDA");
                 System.out.println("modified"+sales_orders1.getNumRows());
                 System.out.println("modified"+sales_orders.getNumRows());
        OUTPUT: in my console it showing it appended...
                      but that record is not present in the sap r/3 table
                      when abapers are checking that record...

    hi,
    this is a custom functiion module  which is  a rfc
    here record is not inserting in the sap r/3 table
    what is the problem?
    i got the ouput like this......
    MODIFIED_KEYS
    PROPOSED_VALUES
    IMPORT         ACTIO
    IMPORT         BEGDA
    IMPORT         DIALOG_MODE
    IMPORT         ENDDA
    IMPORT         LUW_MODE
    IMPORT         MASSN
    IMPORT         NO_ENQUEUE
    IMPORT         NO_EXISTENCE_CHECK
    IMPORT         OBJPS
    IMPORT         PERNR
    IMPORT         PERSG
    IMPORT         PERSK
    IMPORT         PLANS
    IMPORT         SEQNR
    IMPORT         SPRPS
    IMPORT         SUBTY
    IMPORT         TCLAS
    IMPORT         WERKS
    EXPORT          HR_RETURN
    EXPORT          RETURN
    EXPORT          RETURN1
    NO OF ROWS ARE:---3
    THE COLUMNS IN THE TABLE ARE:--4
    INFTY:     0582
    FNAME:     P0582-AMTEX
    FVAL:     200.00
    SEQNR:     00
    INFTY:     0582
    FNAME:     P0582-JBGDT
    FVAL:     20061215
    SEQNR:     00
    INFTY:     0582
    FNAME:     P0582-JENDT
    FVAL:     20061215
    SEQNR:     00
    PERNR:     00000011
    INFTY:     0582
    SUBTY:     LTA
    OBJPS:     1
    SPRPS:     
    ENDDA:     2006-12-15
    BEGDA:     2006-12-15
    SEQNR:     000

  • Insert problem using a SELECT from table with a index by function TRUNC

    I came across this problem when trying to insert from a select statement, the select returns the correct results however when trying to insert the results into a table, the results differ. I have found a work around by forcing an order by on the select, but surely this is an Oracle bug as how can the select statements value differ from the insert?
    Platform: Windows Server 2008 R2
    Oracle 11.2.3 Enterprise edition
    (I have not tried to replicate this on other versions)
    Here are the scripts to create the two tables and source data:
    CREATE TABLE source_data
      ID                 NUMBER(2),
      COUNT_DATE       DATE
    CREATE INDEX IN_SOURCE_DATA ON SOURCE_DATA (TRUNC(count_date, 'MM'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120101', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120102', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120103', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120201', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120202', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120203', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120301', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120302', 'YYYYMMDD'));
    INSERT INTO source_data VALUES (1, TO_DATE('20120303', 'YYYYMMDD'));
    CREATE TABLE result_data
      ID                 NUMBER(2),
      COUNT_DATE       DATE
    );Now run the select statement:
    SELECT id, TRUNC(count_date, 'MM')
    FROM source_data
    GROUP BY id, TRUNC(count_date, 'MM')You should get the following:
    1     2012/02/01
    1     2012/03/01
    1     2012/01/01Now insert into the results table:
    INSERT INTO result_data
    SELECT id, TRUNC(count_date, 'MM')
    FROM source_data
    GROUP BY id, TRUNC(count_date, 'MM');Select from that table and you get:
    1     2012/03/01
    1     2012/03/01
    1     2012/03/01The most recent month is repeated for each row.
    Truncate your table and insert with the following statement and the results should now be correct:
    INSERT INTO result_data
    SELECT id, TRUNC(count_date, 'MM')
    FROM source_data
    GROUP BY id, TRUNC(count_date, 'MM')
    ORDER BY 1, 2;If anyone has encountered this behavior before could you please let me know, I can't see that I am making a mistake as the selects results are correct they should not differ from what is being inserted.
    Edited by: user11285442 on May 13, 2013 5:16 AM
    Edited by: user11285442 on May 13, 2013 6:15 AM

    Hi,
    welcome to the forum. I cannot reproduce the same behavior.
    Could you please post the SQLPlus output while executing all commands, like it has been done by S10390?
    Also post the output of the following command:
    SELECT * FROM v$version;When you put some code or output please enclose it between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Formatted code is easier to read.
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Report designer - inserting problem

    hi,
    we want to use report designer for formatting reports. When we insert
    query to report then following error occurs: internal error
    ID: E-CREATEFROMQUERY and message: reference to object is not set to
    instance of the object. When I go through this errors and execute
    this report to web I get this error: Web Item Report error: Tag "band"
    with name "footer1": Tag "keyfigure": Nested tag "y" must not
    be empty. Have you any solution for this problem?
    Thanx

    Hi,
    I mean frontend SP 12 (is already released). You can stay on your SPS in ABAP, Java. Frontend is compatible with older backend.
    Regards, Karol

  • An insert problem

    hi
    i am inserting in a table values like-----
    insert into tab1(col1) values(seq.nextval);
    my col1 of tab1 is of varchar2(20) datatype and seq is a sequence.
    now an error is coming
    PL/SQL: ORA-00984: column not allowed here
    why??

    does not look like any error here...
    14:14:07 SQL> CREATE TABLE tab1 (col1 VARCHAR2(20));
    Table created.
    Elapsed: 00:00:00.00
    14:14:20 SQL> CREATE SEQUENCE seq START WITH 1 INCREMENT BY 1;
    Sequence created.
    Elapsed: 00:00:00.00
    14:14:46 SQL> INSERT INTO tab1(col1) VALUES(seq.NEXTVAL);
    1 row created.
    Elapsed: 00:00:00.00
    14:15:06 SQL> SELECT * FROM tab1;
    COL1
    1
    Elapsed: 00:00:00.00
    14:15:13 SQL> INSERT INTO tab1(col1) VALUES(seq.NEXTVAL);
    1 row created.
    Elapsed: 00:00:00.00
    14:15:22 SQL> SELECT * FROM tab1;
    COL1
    1
    2
    Elapsed: 00:00:00.00can you give more details about your problem, desc of your table, name of the sequence etc...

Maybe you are looking for

  • Cost Component Splits

    Hello, We're using Special Procurement Keys in order to transfer cost estimates in a production plant to a DC.  These cost estimates currently all come over with a full cost component split.  For plants that do not belong to the same company, we don'

  • Download of Adobe Acrobat 6.0

    I am receiving an error message in downloading Adobe Acrobat 6.0 Mac version

  • Oracle Database on Demand (DoD)

    Dear Oracle Guru's: What is Oracle Database on Demand (DoD)? My understanding is that, it is the lingo used for Oracle Database over cloud. Please correct my understanding In either case i have following question on Oracle DoD 1) IS there any limitat

  • Using ABAP Function Modules

    ABAP Function Modules are available to Crystal Reports through the SAP Integration Kit. The look like tables when listing them in the Database Expert. How do you use them? Specifically, I am trying to use READ_TEXT to retrieve into a report the conte

  • @tec Car Chargers

    I bought one these car chargers.  It did not work so I sent it back to the retailer, who sent a replacement.  The replacement also doesn't work.  Nothing wrong with the 2 cars in which the charger was tried.  I also tried with an iPad, without succes