Update was terminated - Class PO - Number 366 - Device ARCH does not exist

Dear Gurus,
We are using Automatic PO generation through ME59, we also applied one SAP note to pick the custom document type through ME59 (normally the system pick NB as standard document)
In  MN05 - if i set as default output type 1 - print ( then the document is generating with the correct document with correct number range)
But if i set in MN05 - default output as 2 - fax ( then i am getting this Update was terminated - Class PO - Number 366 - Device ARCH does not exist).
Please advice
Regards
RS

Dear Friend,
Output determination for fax is not done properly. check the device connnectivity.
SPRo>>Maintain Message type of PO
For the particular document type - i have removed the default PO Print out settings - now its working fine. Is this the right way?
Please advice
RS

Similar Messages

  • SOLVED: Mounting IDE ZIP Drives, "Special Device hdb4 Does Not Exist"

    I thought I would post a follow-up, since I have finally resolved this long standing issue, which has plagued me since my first days with Linux many years ago.
    As outlined in my original post below, every time I would attempt to access a Zip disk for the first time since boot, Linux (pretty much all distros I have ever tried, with the exception of SuSE 9.3) would fail to mount the disk and report back that "Special device hdb4 does not exist". Of course the "hdb4" part varies from distro to distro and machine to machine, depending on how your Zip disk is connected and how the distro names its disks, but the basic error has been constant. I have always worked around it by redoing the mount command specifying just the device, not the partition, and while that would always fail, it would force the creation of the device /dev/hdb4, and I could carry on. Annoying but effective.
    FINALLY, a long term answer. I got my inspiration from a really snarky post I read in another online forum where someone had posted this very same question (this is a very common problem with no common answer it seems!). The respondant, who completely failed to provide a helpful answer, basically said "listen, the OS is telling you what is wrong - the device hdb4 doesn't exist - so fix it, and all will be just fine". Of course, the respondant didn't even bother to offer a suggestion about HOW to fix it.
    However, therein lies the inspiration for the solution. Indeed they are right, /dev/hdb4 *doesn't* exist, so how to fix that? They had a point. I started researching the mysteries of mknod, a program that can create /dev files, and the even deeper mysteries of Linux device numbers, both major and minor.
    In the end, I found a wonderfully informative document that described the current standard for the device numbering scheme used by mknod, and Linux in general. The key things of interest are this:
    1/ The major number for IDE based drives is 3.
    2/ IDE allows for 64 partitions per device, so the minor numbers are 0-63 for device "a", 64-127 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, hdb4 would have a minor number of 64 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 68.
    3/ The major number for SCSI based drives, or those that your OS treats as SCSI, is 8.
    4/ SCSI allows for 16 partitions per device, so the minor numbers are 0-15 for device "a", 16-31 for device "b" and so on. You derive the minor number of interest for your particular device by taking the starting value of the minor number range of interest for your device and adding the partition number to it. So, for example, sdb4 would have a minor number of 16 (the start of the minor number range for device "b") plus 4 (the partition number in "hdb4"), yielding a result of 20.
    In my case, Arch seems to be treating all of my disk based devices as SCSI, perhaps because I do have a real SCSI interfaced Jaz drive in my machine. So, the Zip disk of interest in my machine is sdc4 (my real SCSI jaz is sda, my Arch root is sdb, and the IDE Zip is sdc). Applying the above, for /dev/sdc4:
    - The major number is 8.
    - The minor number is 32 (start of range for device "c") plus 4 (the partition number) = 36.
    Armed with this knowledge, I su'd to root and entered:
    # mknod /dev/sdc4 b 8 36
    and like magic, there is was, /dev/sdc4. I popped a disk into the drive and my first attempt to access it was greeted with success, not the usual "device does not exist" error! By the way, the "b" in the above command is just part of the mknod syntax, and indicates that I am creating a block device (vs. a character device, or some other type of device - disk drives all seem to be "block" devices for apparent reasons).
    SO, determine your major number by device type (it will usually be 3 or 8), compute your minor number by device letter and partition number, and add a mknod command to your system startup (so you don't have to do it manually every time) and you are done! No more annoying "device does not exist" errors.
    Now for the kicker. It turns out that this information has been available under my nose all along. I just didn't recognize the code. If you do the following:
    # ls -ald /dev/sd*
    Linux obligingly provides you with the major number and the start of the minor number range for your device. Since Linux has always detected the Zip *device* (just not the partition) this is really all you need to know. When I issue the above command, I get an output like:
    brw-rw----  1  root  disk  8,   32   date   time   /dev/sdc
    Guess what, there they are! "8" is the major number of interest, "32" is the start of the minor number range of interest. If I had just recognized that, and known that all I had to do was add the partition number to the minor number to get the magic number to feed into mknod, things would have been easier.
    Sorry for the long post, but like so many things in Linux, the OS doesn't make this easy on the uninitiated. I sincerely hope that this post may help lots of other people to resolve this vexing and longstanding problem.

    Solved!
    See the lengthy response in this post:
    http://bbs.archlinux.org/viewtopic.php?id=36468
    I posted the solution separately, with the most informative title I could come up with, so that others Googling this topic on the web may hopefully easily find it.

  • ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist

    Hi ,
    We are getting below error while executing webservice from PL/SQL block. Please help what would be wrong in below code. Thanks in advance.
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 318
    ORA-06512: at "FUSION.ADD_NUMBERS", line 21
    29540. 00000 - "class %s does not exist"
    *Cause:    Java method execution failed to find a class with the indicated name.
    *Action:   Correct the name or add the missing Java class.
    PL/SQL Code
    CREATE OR REPLACE FUNCTION add_numbers (username IN VARCHAR, password IN VARCHAR)
    RETURN NUMBER
    AS
    l_service SYS.UTL_DBWS.service;
    l_call SYS.UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname SYS.UTL_DBWS.qname;
    l_port_qname SYS.UTL_DBWS.qname;
    l_operation_qname SYS.UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    returnVal BOOLEAN;
    boolean_type_qname sys.utl_dbws.QNAME;
    string_type_qname sys.utl_dbws.QNAME;
    BEGIN
    sys.UTL_DBWS.SET_PROPERTY(l_call,'USERNAME','fusion');
    sys.UTL_DBWS.SET_PROPERTY(l_call,'PASSWORD','fusion');
    l_wsdl_url := 'http://adcdab06.us.oracle.com:10217/xmlpserver/services/PublicReportWSSService?wsdl';
    l_namespace := 'http://xmlns.oracle.com/oxp/service/PublicReportService/';
    l_service_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'PublicReportWSSServiceService');
    l_port_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'PublicReportWSSService');
    l_operation_qname := SYS.UTL_DBWS.to_qname(l_namespace, 'validateLogin');
    l_service := SYS.UTL_DBWS.create_service (URIFACTORY.getURI(l_wsdl_url),l_service_qname);
    l_call := SYS.UTL_DBWS.create_call (l_service,l_port_qname,l_operation_qname);
    sys.utl_dbws.set_target_endpoint_address(l_call, 'http://adcdab06.us.oracle.com:10217/xmlpserver/services/PublicReportWSSService');
    boolean_type_qname :=sys.utl_dbws.to_qname ('http://www.w3.org/2001/XMLSchema', 'boolean');
    string_type_qname :=sys.utl_dbws.to_qname ('http://www.w3.org/2001/XMLSchema', 'string');
    sys.utl_dbws.add_parameter(l_call, 'BI_Admin', string_type_qname, 'ParameterMode.IN');
    sys.utl_dbws.add_parameter(l_call, 'Welcome1', string_type_qname, 'ParameterMode.IN');
    -- sys.utl_dbws.add_parameter (l_call,returnVal,boolean_type_qname,'ParameterMode.OUT');
    sys.utl_dbws.set_return_type (l_call, string_type_qname);
    -- utl_dbws.add_parameter(l_call_, 'ubiNum', string_type_qname, 'ParameterMode.IN');
    --sys.utl_dbws.add_parameter(l_call, 'TEST', string_type_qname, 'ParameterMode.IN');
    --l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    --<validateLogin xmlns="' || l_namespace || '">
    --<validateLoginInput>' || p_int_1 || '</validateLoginInput>
    --</validateLogin>');
    l_xmltype_out := SYS.UTL_DBWS.invoke(call_Handle => l_call, request => l_xmltype_in);
    SYS.UTL_DBWS.release_call (call_handle => l_call);
    SYS.UTL_DBWS.release_service (service_handle => l_service);
    dbms_output.put_line('WS Executed successfully...');
    -- l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN 11;
    END;
    /

    Check if this helps:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist

  • Error :number range interval 01 does not exist

    Hi,
      i created a number range object Z_REPORTID in SNRO for autogenerated ids and later used the function module NUMBER_GET_NEXT. After execution i got the following error.
    For object Z_REPORTID, number range interval 01 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing
    Please help me to trace this out.
    Thanks,
    Anila

    Hi
    AFter creating the number range interval in SNRO you must TRANSPORT the interval. In the first screen --> Interval --> Transport.
    Did you perform that step?
    If you did that it should work well. Itried the same now and it is working fine.

  • Object RV_BELEG  number range interval 01 does not exist

    Hi Gurus,
    I need suggestion or solution to solve my problem when creating sales order(standard order) from VA01 transaction.
    Error Descriptio and Message:
    For object RV_BELEG , number range interval 01 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code:
    Reporducing the error:
    Screen flow: VA01 Intial Screen Input
                          Order Type: SD  'Subs.Dlv.Free of Ch'.
                          Sales Org : 
                          Enter.
                          Next Screen: Click on "Complete Dlv" push butoon.
                          It will take to next screen go with "SAVE" option.
                          Iam getting an incomplete Delivery want to edit.
                          Go with "EDIT" and give Input in "ORDER REASON" drill down option.
                          select any one option and go with arrow symbol in the menu "EDIT NEXT DATA" or F5.
                          Provide Input In "Customer Group" drill down option select any one option from it.
                          Again go with arrow symbol in the menu "EDIT NEXT DATA" or F5.
                          Here iam getting an status "Document is complete".
                          Click on "SAVE" option.
    Here status message error showing: "For object RV_BELEG , number range interval 01 does not exist".
    This is the issue occuring with me while creating Sale Order from VA01.
    help me if any one have know solution or suggestion to solve error.
    Tnks & Rgds
    Bhaskar

    This because of the missing SD Document Number Range.
    You can check this in tcode SNRO for object RV_BELEG.
    Ask your SD Consultant to Change the number range assignment  or create that missing 01 number range number object.
    This will solve your problem,
    Regards
    Karthik D

  • RF_BELEG GMR, number range interval 51 does not exist FBN1 Message no. NR75

    HI ALL
    IAM GETTING  THIS MESSAGE WHILE POSTING MIGO
    For object RF_BELEG GMR, number range interval 51 does not exist FBN1
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code: FBN1
    Regards,
    parameshwar

    Hi,
    check following link
    [problems in goods receive t.code MIGO;
    Regards
    Kailas Ugale

  • Error: For object RF_BELEG 9000, number range interval 92 does not exist FB

    Hi,
    When I am executing AFAB in test run mode for a particular company code I am getting below mentioned error:
    +For object RF_BELEG 9000, number range interval 92 does not exist FBN1+
        +Message no. NR751+
    +Diagnosis+
        +The database table NRIV has the delivery class 'C', i.e. the SAP default+
        +settings are only in client 000.+
    +Procedure+
        +Create the missing number range interval in customizing.+
        +Transaction code: FBN1+
    When I maintain number range 92 this error goes away. My question is we have no where assigned this number range 92 to any of the Document type then why system is asking to maintain the same?
    Sanjay

    Hi,
    You might be using the number range (say 92 which you've created in GL view & not in ENTRY view).
    Steps:
    Go to Define Document Number Ranges for Entry View OR use T-code FBN1.   Maintain & Assign two Number Ranges say 91 & 92 one for Document Type AF and another for AE for both the non-leading Ledgers say Y1 & Y2 ( Define Document Type for Entry VIew in a ledger). Also assign a number range to
    Document type SX (Closing Posting) apart from the above two Number Ranges (91 & 92)
    Hopefully it works for You............
    Dipti

  • Class oracle/jpub/runtime/dbws/DbwsProxy does not exists on 10g Rel2

    I trying using UTL_DBWS with samle from url http://www.freelists.org/archives/oracle-l/03-2005/msg00670.html in 10g Rel2 but I take error: class oracle/jpub/runtime/dbws/DbwsProxy does not exists .What I do incorrect?
    However, using web service in Oracle rdms very hard...May be exists simply example for dummies?

    Not really for dummies, but it may be a good way to get started:
    Oracle Database Programming Using Java and Web Services, by Kuassi Mensah.
    You have also the following resouces on OTN: Database Web Services.
    -- Eric

  • ORA-29540: class oracle/xml/sql/query/OracleXMLStaticQuery does not exist

    I am getting below error when trying to generate xml. Browsing on google did not help me. I would appreciate if someone can provide the solution.
    SQL> select dbms_xmlquery.getxml('select * from dual', 2) from dual;
    ERROR:
    ORA-29540: class oracle/xml/sql/query/OracleXMLStaticQuery does not exist
    ORA-06512: at "SYS.DBMS_XMLQUERY", line 19
    ORA-06512: at "SYS.DBMS_XMLQUERY", line 271
    ORA-06512: at line 1

    Then it is probably not the case that you are affected by the issue described in Metalink document 185857.1, but if I were you I would check it anyway, since it might be the problem.

  • For object RF_BELEG 2020, number range interval 50 does not exist FBN1

    Hi Guru's
    While posting GR i am getting this error
    For object RF_BELEG 2020, number range interval 50 does not exist FBN1
    kindly guide me to slove this error. Thanks in advance
    Regards
    Anandh

    Hi Piyush Mishra
      I have entered the number range intervals in FBN1. Still the error is existing.
      Number range interval 50 means ?? Any specific range of 50 we should give ???
    regards
    anandh

  • For object RF_BELEG LT, number range interval 50 does not exist FBN1

    dear all
    system showing this message (For object RF_BELEG LT, number range interval 50 does not exist FBN1)

    Hey Manish,
    You can use these t-codes.It can be solved with all together number ranges.
    1- OBH2
    In this activity, you can determine which intervals of document number ranges are to be copied from one fiscal year into another per company code.
    2- OBH1
    In this activity, you can copy intervals of document number ranges from one company code to other company codes. To do this, you have to store the following information:
    Wish you all the best.
    Onur

  • ORA-29540:class oracle/pub/runtime/dbws/DbwsProxy does not exist

    Hi we are getting below error while calling UTl_DBWS package.
    Database version 11.2.0.2
    package definition
    create or replace function xxpvn_ws_test
    return varchar2
    is
      service_           sys.utl_dbws.SERVICE;
      call_              sys.utl_dbws.CALL;
      service_qname      sys.utl_dbws.QNAME;
      port_qname         sys.utl_dbws.QNAME;
      xoperation_qname   sys.utl_dbws.QNAME;
      xstring_type_qname sys.utl_dbws.QNAME;
      response           sys.xmltype;
      request            sys.xmltype;
    begin
      service_qname := sys.utl_dbws.to_qname(null, 'getJoke');
      service_ := sys.utl_dbws.create_service(service_qname);
      call_ := sys.utl_dbws.create_call(service_);
      sys.utl_dbws.set_target_endpoint_address(call_, 'http://interpressfact.net/webservices/getjoke.asmx');
      sys.utl_dbws.set_property( call_, 'SOAPACTION_USE', 'TRUE');
      sys.utl_dbws.set_property( call_, 'SOAPACTION_URI', 'http://interpressfact.net/webservices/getJoke');
      sys.utl_dbws.set_property( call_, 'OPERATION_STYLE', 'document');
      request := sys.xmltype(
           '<getJoke xmlns="http://interpressfact.net/webservices/">'
        || '<Category>Excuses-10</Category>'
        || '</getJoke>');
      response :=sys. utl_dbws.invoke(call_, request);
      return response.extract('//getJokeResult/child::text()',
        'xmlns="http://interpressfact.net/webservices/"').getstringval();
    end ;error message
    SQL> select xxpvn_ws_test from dual;
    select xxpvn_ws_test from dual
    ERROR at line 1:
    ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist
    ORA-06512: at "SYS.UTL_DBWS", line 144
    ORA-06512: at "SYS.XXPVN_WS_TEST", line 14
    Thanks
    Jitendra

    This error related to jave since its not installed in database user schema
    Logout of sqlplus and run:
    loadjava -u / -r -v -f -s -grant public -genmissing dbwsclientws.jar dbwsclientdb102.jar
    Check this
    https://kr.forums.oracle.com/forums/thread.jspa?threadID=2264325

  • Root cause for  class oracle/jpub/runtime/dbws/DbwsProxy does not exist

    Hi,
    I am trying to use UTL_DBWS to call a webservice, adn getting a error " ORA-29540: class oracle/jpub/runtime/dbws/DbwsProxy does not exist "
    its going back and forth between me and operations , I aske them to load the package but still the script fails. Is there any way to confirm whether the package is loaded , like the below script
    as sys:
    select status from all_objects where
    dbms_java.longname(object_name)='oracle/jpub/runtime/dbws/DbwsProxy';
    Please help to find the root cause

    Please check if you have the grants on UTL_DBWS.

  • For object RF_BELEG OK03, number range interval 33 does not exist

    Hi. After new year I opened financial and material periods (01/2008). When I want to make some movement in MB1B - the communicate occurs:
    For object RF_BELEG OK03, number range interval 33 does not exist
    Could You give me some tip what should I do now?

    go to j1i9  or  snro
    enter uour object name
    assign here
    no range 33

  • For object rf_beleg 3000 number range inerval 50 does not exist FBN1

    for object rf_beleg 3000 number range inerval 50 does not exist FBN1
    in ob52 i see the following for my cc 3000
            from period1   year    to period   year     from period 2   year  to period year
    3000+        1         2003       12        2007         13                2007   16  2007
    3000A        1        2003        12       2007
    3000D        1        2003         12      2007
    3000K        1        2003         12      2007
    3000S         1       2003         12      2007
    when i try to post a goods movement for a po i get the following error
    for object rf_beleg 3000 number range inerval 50 does not exist FBN1
    is something wrong in this table???????
    any help would be great
    thank you in advance

    Hi
    This is not connected with Posting periods but with  document number ranges.
    Create document Number range interval 50 for year 2007 using T.code FBN1.
    This should solve ur problem
    Regards
    Aravind
    Assign points if useful

Maybe you are looking for

  • ABAP and Java Stack: Which to choose/supported standards and components?

    Hello, I am trying to understand the role of the two stacks in NW. Maybe anyone has a few hints where I can find answers to the following questions: - An overview of supported Standards (Java 5 since when?) - An overview of which component runs on wh

  • Intercepting key events

    I've searched the board already for this topic but didn't find an answer. My problem is the following: I have a JTextField which adds a KeyAdapter. The KeyAdapter overrides KeyPressed() I want to check when a user enters a character to see its a char

  • AVI files suddenly are corrupted.

    I'm having horrible trouble with AVI files.  I have two school projects in elements 11 which link to AVI files made with a canon powershot.  They were fine a couple of days ago, but now the AVI files won't load.  my projects are due soon, and I can't

  • Window popup close issue in jsf

    I am having add/edit functionlaity in window popup and when i close the window by calling javascript:window.close. The following exception comes at server. Kindly tell me how i can avoid this exception at server. <2005-08-25 12:20:09.708> ERROR [Web-

  • How to create file type source system connection

    Hi All, I have to load data from Flat files , but when i checked the source system connections File type source system connection is not present. Please guide me how can i create the same. Apoorva