After throwing an error suppler is created

Hi all,
In '/oracle/apps/pos/supplier/webui/SuppCrtPG' I have extended a controller "oracle.apps.ar.hz.components.party.organization.webui.HzPuiOrgProfileQuickCO"
after checking some validations I am throwing an error
by - throw new OAException("Plese enter 10 Alpha Numeric characters in PAN number field." ,OAException.ERROR);
My issue is that after throwing an error when clik on "Apply" button again with no changes made system should not create supplier but it creates. I checked from ap_suppliers table.
Why after throwing an error system creates a supplier??
Please help?
thanks
Amit

So, you are pressing apply button then error messge is apearing but no supplier created. but when you again pressed it, it will create supplier. Am I correct?
if not tell me again what is the flow?
--Parag                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • After Effects CS3 - error: could not create 8935 x 9152 image buffer + slow

    Hello. I am receiving this error message every time i try render my 3min composition. it gets about 1/5 way through which takes about an hour. i have read the General Specialist troubleshooting guide and it has not helped yet.
    i am now rendering with Image Cache: Maximum RAM Cache Size at 10% and purging after every 20 frames (in secret prefs) - even if this works, the 3min render is estimated to finish in 9hrs. Does this sound normal, or acceptable? Is it possible i have a hardware deficiency? or something else lacking.
    My PC specs are: Intel Core 2 Quad 2.40GHz; 4GB RAM; Geforce 8800 GTS. Running XP 32bit SP3; After Effects CS3 (fully updated). I have updated my graphics card driver (180.48) and my mainboard chipset driver. My memory settings are as they appear in the http://generalspecialist.com/2006/11/avoiding-after-effects-error-could-not.asp guide, & I've dropped max RAM cache to 10%. My disk cache size is 10000MB and set to an empty 75GB 10000RPM Raptor HDD.
    The composition has 30 layers - mainly layers imported from PSDs and then animated with basic transform tools and some distortion effects (wave warp) to create 2D character animation. There are 6 pre-composed layers containing the same kind of PSD layers and animation. I try to render out to an uncompressed .avi in 720x576 with 15fps.
    Even before I noticed this rendering problem, After Effects runs painfully slowly. the composition monitor takes ages to refresh, even in the Quarter quality view mode i am forced to work in. and over the course of the day, on 3 occasions - the PC lagged after scrubbing through the timeline, froze, then Blue Screen of Death'ed before rebooting before i could even read the blue screen error.
    Please offer some assistance or ideas as to how i can move forward. I have tried to help myself with existing material online, but to no avail.
    Thanks,
    Nick.

    >Does this sound normal, or acceptable?
    It sounds normal within the realm of AE, but how acceptable it really is, is another matter entirely. ;-) As suggested, scaling the sources in PS would be one way, another one would be to chop up the large documents into manual tiles and parent them together. Based on how AE works, only tiles visible within the comp frame will be loaded, which should make the whole process more streamlined. That's assuming they are not 3D layers that need to be fully visible at any given point, of course. Even then, rendering to an image sequence is still advisable in case of crashes... Depending on what you actually do, you may also want to find a different way of dealing with your distortion effects. They considerably expand/ dilate image buffers for processing, complicating the matter further.
    Mylenium

  • FPGA error: Failed to create C series module

    I am using sbRIO 9631 with LabVIEW 2012, along with FPGA module 2012. Everything was working fine till yesterday I got this error while creating a new FPGA project. 
    " LabVIEW FPGA:  An error occurred downloading the VI to the FPGA device.  Verify that the target is connected and powered and that the resource of the target is properly configured."
    After ignoring this error, I can create any VI in FPGA target, compile it and it works but can't do anything with host one. The MAX configurations show no error as well. 
    I have attached snapshots for convenience.
    Note: This sbRIO came with a DVD of LabVIEW 8.6 and related modules of same version. I had been using this version for a year. Then I got myself LabVIEW 2012 with latest modules and now facing this error. 
    Solved!
    Go to Solution.
    Attachments:
    1.png ‏11 KB
    2.png ‏240 KB

    Hi NapDynamite,
    You shouldn't need to uninstall your earlier version of LabVIEW on your development PC.
    Can you see what version of NI-RIO you have installed on your sbRIO? You can view this by selecting the sbRIO under 'Remote Systems' in MAX, then selecting the software category. You may need to update the version of NI-RIO that's installed on the sbRIO.
    Can you try this first?
    Kind regards,
    Josh E
    Applications Engineer
    National Instruments UK & Ireland

  • Create view throwing an error

    Hello guys, I am trying to create a view from the result set of a sql query. The sql when run independently works fine, but when I try to create a view on it it throws an error saying that the table does not exist. below is the create view I am using.
    create view ops$oracle.pci_view as SELECT
         (select name from v$database@dwdev) database_name,
          (select host_name from v$instance) host_name,
          (select version from v$instance) dbversion,
           o.owner,
           o.object_name table_name,
           o.CREATED table_created,
           o.last_ddl_time table_last_ddl_time,
           t.tablespace_name,
           t.last_analyzed,
           t.partitioned,
           t.num_rows,
           T.COMPRESSION,
           t.compress_for,
           t.read_only,
           tb.status tablespace_status,
           tb.encrypted tablespace_encrypted,
           tb.compress_for tablespace_compress,
           tb.contents,
           TC.COLUMN_NAME,
           tc.data_type,
           TC.DATA_LENGTH,
           tc.data_precision,
           tc.data_scale,
           tc.nullable,
           tc.column_id,
           tc.num_distinct,
           tc.avg_col_len,
           tc.density,
           tc.num_nulls,
           tc.low_value,
           tc.high_value,
           tc.last_analyzed col_last_analyzed,
           ec.encryption_alg,
           ec.salt,
           ec.integrity_alg,
           (SELECT tcm.comments
              FROM dba_tab_comments tcm
             WHERE tcm.owner = T.OWNER AND tcm.table_name = t.table_name)
              table_comments,
           (SELECT ccm.comments column_comments
              FROM dba_col_comments ccm
             WHERE     ccm.owner = TC.OWNER
                   AND ccm.table_name = tc.table_name
                   AND ccm.column_name = tc.column_name)
              column_comments
      FROM dba_objects o,
           dba_tables T,
           dba_tablespaces tb,
              dba_tab_columns tc  
            LEFT JOIN
              dba_encrypted_columns ec      ***********************************************
           ON     ec.owner = TC.OWNER
              AND ec.table_name = tc.table_name
              AND ec.column_name = tc.column_name
    WHERE o.owner NOT IN
              ('APPQOSSYS',
               'DBSNMP',
               'EXFSYS',
               'GGAPP',
               'OPS$ORACLE',
               'ORACLE_OCM',
               'OUTLN',
               'SYS',
               'SYSTEM',
               'WMSYS',
               'XDB')
           AND o.object_type = 'TABLE'
           AND NOT EXISTS
                      (SELECT 1
                         FROM dba_mviews mv
                        WHERE mv.owner = o.owner
                              AND mv.container_name = o.object_name)
           AND t.owner = o.owner
           AND t.table_name = o.object_name
           AND tb.tablespace_name = t.tablespace_name
           AND tc.owner = o.owner
           AND tc.table_name = o.object_name
           AND tc.owner = t.owner
           AND tc.table_name = t.table_name
           AND tc.data_length > 15
           AND tc.data_type NOT LIKE ('TIMESTAMP%')
           AND (tc.data_precision IS NULL OR tc.data_precision > 15);(The line containing the string of astrixes, that is the table that the error says does not exist)
    can someone help me where I am going wrong.
    Thanks

    969224 wrote:
    what if I create the view in SYS for few minutes until i can complete the task i was assigned and after that drop the view I created in SYS schema, would that have any effect on the database?Uh, yeah .. SYS isn't any better an option than SYSTEM.
    Those schemas are "off limits" to us ... ignore them .. pretend they do not exist. (seriously ..)
    Sounds like you need a new schema to store your application objects.

  • ORA-12709: error while loading create database character set after upgrade

    Dear All
    i m getting ORA-12709: error while loading create database character set, After upgraded the database from 10.2.0.3 to 11.2.0.3 in ebusiness suit env.
    current application version 12.0.6
    please help me to resolve it.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1.2831E+10 bytes
    Fixed Size 2171296 bytes
    Variable Size 2650807904 bytes
    Database Buffers 1.0133E+10 bytes
    Redo Buffers 44785664 bytes
    ORA-12709: error while loading create database character set
    -bash-3.00$ echo $ORA_NLS10
    /u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_BASE=/u01/oracle
    export ORACLE_HOME=/u01/oracle/PROD/db/tech_st/11.2.0
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/perl/bin:$PATH
    export PERL5LIB=$ORACLE_HOME/perl/lib/5.10.0:$ORACLE_HOME/perl/site_perl/5.10.0
    export ORA_NLS10=/u01/oracle/PROD/db/teche_st/11.2.0/nls/data/9idata
    export ORACLE_SID=PROD
    -bash-3.00$ pwd
    /u01/oracle/PROD/db/tech_st/11.2.0/nls/data/9idata
    -bash-3.00$ ls -lh |more
    total 56912
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx00001.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00002.nlb
    -rw-r--r-- 1 oracle oinstall 959 Jan 15 16:05 lx00003.nlb
    -rw-r--r-- 1 oracle oinstall 984 Jan 15 16:05 lx00004.nlb
    -rw-r--r-- 1 oracle oinstall 968 Jan 15 16:05 lx00005.nlb
    -rw-r--r-- 1 oracle oinstall 962 Jan 15 16:05 lx00006.nlb
    -rw-r--r-- 1 oracle oinstall 960 Jan 15 16:05 lx00007.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00008.nlb
    -rw-r--r-- 1 oracle oinstall 940 Jan 15 16:05 lx00009.nlb
    -rw-r--r-- 1 oracle oinstall 939 Jan 15 16:05 lx0000a.nlb
    -rw-r--r-- 1 oracle oinstall 1006 Jan 15 16:05 lx0000b.nlb
    -rw-r--r-- 1 oracle oinstall 1008 Jan 15 16:05 lx0000c.nlb
    -rw-r--r-- 1 oracle oinstall 998 Jan 15 16:05 lx0000d.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx0000e.nlb
    -rw-r--r-- 1 oracle oinstall 926 Jan 15 16:05 lx0000f.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00010.nlb
    -rw-r--r-- 1 oracle oinstall 958 Jan 15 16:05 lx00011.nlb
    -rw-r--r-- 1 oracle oinstall 956 Jan 15 16:05 lx00012.nlb
    -rw-r--r-- 1 oracle oinstall 1005 Jan 15 16:05 lx00013.nlb
    -rw-r--r-- 1 oracle oinstall 970 Jan 15 16:05 lx00014.nlb
    -rw-r--r-- 1 oracle oinstall 950 Jan 15 16:05 lx00015.nlb
    -rw-r--r-- 1 oracle oinstall 1.0K Jan 15 16:05 lx00016.nlb
    -rw-r--r-- 1 oracle oinstall 957 Jan 15 16:05 lx00017.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00018.nlb
    -rw-r--r-- 1 oracle oinstall 932 Jan 15 16:05 lx00019.nlb
    -rw-r--r-- 1 oracle oinstall 951 Jan 15 16:05 lx0001a.nlb
    -rw-r--r-- 1 oracle oinstall 944 Jan 15 16:05 lx0001b.nlb
    -rw-r--r-- 1 oracle oinstall 953 Jan 15 16:05 lx0001c.nlb
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    ORACLE_HOME = /u01/oracle/PROD/db/tech_st/11.2.0
    System name: SunOS
    Node name: proddb3.zakathouse.org
    Release: 5.10
    Version: Generic_147440-19
    Machine: sun4u
    Using parameter settings in server-side spfile /u01/oracle/PROD/db/tech_st/11.2.0/dbs/spfilePROD.ora
    System parameters with non-default values:
    processes = 200
    sessions = 400
    timed_statistics = TRUE
    event = ""
    shared_pool_size = 416M
    shared_pool_reserved_size= 40M
    nls_language = "american"
    nls_territory = "america"
    nls_sort = "binary"
    nls_date_format = "DD-MON-RR"
    nls_numeric_characters = ".,"
    nls_comp = "binary"
    nls_length_semantics = "BYTE"
    memory_target = 11G
    memory_max_target = 12G
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl01.dbf"
    control_files = "/u01/oracle/PROD/db/tech_st/10.2.0/dbs/cntrl02.dbf"
    control_files = "/u01/oracle/PROD/db/apps_st/data/cntrl03.dbf"
    db_block_checksum = "TRUE"
    db_block_size = 8192
    compatible = "11.2.0.0.0"
    log_archive_dest_1 = "LOCATION=/u01/oracle/PROD/db/apps_st/data/archive"
    log_archive_format = "%t_%s_%r.dbf"
    log_buffer = 14278656
    log_checkpoint_interval = 100000
    log_checkpoint_timeout = 1200
    db_files = 512
    db_file_multiblock_read_count= 8
    db_recovery_file_dest = "/u01/oracle/fast_recovery_area"
    db_recovery_file_dest_size= 14726M
    log_checkpoints_to_alert = TRUE
    dml_locks = 10000
    undo_management = "AUTO"
    undo_tablespace = "APPS_UNDOTS1"
    db_block_checking = "FALSE"
    session_cached_cursors = 500
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/usr/tmp"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound"
    utl_file_dir = "/u01/oracle/PROD/db/tech_st/10.2.0/appsutil/outbound/PROD_proddb3"
    utl_file_dir = "/usr/tmp"
    plsql_code_type = "INTERPRETED"
    plsql_optimize_level = 2
    job_queue_processes = 2
    cursor_sharing = "EXACT"
    parallel_min_servers = 0
    parallel_max_servers = 8
    core_dump_dest = "/u01/oracle/PROD/db/tech_st/10.2.0/admin/PROD_proddb3/cdump"
    audit_file_dest = "/u01/oracle/admin/PROD/adump"
    db_name = "PROD"
    open_cursors = 600
    pga_aggregate_target = 1G
    workarea_size_policy = "AUTO"
    optimizer_secure_view_merging= FALSE
    aq_tm_processes = 1
    olap_page_pool_size = 4M
    diagnostic_dest = "/u01/oracle"
    max_dump_file_size = "20480"
    Tue Jan 15 16:16:02 2013
    PMON started with pid=2, OS id=18608
    Tue Jan 15 16:16:02 2013
    PSP0 started with pid=3, OS id=18610
    Tue Jan 15 16:16:03 2013
    VKTM started with pid=4, OS id=18612 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Tue Jan 15 16:16:03 2013
    GEN0 started with pid=5, OS id=18616
    Tue Jan 15 16:16:03 2013
    DIAG started with pid=6, OS id=18618
    Tue Jan 15 16:16:03 2013
    DBRM started with pid=7, OS id=18620
    Tue Jan 15 16:16:03 2013
    DIA0 started with pid=8, OS id=18622
    Tue Jan 15 16:16:03 2013
    MMAN started with pid=9, OS id=18624
    Tue Jan 15 16:16:03 2013
    DBW0 started with pid=10, OS id=18626
    Tue Jan 15 16:16:03 2013
    LGWR started with pid=11, OS id=18628
    Tue Jan 15 16:16:03 2013
    CKPT started with pid=12, OS id=18630
    Tue Jan 15 16:16:03 2013
    SMON started with pid=13, OS id=18632
    Tue Jan 15 16:16:04 2013
    RECO started with pid=14, OS id=18634
    Tue Jan 15 16:16:04 2013
    MMON started with pid=15, OS id=18636
    Tue Jan 15 16:16:04 2013
    MMNL started with pid=16, OS id=18638
    DISM started, OS id=18640
    ORACLE_BASE from environment = /u01/oracle
    Tue Jan 15 16:16:08 2013
    ALTER DATABASE MOUNT
    ORA-12709 signalled during: ALTER DATABASE MOUNT...

    ORA-12709 signalled during: ALTER DATABASE MOUNT...Do you have any trace files generated at the time you get this error?
    Please see these docs.
    ORA-12709: WHILE STARTING THE DATABASE [ID 1076156.6]
    Upgrading from 9i to 10gR2 Fails With ORA-12709 : Error While Loading Create Database Character Set [ID 732861.1]
    Ora-12709 While Trying To Start The Database [ID 311035.1]
    ORA-12709 when Mounting the Database [ID 160478.1]
    How to Move From One Database Character Set to Another at the Database Level [ID 1059300.6]
    Thanks,
    Hussein

  • Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created". What's the problem?

    Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created".
    What's the problem?
    Any help in finding a solution is greatly appreciated.
    Thank you,

    Installed AcrobatXI PRO 11.0.09  on seven computers and laptops. Two of them gives an error when you try to save a document in WORD, EXCEL, Power Point, or when exporting to... error: Save failed to process this document. No File was created.
    But all good saves in the format of TXT and jpg.
    I have uninstalled and restored and re-installed and updated and registry cleaned and removed using the special utility Cleaner Tool for Acrobat, but nothing helps.
    On one notebook with Windows 8.1 and Microsoft office 2013, on another laptop with Windows 7 and Microsoft office 2010, the same problem, although there are computers with Windows 7 and Microsoft office 2010 and everything works.
    Tell me where to find the problem and how to solve it.
    Thank you.

  • Firefox crashes and when attempting to launch after the crash it won't and throw and error msg that js.3250 can't be found- but same file is in Mozilla directory. I must then download new 3.6.8 and lose all tabs.

    # Question
    Firefox crashes and when attempting to launch after the crash it won't launch; throwing an error msg that " js.3250 can't be found" - but same file is in Mozilla directory.
    I must then download new 3.6.8 and lose all tabs and history.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • "An error occurred while creating the system proxy" after upgrade to 11.2

    Hi, I have just moved from 11.1 release to 11.2 release but this fault is preventing me from using 11.2
    If i try to access System Administration Panels like "Users" or "SMF Services" I get two error messages and can not proceed.
    If I roll back to the previous BE, (11.1) it all works fine).
    An error occurred while creating the system proxy
    Navigation Failed. The first component of the address, "vp" is not a valid control.
    The error is mentioned here https://www.mail-archive.com/[email protected]/msg09791.html but I can not see the link content and it was a long time ago.
    Not sure if it is relevant, but i am behing a pfsense/squid proxy - but have this server IP excluded/set to bypass the proxy.
    Also, not sure if it is relevant but here is the output from the following:
    nas@nas:~$ svcprop svc:/application/pkg/system-repository:default | grep _proxy
    config/http_proxy astring ""
    config/https_proxy astring ""
    Any help appreciated.

    Ensure that the "solaris-desktop" package group is correctly installed :
    # pkg info solaris-desktop
    # for i in `pkg contents -m solaris-desktop | grep depend | awk '{print $2}' | awk -F= '{print $2}'`; do pkg list $i; done
    Ensure that svc:/system/rad:local is online :
    # svcs svc:/system/rad:local
    Check for any errors in rad service :
    # svcs -Lv svc:/system/rad:local
    Once the above is checked, does the error persists after a reboot ?

  • Displaying std field in enable mode after throwing error msg

    Hi experts,
    I have a requirement where i need to  check the value enterred in standard field (final grade) of infotype 0022 and need to throw error message, when the user click save button in PA30.
    But the problem is, if i throw Error message, that field becomes disable and the user have to go back and come back for entering the correct value. So, my requirement is taht the field should still be in enable mode even after getting the error message.
    pls tell me how to achive the same?

    Hi Shanti,
    You don't need to display a message of type ERROR as this will lock the screen and will prevent the user from providing further input. You can use the following thing
    MESSAGE i001 DISPLAY LIKE 'E'.
    This will serve your purpose by displaying the error but will not lock the screen field and thus will not prevent the user from further input.
    Have a look at the following link for more details : [ MESSAGE KEYWORD|http://help.sap.com/abapdocu_70/en/ABAPMESSAGE_OPTIONS.htm]
    Hope this will help.
    Thanks,
    Samantak.

  • Do you have a workaround for this error: terminate called after throwing an instance of 'std::runtim

    I have a power mac g5 running OSX 10.5.8. My hard disk crashed, and I put in a new one. Now all of my software needs to be reinstalled. I am far away from my home office and only have my backup disks to use for reinstall. I have CS3 and Cs4 on backup disks. I tried to install CS4, and got an error that looked like this:
    UI mode: Full GUI
    terminate called after throwing an instance of 'std::runtime_error'
      what():  Invalid path passed to FileSystemPath constructor.
    I thought maybe I needed to install CS3 first, so I did that with no problem. But now it's asking for my serial number, which I do not have for CS3. I do have my serial number for CS4.
    With CS3 installed but not activated, I still get the same error.
    How do I install CS4 on my computer?
    Any help you can give me would be greatly appreciated. Thanks very much.

    Since you weren't able to deactivate your software before the hard disk crashed, you'll need to get assistance from our support staff. You can contact them through chat at http://www.adobe.com/support/contact/?issue=myOptions_activate
    Be sure to have whatever serial numbers you have on hand (and make sure to register them).

  • I'm trying to create a list using CustomSchemalXml property in ListCreationInformation object in CSOM. But, the code throws an error "Invalid List Schema".

    I'm trying to create a list using CustomSchemalXml  property in ListCreationInformation object in CSOM. But, the code throws an error "Invalid List Schema". Any pointers on how to set the CustomSchemalXml property?
    Sri

    Hi Lakshmanan,
    Thanks for your reply.
    I checked this post and there was no solution to the problem there. I undersand we cannot create a list based on custom template in CSOM, but what I'm looking for is how of form xml and set it to CustomSchemalXml
     property, so that everytime when I want to create a list with similar content types and stuff, I can just set the
    CustomSchemalXml  property. 
    Sri

  • I have iphone 5 that has error Can't create Apple ID invalid device while creating mme delegate account HELP!!! All weekend after downloading ios7 first apps went down then couldn't connect to itunes unless hooked to comp

    I lost all apps and restored phone to try setting up as new phone and not can't do anything showing error Can't create apple ID invalid device while creating mme delegate account and my phone is not showing on devices of itunes....

    I've exactly the same issue with a new iPhone 5S.
    Many posts about this issue but no working solutions !
    When trying to restore an iCloud backup, I receive the error message "Appe-ID cannot be created. invalid device while up…
    Re: Restoring icloud backup to brand new iPhone 5s
    invalid device while updating mme delegate account
    https://discussions.apple.com/message/25380487
    https://discussions.apple.com/thread/5951639?tstart=0
    Please help

  • Validation error for non-null throws false error condition

    I am trying to perform a DML (INSERT) with a form element (textbox) that has been disabled on the form.
    The objective is to allow the user to:
    1) disable a form element using javascript when a radio element is selected - works OK using an onclick event
    2) user clicks a button to ENTER (perform a INSERT DML) - here the validation throws an error but I have enabled the previously disabled form element and I have used $x_Value() to input a value into the form element by onsubmit event on button.
    If I remove the validation error trap the DML saves the appropriate value.
    I can create two buttons and it works:
    1 button to enable fields that were previously disabled
    2 button to perform DML. (works if after button 1 I set focus on any form field with my mouse.)
    Any help would be appreciated.
    marshall

    Knight,
    Thanks for your interest in helping.
    I am trying not to create a situation w/bugs and such. I think I can devise a work around but I would like a more "correct" solution. ;-)
    To explain what I am doing I have a form that a person can use to enter a complaint. The person can give their last - middle - first name but they can also decide to be anonymous. If anonymous they click checkbox. Onclick of checkbox I fire javascript to disable name fields and place "Anonymous" in the last_name disabled field. The user can enter other data and when the user clicks ENTER I want to insert into the DB but the validation error trap of APEX sees a disabled field as a null. I want to place "Anonymous" in the last name field and then save the record with other data besides name.
    To add to it - I can create two buttons 1-button enables and 2-button inserts and the same code works if I touch( give focus) to a field in between enabling and inserting into the DB
    Does that help explain better.
    Thanks again - hope you or someone can help - best regards.

  • Creation of Transfer Order takes a long time and finally throws spool error

    Hi,
    I create Sales Order of type OR. I do delivery successfully. But when i proceed to create Transfer Order, it takes painfully long time and finally after painful 30 mins or so, it throws a error message, 'Error in spool call' with a blank page. I click on save icon and transfer order is created.
    But the creation takes very long time. I checked SP01 and there are no requests.
    Any suggestions will be rewarded.
    Regards,
    Mangesh

    Dear,
              Kindly contact your Basis team it will help you.
             After error please take the screen short of SU53 and give to basis team.
    May be it will help you.
    Regards,
    Sandip

  • Doing VF01 Invoice third party  system is throwing below error message.

    Hi All,
    After creating Standard PO for third party.
    Doing VF01 Invoice system is throwing below error message.
    Error Log
               5005000511 000010 No open billing quantity has been determined
              Technical data
                  Tech. data details
                   Client                                 200
                   Group Number
                   Sales Document Number                  5005000511
                   Item Number of the SD Document         000010
                   Schedule Line Number                   0147
                   Counter in Control Tables              00
                   Message Identification                 VF
                   System Message Number                  147
                   Output Type                            I
                   Message Variable 01
                   Message Variable 02
                   Message Variable 03
                   Message Variable 04
                   Group Type                             F
    Aditya.

    Hello,
    Please, I have the same issue but in my case it's a Purchase Requisition. First I created a Purchasing info-record for Vendor, Material, Purchasing organization and Plant.
    After I set a Source List Master Data for Material, Plant, Vendor and Purchasing Organization.
    Like this I have the Purchase Requisition created automatically when I create the Sales Order. I am testing a Third Party Handling scenario in Brazil...
    But now I can not create the Billing Document.
    The following error happens:
    "No open billing quantity has been determined"
    Tech. data details
    Client                                 210
    Group Number
    Sales Document Number                  0000000179
    Item Number of the SD Document         000010
    Schedule Line Number                   0147
    Counter in Control Tables              00
    Message Identification                 VF
    System Message Number                  147
    Output Type                            I
    Message Variable 01
    Message Variable 02
    Message Variable 03
    Message Variable 04
    Group Type                             F
    I tried what you suggested but they didn't work. I don't know if I have to create a MIRO for my Purchase Requisition. I tried to release it but it didn't work as well.
    Please, can you help me?
    Thank you,

Maybe you are looking for

  • Workflow based on role

    Hi all, Please let me know, how to create a workflow based on specific Roles. I know it's a bit silly query, but i have got struck here. Thanks, Shash

  • "this code must be redeemed on an iOS device" error in Configurator

    Does anyone know what this means? I cannot seem to get this paid app (VPP codes downloaded and installed) to push to the Supervised devices. This is the only error I see in the process. Devices can be supervised just fine, it is just paid apps that a

  • ITunes error message, the newest I can use is version 4

    When I try to use iTunes 7 on one of my profiles, it gives me the following error: "The iTunes Library file is locked, on a locked disc, or you do not have write permission for this file." I've check these things, is there anything else I can do? Pow

  • Error ID: 130000

    I'm trying to purchase the Spider Man game from AppWorld, but I always get the same message... ERROR ID: 13000. I've tried what it shows on help at the Blackberry website about the credit card, but it still is a no go. Can someone help, please?! Than

  • How to execute a  refcursor (which in turn creates a refcursor in the query

    Hello All,      I would really appreciate if someone could help me on this issue. I've searched google but could not find a solution on what I'm trying to achieve. I'm trying to run a refcursor from asp.net code (Oracle 9i / Asp.NET 2.0). The refcurs