Document array has no properties

Why doesn't DW8 like document arrays assigned to variables?
Using the syntax,
formInput = document.getElementsByTagName("input")
Returns an error saying "formInput has no properties."
Here's the full example:
var dom = dw.getDocumentDOM();
// get the current document's SKU_Condition meta tag
var skuCondMeta = dom.getElementsByTagName("meta");
for ( counter = 0; counter < skuCondMeta.length;
counter++)
if (skuCondMeta[counter].name == "SKU_Condition") // so far
so good
// get dom of the extension html form and assign the sku
cond to the input field value
/* why doesn't this code work?
var formInput = document.getElementsByTagName("input");
for ( iter = 0; iter < formInput.length; iter++)
if (formInput[iter].name == "sku_cond")
formInput[iter].value = skuCondMeta[counter].content;
/* instead, I have to do this */
for ( iter = 0; iter <
document.getElementsByTagName("input").length; iter++)
if (document.getElementsByTagName("input")[iter].name ==
"sku_cond")
document.getElementsByTagName("input")[iter].value =
skuCondMeta[counter].content;
Thanks for the help!
-Scott

I'm trying to use a calendar in my jsp pages. The code
of that calendar is in a js file and is writen in
JavaScript. I call the function from a html tag:
<input type="text" name="date" id="date">
Click
here to enter a date
In the js file there is a function
show_calendar(textfieldname, dir)
and lines
var txtboxObj = textfieldname;
and
document.getElementById(txtboxObj).value =
getdate(d,m,y);
My problem now is that when I use Netscape 7.01 the
calendar is not passing data to the input field in the
parent window and I get the message:
Error: document.getElementById(txtboxObj) has no
properties
In IE it is working with no problems.Obviously a JS problem. Go to a Javascript forum. You will be more likely to find people who know.

Similar Messages

  • Document.forms.j_id_id19['jsfcrud.currentVhtyp'] has no properties

    I am getting the below error when i click to edit an object in the jsf crud table.
    document.forms.j_id_id19['jsfcrud.currentVhtyp'] has no properties

    I am using netbeans with glassfish
    Product Version: NetBeans IDE 6.1 (Build 200805300101)
    Java: 1.6.0_06; Java HotSpot(TM) Client VM 10.0-b22
    System: Windows XP version 5.1 running on x86; Cp1252; en_GB (nb)
    the application when constructed through the wizard worked ok adding entity classes from database and then jsf pages from entity classes.
    after adding jsf bean session managed and adding handling code for creating a login form it has now started giving the error mentioned earlier
    document.forms.j_id_id19['jsfcrud.currentVhtyp'] has no properties
    JSF version 1.2_04
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 1.5.0_14-b03 (Sun Microsystems Inc.)
    Edited by: jazzman2 on Jul 4, 2008 12:26 AM

  • TypeError: document.getElementById("cf_debug") has no properties

    Anyone have any idea what this might mean?
    TypeError: document.getElementById("cf_debug") has no
    properties
    I was running attempting to use the Spry.Effect.AppearFade
    and that popped up.
    Thanks.

    Hmmmm. I transferred to the production box and all is
    working.
    Stupid question, because I didn't read all the documentation,
    however does requests such as
    http://test.p.org/myfile.cfm
    cause spry to break down? Does the test. or any prefix cause
    problems for spry?

  • Opener.document.forms.wwv_flow.supplier has no properties

    I'm trying to pass a value from a Popup page to a multi-row report (tabular form).
    and I'm getting the error, which you can read in my subject line of this posting.
    I don't know what the error is telling me when it reads: SUPPLIER has no properties.
    the javascript is as follows:
    opener.document.forms["wwv_flow"].supplier['f01_0008'].value = passVal1; close()...
    where SUPPLIER is the item in the Tabular Form to receive the value I'm passing back from the popup page.
    and
    f01_0008 is the identifier for the row in the tabular form to passback to.
    Can anyone help me here?

    Hi Carl. Thanks for your reply. I'm really floundering around here with this.
    I don't really know how to write javascript, but am using what I find available and trying to adapt it to my application.
    I found an example in the forum that seemed to be an exact match to what I was trying to do, but it was incomplete.
    This is the code that I've got in the HTML header of my Popup page:
    <script language="JavaScript">
    function passBack(passItem1, passVal1)
    opener.document.forms["wwv_flow"].supplier['&P143_ITEM.'].value = passVal1; close();
    </script>
    P143_ITEM is a hidden item on the popup page that contains the rownumber from the tabular form on the calling page.
    SUPPLIER is a column in the row of the calling page.
    And is where I want to pass the value To from the popup page.
    When I drag my cursor over the hyperlink text on the Popup page,
    Then the information I see at the bottom of the page is this:
    javascript:passBack('f01_0006','Graybar Electric Co.');
    It appears to be correct.
    Where F01_0006 is the row where I want to pass the value GRAYBAR ELECTRIC CO.
    The problem seems to be that I cannot specify the Column where I want to pass
    'Graybar Electric Co.' to. (ie: the column SUPPLIER)
    If you have any ideas, it would be greatly! appreciated.
    Thanks- Gary

  • Javascript: 'has no properties' error

    Stumped by javascript once again. Can anyone see why I'm
    getting a 'mybuton
    has no properties' error in this script:
    javascript:
    var mybutton = document.getElementById('lnkBtn_delete');
    var oldonclickfunction = mybutton.onClick; //old postback
    method
    mybutton.onClick=function() {
    if(confirm('Are you sure you want to delete this record?'))
    {oldonclickfunction();}
    else{ return false;}
    HTML:
    <a id="lnkBtn_delete"
    href="javascript:__doPostBack('lnkBtn_delete','')">
    <img
    src="/assets/admin_interfaces/assets/icon_dbDelete.gif"
    border="0">Delete This Bio
    </a>
    I'm hoping this is just a javascript issue, but do note that
    this is an
    ASP.net app as well, so, it might have to do with the
    postback function as
    well.
    -Darrel

    darrel wrote:
    > Stumped by javascript once again. Can anyone see why I'm
    getting a 'mybuton
    > has no properties' error in this script:
    "mybuton", typo?
    >
    > javascript:
    >
    > var mybutton = document.getElementById('lnkBtn_delete');
    > var oldonclickfunction = mybutton.onClick; //old
    postback method
    > mybutton.onClick=function() {
    > if(confirm('Are you sure you want to delete this
    record?'))
    > {oldonclickfunction();}
    > else{ return false;}
    > }
    What are you trying to do here?
    mybutton doesn't exist until 'lnkBtn_delete' is loaded onto
    the page.
    __doPostBack(), function definition?
    You have a URL?
    Mick
    >
    > HTML:
    >
    > <a id="lnkBtn_delete"
    href="javascript:__doPostBack('lnkBtn_delete','')">
    > <img
    src="/assets/admin_interfaces/assets/icon_dbDelete.gif"
    > border="0">Delete This Bio
    > </a>
    >
    > I'm hoping this is just a javascript issue, but do note
    that this is an
    > ASP.net app as well, so, it might have to do with the
    postback function as
    > well.
    >
    > -Darrel
    >
    >

  • FABridge.flash has no properties

    I'm in the process of building a controller swf application
    that I can embed in html type applications (like jsf) and then use
    the controller to communicate between a flex application and
    "launched" jsf applications. I'm using the FABridge to
    facilitate the comunication betweem the html based
    application and the swf controller.
    All appears to work fine the first time, but on subsquent
    invocations I get a type error : FABridge.flash has no properties.
    This happens in firefox and Internet Explorer.
    Here's the chain of events:
    1) Start by Flex launcher applicaton
    2) Launch a simple htmp app that has my swfcontroller
    embedded in it.
    3) the swf controller initializes and fetches login
    credentials from the Launcher in step1.
    4) the simple htmp app displays the login credentials.
    5) I close the htmp page launched in step 2
    6) Launch again, get the tyype error: FABridge.flash has no
    properties
    Any help would be appreciated.
    Thanks
    Jim Kohn

    I have similar experience. Not sure how is the bridge object
    created/initialized. I tried something like this in the mxml:
    <fab:FABridge xmlns:fab="bridge.*" bridgeName="myBridge"
    />
    and this failed as well:
    var flexApp = FABridge.myBridge.root();
    The Javascript exception appears to indicate that the bridge
    object was not initialized.
    Any help from the community to resolve this is highly
    appreciated. Thanks.
    FYI, am using the IE6 + Flash Player 9. Had similar issue
    with Firefox 2.0.0.1.
    Thanks.
    FYI, this is the full HTML:
    <!-- saved from url=(0014)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title></title>
    <script src="AC_OETags.js"
    language="javascript"></script>
    <style>
    body { margin: 0px; overflow:hidden }
    </style>
    <script language="JavaScript" type="text/javascript"
    src="bridge/FABridge.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 9;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // -->
    var flexApp = FABridge.myBridge.root();
    var chart = flexApp.getPanel().getChildByName("chart");
    var dp = [];
    for(var i=0; i < 30; i++) {
    dp.push( {apples: Math.random()*100, oranges:
    Math.random()*100} );
    chart.setDataProvider(dp);
    </script>
    </head>
    <body scroll="no">
    <script language="JavaScript" type="text/javascript"
    src="history.js"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to
    start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values defined in globals
    var hasRequestedVersion =
    DetectFlashVer(requiredMajorVersion, requiredMinorVersion,
    requiredRevision);
    // Check to see if a player with Flash Product Install is
    available and the version does not meet the requirements for
    playback
    if ( hasProductInstall && !hasRequestedVersion ) {
    // MMdoctitle is the stored document.title value used by the
    installation process to close the window that started the process
    // This is necessary in order to close browser windows that
    are still utilizing the older version of the player after
    installation has completed
    // DO NOT MODIFY THE FOLLOWING FOUR LINES
    // Location visited after installation is complete if
    installation is required
    var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
    var MMredirectURL = window.location;
    document.title = document.title.slice(0, 47) + " - Flash
    Player Installation";
    var MMdoctitle = document.title;
    AC_FL_RunContent(
    "src", "playerProductInstall",
    "FlashVars",
    "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"" ,
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "testPrj1",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "testPrj1",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.adobe.com/go/getflashplayer"
    } else if (hasRequestedVersion) {
    // if we've detected an acceptable version
    // embed the Flash Content SWF when all tests are passed
    AC_FL_RunContent(
    "src", "testPrj1",
    "width", "100%",
    "height", "100%",
    "align", "middle",
    "id", "testPrj1",
    "quality", "high",
    "bgcolor", "#869ca7",
    "name", "testPrj1",
    "flashvars",'historyUrl=history.htm%3F&lconid=' + lc_id
    + '%3F&bridgeName=myBridge'+'',
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    "pluginspage", "
    http://www.adobe.com/go/getflashplayer"
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be
    placed here. '
    + 'This content requires the Adobe Flash Player. '
    + '<a href=http://www.adobe.com/go/getflash/>Get
    Flash</a>';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    id="testPrj1" width="100%" height="100%"
    codebase="
    http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
    <param name="movie" value="testPrj1.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#869ca7" />
    <param name="flashvars" value="bridgeName=myBridge"/>
    <param name="allowScriptAccess" value="sameDomain" />
    <embed src="testPrj1.swf" quality="high"
    bgcolor="#869ca7"
    width="100%" height="100%" name="testPrj1" align="middle"
    play="true"
    loop="false"
    quality="high"
    allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.adobe.com/go/getflashplayer">
    </embed>
    </object>
    </noscript>
    <iframe name="_history" src="history.htm" frameborder="0"
    scrolling="no" width="22" height="0"></iframe>
    </body>
    </html>

  • GetData(): rows has no properties

    Hello,
    I've got the following code:
    function Update(id) {
    var observer = new Object;
    var rows = null;
    var chat = new
    Spry.Data.XMLDataSet("/xmldataset.php?liste=x&id=" + id,
    "/data/field", {useCache:false});
    observer.onDataChanged = function(dataSet, data) {
    rows = chat.getData();
    chat.addObserver(observer);
    chat.loadData();
    for (i = 0; i < rows.length; i++) {
    document.GetElementById('xyz').innerHtml += '<span>' +
    rows
    ['field'] + '</span><br />';
    but I alway get the error:
    rows has no properties (for (i = 0; i < rows.length;
    i++)). What wrong? Thanks for your help

    I was having problems with this and I need to add an observer
    to the data set to call getData once the data is loaded. Try this:
    var chat = null;
    var rows = null;
    function Update(id)
    chat = new
    Spry.Data.XMLDataSet("/xmldataset.php?liste=x&id=" + id,
    "/data/field", {useCache:false});
    chat.addObserver(isDataLoaded);
    chat.loadData();
    function isDataLoaded(notificationType, dataSet, data)
    if (notificationType == 'onPostLoad')
    rows = chat.getData();
    showData();
    else if (notificationType == 'onLoadError')
    alert('Error loading data.');
    function showData()
    for (i=0;i<rows.length;i++)
    document.GetElementById('xyz').innerHtml += '<span>' +
    rows
    .field + '</span><br />';

  • TypeError: menuFn.match(searchPatt) has no properties

    When I insert a Fireworks .jsp file into my Dreamweaver
    document, I get an error message:
    'While executing onClick in Fireworks HTML.htm, the following
    JavaScript error(s) occurred:
    At line 438 of file "F:\Program Files\Macromedia\Dreamweaver
    MX 2004\Configuration\Shared\MM\Scripts\insertFireworksHTML.js":
    TypeError: menuFn.match(searchPatt) has no properties'
    What's going on?

    [email protected] wrote:
    > 'While executing onClick in Fireworks HTML.htm, the
    following JavaScript
    > error(s) occurred:
    Try troubleshooting step 4 here:
    http://www.adobe.com/go/tn_19105
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • ActiveDocument has no properties

    Hello all,
    I have a conundrum that I've run into a road block with.
    I have a bqy that was originally created without a dashboard. Then one of our contractors created a round tab dashboard via the DS. And a follow-up contractor modified the code manually since he wasn't comfortable with the studio.
    I had to "start over" from the original bqy without a dashboard. I successfully did that. And uploaded and ran the file as a job on the workspace. It process completely but when it attempts to finish it fails. And it processes in the IR client perfectly. But now I'm noticing that when it's saved, "Script(1):ActiveDocument has no properties" is written to the console.
    The conundrum is that 1) this doesn't happen when the/a first bqy is open and then closed after any modification; 2) this doesn't happen if we choose "No" when prompted to save, only in the last eighth of a second after choosing yes, prior to close; 3) this doesn't happen for files which do not have dashboards (of course).
    To test the latter, I also saved an unchanged copy of the "Sample_fr_esm.bqy" and closed it. Same console write. So I would presume that rules out any coding created during the rebuild of the prior document.
    Has anyone experienced this before? Does anyone have any idea what's happening? And more importantly, the prescribed solution.

    I believe that I may be "on it's trail". The error, that is...
    I opened the custom file and exported the script. All seemed fine.
    So I back tracked through the events and once again deleted all code in each. Confirmed, same result.
    But one thing that I noticed was that both, the custom dashboard and the sample file provided with the install [Sample_ja_esm.bqy and other languages], all had script which pointed to the "Home" section on open. So I checked the OnActivate for that section. When I saved the file with the OnDeactivate script [ActiveDocument.Qiq_clsGlobals.Qiq_base_Frame_OnDeActivate(this)], commented out.
    The previous console write with the ActiveDocument error did not appear.
    I see "Qiq_clsGlobals" in the tree. But not "Qiq_base_Frame"
    It seems like this is part of the template's creation.
    The OnActivate code is [if (ActiveDocument.Qiq_blnTemplateInitialized){ ActiveDocument.Qiq_clsGlobals.Qiq_base_Frame_OnActivate(this)}
    Does anyone have any ideas or whether this code is needed in for debugging or further scripting?
    Thanks

  • Evt has no properties

    hello all,
    I got error when I put JSP file to portal component.  It works in Tomcat.
    The client side error is,
    evt has no properties
    http://localhost:50100/irj/portalapps/com.sap.portal.epcf.loader/script/optimize/js13_epcf.js?6.45000702   Line 1418
    Thanks!
    James

    FireFox only recognizes the evt from window, while IE only recognizes evt from document. I guess you are trying to do something with the <b>document</b> in your script which does not work in FireFox. Try changing it.
    Hope it Helps
    Sudhir
    Reward with points if useful.

  • PNd has no properties

    I'm attempting to implement a search mechanism that shows/hides 3 different search criteria items in my search region of the page. There is one text field item and 2 checkbox items. I have another checkbox that is supposed to show or hide each of the criteria fields - which almost works.
    I'm using Carl Backstrom's js extension library (htmldb_remix.js), which has some show/hide functions in it. When I check the show/hide checkbox for the text field item it obeys quite nicely. However, when I click the boxes to show/hide the checkbox items I get a javascript error: "pNd has no properties" and Firefox shows me that the error is occuring here:
    function html_ToggleElement(pNd){
         if(pNd.constructor == Array){
    I created the following function in my page:
    function showHideFilter(p_item){
    switch (p_item.value) {
    case 'BD':
    html_ToggleItemRow('P2_SRCH_BUDGET'); break;
    case 'PM':
    html_ToggleItemRow('P2_SRCH_NAME'); break;
    case 'PR':
    html_ToggleItemRow('P2_SRCH_PRIORITY'); break;
    default : break;
    And I call it like this from my show/hide checkbox:
    onchange="javascript:showHideFilter(this);"
    Anyone have any idea if this will actually work with checkbox items? If so, can anyone see what I might be doing wrong?
    Earl

    Hello,
    So it happening is checkboxs get appended with a underscore number because there can be multiple ones so you just need to change the code to make sure to grab the _0 one since that should always be avaialbe
    so heres your new js code
    &lt;script type="text/javascript">
    function showHideFilter(p_item){
    switch (p_item.value) {
    case 'BD':
    html_ToggleItemRow('P2_SRCH_BUDGET'); break;
    case 'PM':
    html_ToggleItemRow('P2_SRCH_NAME_0'); break; /* checkbox */
    case 'PR':
    html_ToggleItemRow('P2_SRCH_PRIORITY_0'); break; /*checkbox*/
    default : break;
    &lt;/script>
    and I applied to your page
    http://htmldb.oracle.com/pls/otn/f?p=39978:2
    Carl

  • Job Monitor Widget: TypeError: jobTableList.item(0) has no properties

    I have tried to implement the Job Monitor widget.  I followed the blog instructions and also I changed the main.js with the RFC name ZBP_JOB_SELECT_SM37B.
    I am getting the following error:
    TypeError: jobTableList.item(0) has no properties (Global/onLoad:Logics/main.js: Line 157)

    the soap message has to be in this format.
    <?xml version="1.0" encoding="utf-16"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <soap:Body>
        <ZBP_JOB_SELECT_SM37B xmlns="urn:sap-com:document:sap:rfc:functions">
          <ENDDATE />
          <ENDTIME />
          <JOBSELECT_DIALOG />
          <JOBSELECT_JOBLIST>
            <item>
              <JOBNAME />
              <JOBCOUNT />
              <JOBGROUP />
              <INTREPORT />
              <SDLSTRTDT />
              <SDLSTRTTM />
              <BTCSYSTEM />
              <SDLDATE />
              <SDLTIME />
              <SDLUNAME />
              <LASTCHDATE />
              <LASTCHTIME />
              <LASTCHNAME />
              <RELDATE />
              <RELTIME />
              <RELUNAME />
              <STRTDATE />
              <STRTTIME />
              <ENDDATE />
              <ENDTIME />
              <PRDMINS />
              <PRDHOURS />
              <PRDDAYS />
              <PRDWEEKS />
              <PRDMONTHS />
              <PERIODIC />
              <DELANFREP />
              <EMERGMODE />
              <STATUS />
              <NEWFLAG />
              <AUTHCKNAM />
              <AUTHCKMAN />
              <JOBLOG />
              <LASTSTRTDT />
              <LASTSTRTTM />
              <EVENTID />
              <EVENTPARM />
              <BTCSYSREAX />
              <JOBCLASS />
              <EVENTCOUNT />
              <CHECKSTAT />
              <CALENDARID />
              <PRDBEHAV />
              <EXECSERVER />
              <REAXSERVER />
              <RECLOGSYS />
              <RECOBJTYPE />
              <RECOBJKEY />
              <RECDESCRIB />
              <TGTSRVGRP />
            </item>
          </JOBSELECT_JOBLIST>
          <JOBSELECT_JOBLIST_B>
            <item>
              <JOBNAME />
              <JOBCOUNT />
              <JOBGROUP />
              <INTREPORT />
              <SDLSTRTDT />
              <SDLSTRTTM />
              <BTCSYSTEM />
              <SDLDATE />
              <SDLTIME />
              <SDLUNAME />
              <LASTCHDATE />
              <LASTCHTIME />
              <LASTCHNAME />
              <RELDATE />
              <RELTIME />
              <RELUNAME />
              <STRTDATE />
              <STRTTIME />
              <ENDDATE />
              <ENDTIME />
              <PRDMINS />
              <PRDHOURS />
              <PRDDAYS />
              <PRDWEEKS />
              <PRDMONTHS />
              <PERIODIC />
              <DELANFREP />
              <EMERGMODE />
              <STATUS />
              <NEWFLAG />
              <AUTHCKNAM />
              <AUTHCKMAN />
              <JOBLOG />
              <LASTSTRTDT />
              <LASTSTRTTM />
              <EVENTID />
              <EVENTPARM />
              <BTCSYSREAX />
              <JOBCLASS />
              <EVENTCOUNT />
              <CHECKSTAT />
              <CALENDARID />
              <PRDBEHAV />
              <EXECSERVER />
              <REAXSERVER />
              <RECLOGSYS />
              <RECOBJTYPE />
              <RECOBJKEY />
              <RECDESCRIB />
              <TGTSRVGRP />
              <PROGNAME />
              <XPGPROG />
              <EXTCMD />
            </item>
          </JOBSELECT_JOBLIST_B>
          <JOBSEL_PARAM_IN>
            <JOBNAME />
            <JOBCOUNT />
            <JOBGROUP />
            <USERNAME />
            <FROM_DATE />
            <FROM_TIME />
            <TO_DATE />
            <TO_TIME />
            <NO_DATE />
            <WITH_PRED />
            <EVENTID />
            <EVENTPARM />
            <PRELIM />
            <SCHEDUL />
            <READY />
            <RUNNING />
            <FINISHED />
            <ABORTED />
            <ABAPNAME />
          </JOBSEL_PARAM_IN>
        </ZBP_JOB_SELECT_SM37B>
      </soap:Body>
    </soap:Envelope>
    Regards
    Raja

  • How can I print in black/white only a document that has colors in the original?

    How can I print in black/white only a document that has colors in its original. I don't need the print out to be in color, and I don't want to waste the color ink.

    It depends on your printer and the application you are using.
    In some applications you can choose color vs. greyscale/black&white when you do File > Print.   PowerPoint is one example of an application that allows this choice.
    Otherwise, you can usually select greyscale at the time you print the document.  Do File > Print. In the resulting dialog box, there should be an item called Copies & Pages (in Word and other applications) or Preview (in Preview).  Click it.  In the resulting list, you should then see an option called Printer Features.  Click it.  Then you should see an option called Printout Mode.  Usually one of the modes is Greyscale or Black & White.  Select it.  Then Print.
    This can also depend on your printer.  Exactly what make/model printer are you using?   And what kind of document are you trying to print (Word, PPT, JPEG, etc)?

  • Payroll to FI posting error message - Document Transfer has Failed

    Hello experts,
    We recently received the following error message when posting Payroll results to FI. This was not done using any process models.
    'Document Transfer has Failed'
    Does anyone know why it's coming up and more importantly, how to correct it?  I looked and found an SNote: 1240870 but that seems to apply to 3PR issues not FI posting.
    Anyone else had this error before?  How do I correct this?  Please help as this error needs to be corrected as soon as possible since FI will be closing the month of November soon.
    Thanks,
    Suparna

    Hi,
    http://help.sap.com/saphelp_dimp50/helpdata/en/81/42b1884a3711d189490000e8323c4f/content.htm
       The posting run has the status Document transfer has failed. Posting to Accounting did not take place.
    Depending on the error that occurred, it may be a good idea to start posting this posting run once again. If the error still occurs and it is not possible to post the posting run, you must delete the posting run and create a new one.
    Thanks
    Umakanth

  • ECC 50 DI Installation error-FJS-00003  TypeError: f has no properties

    Dear Experts,
    Earlier we had local installtion of ECC50 (DEV/TEST and PRD-CI) with SQL2000 DB, WIN2K3 EE OS.
    We want to install one new application server i.e. PRD-Dialog Instance, so we have kept all the systems on domain (changed from Local to Domain).
    We performed below activities to put all systems on same Domain.
    1. Down the systems
    2. Changed Domain
    3. Created SAP users SAP<sid> and sapservice<sid> on DC with Global&local admin rights
    4. Changed owner of both SAP services with newly created domain SAP user SAPSERVICE<sid>
    5. Updated Host file entries
    6. started Servers with Domain user <sid>adm , it is up and running.
    Now we logged in with new application server with <sid>adm domain user and started Dialog instance installation thru sapinst.
    After inserting installation drive, in next step it throws below error.
    INFO[E] 2008-01-28 16:07:16
    File system export (share) saploc does not exist.
    ERROR 2008-01-28 16:07:21
    FJS-00003  TypeError: f has no properties (in script InstallationScript_159, line 9500: ???)
    Please revert back with valuable inputs.
    Is there any steps missing to perform?
    Regards,
    Rakesh.

    Hello Manoj,
    Thank for your reply. I have installed JDK 1.4.2_12 version with JAVA_HOME env rightly set in the path as without which, i wouldnt have even gotten the installation master screen(Gui).
    Any other workaround do u see?

Maybe you are looking for

  • How to find all query elements inside a Query

    Hi, I would like to find out all query elements inside my query. Is there any table which stores all query elements inside my query ? Thanks Pratyush

  • Problem in creating ear file using weblogic 10....Pls help

    Hi, part of build.batwhere error occure:: @echo off echo. echo -------------Hub 2.0 Core Build System------------- echo. echo. @set JAVA_HOME=C:\Program Files\Java\jdk1.5.0_13 set JAVA_HOME=C:\Program Files\Java\jdk1.5.0_13 set PATH=C:\Program Files\

  • How to Raise Alerts from the fields of Mapping?

    HI, We had a very typical requirement for our client. Scenarios is IDOC to multiple files else consider a simple file to file scenario. Source structure contains some 5 fields and the target also remains the same 5 fields. Assume SERNO presents in bo

  • JDev - how to send a email notification

    Hi, I am working with ADF Framework, JSP, and Toplink. How do I send an email on a specific date? The email address and the date to send the email will be in a DB column. I think that I should compare the date in the DB column with the System date, a

  • Non-cumulative extrator

    Has created own extractor on the basis of the functional module Where to specify, that an extractor for run Non-cumulative values