Not able to use Commit after the function module STATUS_OBJECT_CREATE

I am using function module   STATUS_OBJECT_CREATE
   CALL FUNCTION 'STATUS_OBJECT_CREATE'
          EXPORTING
           CHGKZ         = 'X'
           CLIENT        = SY-MANDT
            OBJNR         = LV_OBJNR3
            OBTYP         = 'IWE'
            STSMA         = 'ZS_RE_01'
          IMPORTING
            OBJNR         = LV_OBJNR3.
            STONR                        = LV_STONR.
        IF SY-SUBRC = 0.
            COMMIT WORK.
        ENDIF.
i am getting error after the COMMIT WORK .
I am not getting any issue in the function module .after the function module i am using the COMMIT WORK and i am getting the following error message
Category               ABAP Programming Error
Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC
Except.                CX_SY_OPEN_SQL_DB
ABAP Program           SAPLBSVU
Application Component  CA-GTF-TS-SMT
Date and Time          03/17/2014 07:01:29
|Short text                                                                                        |
|    The ABAP/4 Open SQL array insert results in duplicate database records.                       |
|What happened?                                                                                    |
|    Error in the ABAP Application Program                                                         |
|                                                                                                  |
|    The current ABAP program "SAPLBSVU" had to be terminated because it has                       |
|    come across a statement that unfortunately cannot be executed.                                |
|What can you do?                                                                                  |
|    Note down which actions and inputs caused the error.                                          |
|                                                                                                  |
|                                                                                                  |
|    To process the problem further, contact you SAP system                                        |
|    administrator.                                                                                |
|                                                                                                  |
|    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
|    at and manage termination messages, and you can also                                          |
|    keep them for a long time.                                                                    |
|Error analysis                                                                                    |
|    An exception occurred that is explained in detail below.                                      |
|    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught                 |
|     in                                                                                           |
|    procedure "STATUS_UPDATE" "(FUNCTION)", nor was it propagated by a RAISING                    |
|     clause.                                                                                      |
|    Since the caller of the procedure could not have anticipated that the                         |
|    exception would occur, the current program is terminated.                                     |
|    The reason for the exception is:                                                              |
|    If you use an ABAP/4 Open SQL array insert to insert a record in                              |
|    the database and that record already exists with the same key,                                |
|    this results in a termination.                                                                |
|                                                                                                  |
|    (With an ABAP/4 Open SQL single record insert in the same error                               |
|    situation, processing does not terminate, but SY-SUBRC is set to 4.)                          |
|How to correct the error                                                                          |
|    Use an ABAP/4 Open SQL array insert only if you are sure that none of                         |
|    the records passed already exists in the database.                                            |
|                                                                                                  |
|    If the error occures in a non-modified SAP program, you may be able to                        |
|    find an interim solution in an SAP Note.                                                      |
|    If you have access to SAP Notes, carry out a search with the following                        |
|    keywords:                                                                                     |
|                                                                                                  |
|    "SAPSQL_ARRAY_INSERT_DUPREC" "CX_SY_OPEN_SQL_DB"                                              |
|    "SAPLBSVU" or "LBSVUU01"                                                                      |
|    "STATUS_UPDATE"                                                                               |
|                                                                                                  |
|    If you cannot solve the problem yourself and want to send an error                            |
|    notification to SAP, include the following information:                                       |
|                                                                                                  |
|    1. The description of the current problem (short dump)                                        |
|                                                                                                  |
|       To save the description, choose "System->List->Save->Local File                            |
|    (Unconverted)".                                                                               |
|                                                                                                  |
|    2. Corresponding system log                                                                   |
|                                                                                                  |
|       Display the system log by calling transaction SM21.                                        |
|       Restrict the time interval to 10 minutes before and five minutes                           |
|    after the short dump. Then choose "System->List->Save->Local File                             |
|    (Unconverted)".                                                                               |
|                                                                                                  |
|    3. If the problem occurs in a problem of your own or a modified SAP                           |
|    program: The source code of the program                                                       |
|       In the editor, choose "Utilities->More                                                     |
|    Utilities->Upload/Download->Download".                                                        |
|                                                                                                  |
|    4. Details about the conditions under which the error occurred or which                       |
|    actions and input led to the error.                                                           |
|                                                                                                  |
|    The exception must either be prevented, caught within proedure                                |
|    "STATUS_UPDATE" "(FUNCTION)", or its possible occurrence must be declared in                  |
|     the                                                                                          |
|    RAISING clause of the procedure.                                                              |
|    To prevent the exception, note the following:                                                 |
|System environment                                                                                |
|    SAP Release..... 702                                                                          |
|    SAP Basis Level. 0010                                                                         |
|                                                                                                  |
|    Application server... "sds6ci"                                                                |
|    Network address...... "11.224.101.53"                                                         |
|    Operating system..... "Linux"                                                                 |
|    Release.............. "2.6.18-194.el5"                                                        |
|    Hardware type........ "x86_64"                                                                |
|    Character length.... 16 Bits                                                                  |
|    Pointer length....... 64 Bits                                                                 |
|    Work process number.. 17                                                                      |
|    Shortdump setting.... "full"                                                                  |
|                                                                                                  |
|    Database server... "gctsdb01lds.hsi.hugh"                                                     |
|    Database type..... "ORACLE"                                                                   |
|    Database name..... "DS6"                                                                      |
|    Database user ID.. "SAPDS4"                                                                   |
|                                                                                                  |
|    Terminal.......... "GCTEMP02VDI"                                                              |
|                                                                                                  |
|    Char.set.... "C"                                                                              |
|                                                                                                  |
|    SAP kernel....... 720                                                                         |
|    created (date)... "Sep 14 2013 05:28:14"                                                      |
|    create on........ "Linux GNU SLES-9 x86_64 cc4.1.2 use-pr130820"                              |
|    Database version. "OCI_102, 10.2.0.5.0, V2, default"                                          |
|                                                                                                  |
|    Patch level. 500                                                                              |
|    Patch text.. " "                                                                              |
|                                                                                                  |
|    Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"               |
|    SAP database version. 720                                                                     |
|    Operating system..... "Linux 2.6, Linux 3"                                                    |
|                                                                                                  |
|    Memory consumption                                                                            |
|    Roll.... 1317248                                                                              |
|    EM...... 0                                                                                    |
|    Heap.... 0                                                                                    |
|    Page.... 0                                                                                    |
|    MM Used. 1242912                                                                              |
|    MM Free. 53400                                                                                |
|User and Transaction                                                                              |
|    Client.............. 160                                                                      |
|    User................ "DV018458"                                                               |
|    Language key........ "E"                                                                      |
|    Transaction......... "SE38 "                                                                  |
|    Transaction ID...... "5323C30FC9364665E10000000BE06533"                                       |
|                                                                                                  |
|    EPP Whole Context ID.... "002655EE0F241ED3ABB7D81260A28C44"                                   |
|    EPP Connection ID....... 00000000000000000000000000000000                                     |
|    EPP Caller Counter...... 0                                                                    |
|                                                                                                  |
|    Program............. "SAPLBSVU"                                                               |
|    Screen.............. "RSM13000 3000"                                                          |
|    Screen Line......... 2                                                                        |
|    Debugger Active..... "none"                                                                   |
|Information on where terminated                                                                   |
|    Termination occurred in the ABAP program "SAPLBSVU" - in "STATUS_UPDATE".                     |
|    The main program was "RSM13000 ".                                                             |
|                                                                                                  |
|    In the source code you have the termination point in line 60                                  |
|    of the (Include) program "LBSVUU01".                                                          |
|    The program "SAPLBSVU" was started in the update system.                                      |
|    The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in                   |
|    procedure "STATUS_UPDATE" "(FUNCTION)", but it was neither handled locally nor                |
|     declared                                                                                     |
|    in the RAISING clause of its signature.                                                       |
|                                                                                                  |
|    The procedure is in program "SAPLBSVU "; its source code begins in line                       |
|    1 of the (Include program "LBSVUU01 ".                                                        |
|Source Code Extract                                                                               |
|Line |SourceCde                                                                                   |
|   30|  LOOP AT jsto_upd WHERE chgkz = 'X'.                                                       |
|   31|    CHECK: jsto_upd-chgnr > '000',                                                          |
|   32|           jsto_upd-stsma NE jsto_upd-stsma_old.                                            |
|   33|    CLEAR jcdo_tab.                                                                         |
|   34|    MOVE-CORRESPONDING jsto_upd TO jcdo_tab.                                                |
|   35|    MOVE-CORRESPONDING chdat    TO jcdo_tab.                                                |
|   36|    jcdo_tab-stsma_new = jsto_upd-stsma.                                                    |
|   37|    APPEND jcdo_tab.                                                                        |
|   38|  ENDLOOP.                                                                                  |
|   39|* Änderungen zu Einzelstatus (Insert)                                                       |
|   40|  LOOP AT jest_ins WHERE chgkz = 'X'.                                                       |
|   41|    CHECK jest_ins-chgnr > '000'.                                                           |
|   42|    CLEAR jcds_tab.                                                                         |
|   43|    MOVE-CORRESPONDING jest_ins TO jcds_tab.                                                |
|   44|    MOVE-CORRESPONDING chdat    TO jcds_tab.                                                |
|   45|    jcds_tab-chind = 'I'.                                                                   |
|   46|    APPEND jcds_tab.                                                                        |
|   47|  ENDLOOP.                                                                                  |
|   48|* Änderungen zu Einzelstatus (Update)                                                       |
|   49|  LOOP AT jest_upd WHERE chgkz = 'X'.                                                       |
|   50|    CHECK jest_upd-chgnr > '000'.                                                           |
|   51|    CLEAR jcds_tab.                                                                         |
|   52|    MOVE-CORRESPONDING jest_upd TO jcds_tab.                                                |
|   53|    MOVE-CORRESPONDING chdat    TO jcds_tab.                                                |
|   54|    jcds_tab-chind = 'U'.                                                                   |
|   55|    APPEND jcds_tab.                                                                        |
|   56|  ENDLOOP.                                                                                  |
|   57|* Verbuchung Statusobjekte                                                                  |
|   58|  DESCRIBE TABLE jsto_ins LINES sy-tabix.                                                   |
|   59|  IF sy-tabix > 0.                                                                          |
|>>>>>|    INSERT jsto CLIENT SPECIFIED                                                            |
|   61|                FROM TABLE jsto_ins.                                                        |
|   62|  ENDIF.                                                                                    |
|   63|  DESCRIBE TABLE jsto_upd LINES sy-tabix.                                                   |
|   64|  IF sy-tabix > 0.                                                                          |
|   65|    field-symbols <fs_jsto_line> like jsto_upd.                                             |
|   66|    loop at jsto_upd assigning <fs_jsto_line>.                                              |
|   67|      IF <fs_jsto_line>-chgnr = '000'.                                                      |
|   68|        <fs_jsto_line>-chgnr = '999'.                                                       |
|   69|      ENDIF.                                                                                |
|   70|* on change of status profile delete user status related to old profile                     |
|   71|      IF <fs_jsto_line>-STSMA NE <fs_jsto_line>-STSMA_OLD.                                  |
|   72|        DELETE FROM JEST CLIENT SPECIFIED WHERE                                             |
|   73|               MANDT = <fs_jsto_line>-MANDT AND                                             |
|   74|               OBJNR = <fs_jsto_line>-OBJNR AND                                             |
|   75|               STAT  LIKE 'E%'.                                                             |
|   76|        DELETE FROM JCDS CLIENT SPECIFIED WHERE                                             |
|   77|               MANDT = <fs_jsto_line>-MANDT AND                                             |
|   78|               OBJNR = <fs_jsto_line>-OBJNR AND                                             |
|   79|               STAT  LIKE 'E%'.                                                             |

i tried with out using commmit but it is not creating Status.
When i see the function module help and they are trying to COMMIT
FU STATUS_OBJECT_CREATE
Short Text
Create Status Object
Functionality
The function module generates a status object.
Take the object number from the object number management (function modules OBJECT_NUMNBER_GET_xx).
If no object number is given, the module takes a temporary object number that must be replaced later (function module STATUS_OBJECT_SWITCH_NUMBER).
Example
Creating an internal order with number 100123 (object type "ORC") for status profile "STATSCHEM" with final object number
call function 'OBJECT_NUMBER_GET_OR'
  exporting
    aufnr = '100123'
  importing objnr = objektnummer.
call function 'STATUS_OBJECT_CREATE'
  exporting
    objnr = objektnummer
    obtyp = 'ORC'
    stsma = 'STATSCHEM'.
commit work.
Creating the same order with a temporary object number
data: objectkey like ionra.
* TBO00-REFSTRUCT for object type 'OR' is 'IONRA'
objectkey-aufnr = '100123'.
call function 'STATUS_OBJECT_CREATE'
  exporting
    i_objectkey = objectkey
    obtyp       = 'ORC'
    stsma       = 'STATSCHEM'.
  importing
    objnr       = objektnummer.
call function 'OBJECT_NUMBER_GET_OR'
  exporting
    aufnr = '100123'
  importing objnr = objektnummer_neu.
call function 'STATUS_OBJECT_SWITCH_NUMBER'
  exporting
    objnr_old = objektnummer
    objnr_new = objektnummer_neu.
commit work.
Notes

Similar Messages

  • Not able to activate imessage after the ios7 update?

    not able to activate imessage after the ios7 update?

    This is what worked:
    1) Backing up the iPhone to iCloud
    2) Resetting the iPhone completely
    3) Restoring from iCloud
    This helped resolve iMessage and Facetime issues.
    Thank you for your help.
    - E.

  • Why it´s not possible to use IPhoto after the Maverick Update ?

    Why it´s not possible to use IPhoto after the Maverick Update ?

    I can not make a free update. It costs € 13.99 €.
    I can not update it.

  • Not able to use Mac after booting windows from bootcamp!

    Hello,
    In my Mac mini, I dual booted it by installing windows on it using bootcamp!
    Could you help me how to go to mac partition and i am also not able to use windows!
    Pls help
    Punit Khatri
    +91-9925326095

    Hi there:
    You may be able to start up the Mac in such a way as to look
    for an OS X volume at the same time using a keyboard comb-
    ination at startup... Press key(s) immediately after start tone.
    Press Option (opt) key during startup will start in Startup Manager
    where you can select an OS X volume or network volume to run.
    {There is also a way to choose a hardware test for diagnostic
    purposes on startup, too. Some macs have features in the OS
    to include a 'recovery' mode on later models.}
    • Startup key combinations for Intel-based Mac:
    http://support.apple.com/kb/HT1533
    PS: if you decide to remove Windows, you should also
    consider Boot Camp to remove the partition it made.
    Hopefully this helps.
    Good luck & happy computing!

  • Not able to Use it after resetting phone to its factory setting !!

    My brother bought an Iphone 4s from his friend. We did reset in order to remove his friend's accounts and everything phone had in it. What happened is we're not able login as It turned out FindMyIphone app was installed and nobody knows the login details including his friend It's been 3 days and I can't see my little brother's sad face. Anyone ?

    If the iPhone has Activation Lock - that is, it's asking for the previous owner's Apple ID and password to activate the device - then you will need that information, or you'll need to get the previous owner to remove the device from his/her iCloud account:
    http://support.apple.com/kb/PH2702
    If your brother's "friend" has forgotten his Apple ID and password, the "friend" will have to recover it, either by this web page:
    https://iforgot.apple.com
    or by calling Apple Support and asking to speak with Account Security.
    If this "friend" is unable or unwilling to recover his Apple ID so as to be able to clear Activation Lock, then the device is unusable. Your brother should return the iPhone to this "friend" and get his money back.
    Regards.

  • Not able to Access R/3 Tables, Function Modules through Crystal Reports

    Hi Gurus,
    I am working on Crystal Reports 2008 - V12.2.0,  When I am trying to connect SAP R/3 system through the Data  connectivity SAP Table,Cluster or FM, 
    I could see only the very few tables ,  and cannot see all Tables and not any Info sets or Function Modules, 
    But, I can access BW system,  problem facing only with SAP R/3 system,
    Suggest me on this,
    Thanks
    Siva

    Hey here..,,
    There is a limitation to show all Tables, Function Modules in Crystal reports for R/3. To see them,
    In Options:
    You will see Table_Name Like%: Text box, go there and give the starting or ending characters of FM's.
    Eg: Z% or %Z
    Then Click on Ok.
    Now try to connect to R/3 again or Refresh the Connection, it will list out as you opted.
    Hope it should help you.
    Thank You!!

  • Why am I not able to use Wordpress on the Ipad2?

    Each time I try to access wordpress (through safari or through the app) it says could not connect to the server.
    Can someone please help?

    Use this:
    https://itunes.apple.com/sg/app/wordpress/id335703880?mt=8&ls=1

  • I bought a 1 yr subscription of Outlook magazine thru the app store, received a receipt as well, but not able to access this after the purchase on the ipad, why?

    I bought a 1 yr subscription to Outlook magazine thru the App Store. REceived a purchase receipt on my email as well, but when I go to News Stand, still only the demo magazine is there and it is asking me to subscibe again...what should I Do?

    I think your best bet here is to contact the app developer. Sounds like you need advanced troubleshooting that someone who is a part of the app would know best how to resolve. Best of luck.

  • I am not able to use Wifi through any party. My Labtop informs me I need to Network Configurate

    I am not able to use Wifi in the outside of my house because my Mac pro informs me i need configuration and i do not know what that means nor do i know how or what to do? Can some one help give me a 101 course and step by step?

    >>Duplicate post removed for cross-posting violation of the forum's ToS Verizon Wireless Terms of Service
        See Possible fix for some dlink routers with wifi issues  <<
    Message was edited by: Verizon Moderator

  • How to use Exceptions for a function module

    Hi folks,
            I have created  a new function module.Its working fine, but i am not aware of using exceptions for a function module. I hav just declared an exception in the 'exception' tab. Could any body explain me how to use that in my FM source code....Thanks...

    Hi Shyam,
    Have a look at this,
    START-OF-SELECTION.
      gd_file = p_infile.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = gd_file
          has_field_separator     = 'X'  "file is TAB delimited
        TABLES
          data_tab                = it_record
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
        IF sy-subrc NE 0.
          write: 'Error ', sy-subrc, 'returned from GUI_UPLOAD FM'.
          skip.
        endif.
    Regards,
    Sai

  • Regarding the function module 'DYNP_VALUES_READ'

    Hi,
         There are two input fields on my popup screen.
    1. Plant
    2. OrderNo.
    I have created F4 help for the order no. But i want to capture the plant value so that i can get order no based on the plant.
    For that, i have written the below code. The internal table tl_dynpfields is not getting filled after the function module  'DYNP_VALUES_READ'  gets executed.
    Can anyone tell me what mistake i am commiting.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_pro1
    TYPES : BEGIN OF tp_dynpfields,
              fieldname  LIKE dynpread-fieldname,
              stepl      LIKE dynpread-stepl,
              fieldvalue LIKE dynpread-fieldvalue,
              fieldinp   LIKE dynpread-fieldinp,
              END OF tp_dynpfields.
      DATA : wl_dynpfields TYPE tp_dynpfields,
             tl_dynpfields TYPE STANDARD TABLE OF tp_dynpfields.
      wl_dynpfields-fieldname = 'P_PLANT1'.
      APPEND wl_dynpfields TO tl_dynpfields.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname                         = sy-repid
          dynumb                         = '0200'
        TABLES
          dynpfields                     = tl_dynpfields
       EXCEPTIONS
         invalid_abapworkarea           = 1
         invalid_dynprofield            = 2
         invalid_dynproname             = 3
         invalid_dynpronummer           = 4
         invalid_request                = 5
         no_fielddescription            = 6
         invalid_parameter              = 7
         undefind_error                 = 8
         double_conversion              = 9
         stepl_not_found                = 10
         OTHERS                         = 11.
    Thanks,
    Ibrahim

    Hey,
    i got the value.
    thanks

  • I bought a cd with Lightroom 5. After installation and registration I am not able to use 'help' function and I cannot update the software. I anyone able to give me a hint how to handle it? Thank you ind advance Karl

    I bought a cd with Lightroom 5. After installation and registration I am not able to use 'help' function and I cannot update the software. Is anyone able to give me a hint how to handle it?
    Thank you in advance
    arl

    Hi Keith, sorry for my late reply.
    Surely I am able to connect to the help function when Icontact the website
    of AdobeLR5.The problem is as follows,
    When I open LR5 on my computer and work with it and try to open the help
    function in the software, I don't get it.
    When I bought the CD I was naiv enough to believe that I get an independent
    working software. I learned in the meantime, that the seller does not allow
    to work with, without being connected to them.
    I don't believe that I am paranoid, but I like to buy something and use it
    without to inform the supplier that I do it. Otherwise I could have bought
    the license fpr LR5 via internet.
    Best regards
    Karl
    2015-01-02 13:42 GMT+01:00 kglad <[email protected]>:
        I bought a cd with Lightroom 5. After installation and registration I
    am not able to use 'help' function and I cannot update the software. I
    anyone able to give me a hint how to handle it? Thank you ind advance Karl
    kglad <https://forums.adobe.com/people/kglad?et=watches.email.outcome>
    marked Keith_Reeder
    <https://forums.adobe.com/people/Keith_Reeder?et=watches.email.outcome>'s
    reply on I bought a cd with Lightroom 5. After installation and
    registration I am not able to use 'help' function and I cannot update the
    software. I anyone able to give me a hint how to handle it? Thank you ind
    advance Karl
    <https://forums.adobe.com/thread/1669640?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/7059196?et=watches.email.outcome#7059196>

  • I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add

    I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add APN. Now when i switch to safari its showing you are not subscribed for cellular data. But I am able to use data on other phone.
    Will you please help me in this regard?
    Another issue, since i bought my new iphone there is dust inside back main camera.
    Your advises are highly appreciated.

    Hey Shaiju isac,
    I'd take a look at the following article, it'll guide you though steps to you troubleshoot cellular data issues on your iPhone:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Cheers,
    David

  • After upgrading to Lion, not able to use Quicken 2007.  Get the following message: PowerPC applications are no longer supported.  Anyone has a solution?

    After upgrading to Lion, not able to use a PowerPC Application (Quicken 2007).  Any solution?

    Quicken Essentials 2010 has less features than Quciken 2007.  Keeping track of investments is one feature I need and Quicken Essentials does not include that function.  I may have to consider others financial software, such as iBank4, Money4, iFinance, and Money Well.

  • After updating my iphone 5s to ios 8.0.2, I am not able to use watsapp and line properly, iphone automatically comes out of the apps after few mins. Please suggest how to fix it.

    After updating my iphone 5s to ios 8.0.2, I am not able to use watsapp and line properly, iphone automatically comes out of the apps after few mins. Please suggest how to fix it.

    I had this same problem with what's app.  There is a new update for the app on the app store which is compatible with ios8.  Update the app, or delete it and re-add it.  I found a lot of apps weren't compliant with ios8, but after updating everything worked fine.

Maybe you are looking for

  • Add Trailing  zeros to a number or char

    Hi Experts,            my material number is stored in the form of Character so i want to add a trailing zero to that number            supposr for example my material number is ccf5a   so i want add zeroes to make it 18  like   cf5a0000000000000 cha

  • How to get UIGraph as image ?

    Hi, I bind my chart component to managed bean. It's represented as oracle.adf.view.faces.bi.component.graph.UIGraph class. I need programmaticaly get it as gif or jpeg. How to do it ? Kuba

  • V. 10.0.1 Photoshop CS3 Extended quits funny

    After I quit Photoshop properly, a message comes up that says Photoshop has unexpectedly quit. This is hilarious, in a sense because I have quit Photoshop and it is not unexpected that it has quit. Anyway, extreme humor aside, I want to trash prefere

  • How to convert files into DAT?

    Does anyone know how to convert files into DAT? Not The other way around please.

  • Illustrator-photoshop pixel scale integration

    If I export to a jpg file an Illustrator created object that measures via the ruler 5 pixels (appx.) length and then open that file in Photoshop, the object is 50 pixels (appx.) in length.  Then if I try to compensate by reducing the scale of the Pho