Refresh datablock after Save

I am working on an Oracle Form.
There is a datablock displayed in tabular form. On execute query the data is displayed in alphabetical order.
The requirement is that when someone presses the create new record button on the toolbar and then enters a new record. After saving the data must be displayed in alphabetical order automatically.
How can I acheive this?
Thanks,
Amir

After a bit more investigation I have found the solution:
Use KEY-COMMIT trigger and perform an explicit commit and then execute_query
Thanks,
Amir

Similar Messages

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Web Service do not work after save in Designer ES2 SP1

    Dear all,
    I am trying to migrate 8.2.1 process to ES2.
    Although it have some bugs, but the process are working fine when using ES2 without any SP.
    One day we installed SP1 for ES2 and hopeing for some bugs we found fixed, but find none of them fixed... oh well, so we continue the migration.
    And the problem happen when we try to modify the form for some testing, we find that even we *did not* modify anything in the form, if we pressed the save button and deploy the form, all the web service related code in the form will stop working.
    Anyone have any idea about this?
    Thanks in advance.
    Regards
    Bill

    Hi Paul,
    Thanks for the suggestion.
    Already tried to update the dataconnection by right click at data view, and choice "Refresh Data View", but that doesn't help, would like to know are there any others way to do so?
    I already open a case with the support, but it seem that the engineer in APAC region have a very slow response time...
    Just wonder if I can send the case to others support center with better response time.
    I tried to compare the form before and after save and find that some information may missing in the post-SP1 form.
    In the pre-SP1 from, I can find a <dd:dataDescription> section for every web service used in the form, but in the post-SP1 form they are missing.
    I tried to add that section back and it will make the web service usable again, but the problem is I need to do that every times I modify anything, and I also need to create this section for a every new web service added to the form...
    Regards
    Bill

  • Where does an abap program get stored after save?

    Where does an abap program get stored after save? ...plzz tell
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 11:28 AM

    this program download the code to presentation server
    Analyse this code.
    CHECK IT IN DEBUGGING
    REPORT zdownload_source MESSAGE-ID zabap.
    TABLES: trdir.
    SELECT-OPTIONS: repo FOR trdir-name.
    PARAMETERS: path(60) TYPE c DEFAULT 'C:\programs\'.
    DATA: BEGIN OF tabsource OCCURS 10,
          source(72) TYPE c,
          END OF tabsource.
    DATA: BEGIN OF tabtext OCCURS 50,
          tab LIKE textpool      ,
          END OF tabtext.
    DATA: BEGIN OF tabrdir OCCURS 100,
          rdir LIKE trdir,
          END OF tabrdir.
    DATA: filename LIKE rlgrap-filename,
          mode TYPE c VALUE ' ',
          rdirrows TYPE i,
          sourcerows TYPE i,
          rc TYPE i,
          length TYPE i.
    FIELD-SYMBOLS: <p>.
    DATA: ok TYPE i VALUE 0,
          fail TYPE i VALUE 1.
    AT SELECTION-SCREEN.
      DATA: i TYPE i.
      DESCRIBE TABLE repo LINES i.
      IF i <= 0.
        SET CURSOR FIELD repo.
        MESSAGE i001 WITH 'se message class'.
      ENDIF.
    START-OF-SELECTION.
      CONDENSE path NO-GAPS.
      length = strlen( path ).
      SUBTRACT 1 FROM length.
      ASSIGN path+length(1) TO <p>.
      IF <p> <> '\'.
        ADD 1 TO length.
        ASSIGN path+length TO <p>.
        <p> = '\'.
      ENDIF.
      SELECT * FROM trdir
              INTO TABLE tabrdir
              WHERE name IN repo.
      DESCRIBE TABLE tabrdir LINES rdirrows.
      CHECK rdirrows > 0.
      LOOP AT tabrdir.
        MOVE tabrdir TO trdir.
        PERFORM download_sourse USING rc.
        CHECK rc = ok.
    *    PERFORM download_textpool USING rc.
      ENDLOOP.
      write :/ sy-dbcnt , ' number of programs downloaded'.
    *&      Form  download_sourse
    *       text
    *      -->P_RC  text
    FORM download_sourse USING  rc.
      rc = fail.
      CLEAR: tabsource, filename.
      REFRESH: tabsource.
      READ REPORT trdir-name INTO tabsource.
      DESCRIBE TABLE tabsource LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = PATH
          string2         = TRDIR-NAME
          string3         = '.ABA'
       IMPORTING
         string          = FILENAME
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    WRITE: 'AAAA'.
      ENDIF.
      CONDENSE filename NO-GAPS.
      PERFORM download TABLES tabsource USING filename rc.
    ENDFORM.                    " download_sourse
    *&      Form  download_textpool
    *       text
    *      -->P_RC  text
    FORM download_textpool USING    p_rc.
      rc = fail.
      CLEAR: tabtext, filename.
      REFRESH: tabtext.
      READ TEXTPOOL trdir-name INTO tabtext LANGUAGE sy-langu.
      DESCRIBE TABLE tabtext LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = path
          string2         = trdir-name
          string3         = '.TXT'
       IMPORTING
         string          = filename
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM download TABLES tabtext USING filename rc.
    ENDFORM.                    " download_textpool
    *&      Form  download
    *       text
    *      -->P_TABTEXT  text
    *      -->P_FILENAME  text
    *      -->P_RC  text
    FORM download TABLES   tabtext
                          USING filename
                           rc.
      rc = fail.
      CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
    *     BIN_FILESIZE                  = ' '
    *     CODEPAGE                      = ' '
         FILENAME                      = filename
         FILETYPE                      = 'ASC'
         MODE                          = 'MODE'
    *     WK1_N_FORMAT                  = ' '
    *     WK1_N_SIZE                    = ' '
    *     WK1_T_FORMAT                  = ' '
    *     WK1_T_SIZE                    = ' '
    *     COL_SELECT                    = ' '
    *     COL_SELECTMASK                = ' '
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
        TABLES
          data_tab                      = TABTEXT
    *     FIELDNAMES                    =
    *   EXCEPTIONS
    *     FILE_OPEN_ERROR               = 1
    *     FILE_WRITE_ERROR              = 2
    *     INVALID_FILESIZE              = 3
    *     INVALID_TYPE                  = 4
    *     NO_BATCH                      = 5
    *     UNKNOWN_ERROR                 = 6
    *     INVALID_TABLE_WIDTH           = 7
    *     GUI_REFUSE_FILETRANSFER       = 8
    *     CUSTOMER_ERROR                = 9
    *     OTHERS                        = 10
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc <> 0.
        WRITE: / sy-subrc, ' message declare '.
      ENDIF.
      rc = sy-subrc.
    ENDFORM.                    " download
    regards.
    santhosh reddy
    <REMOVED BY MODERATOR>
    Edited by: Santhosh Reddy on Feb 13, 2008 6:48 PM
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 12:00 PM

  • Windows 8.1 desktop refresh required after closing mstsc

    In Windows 8.1 Pro with Update (64-bit), in desktop mode, after closing the mstsc app (click X in title bar) during an mstsc session to a Window 7 Ent SP1 workstation, the contents of the mstsc window remain displayed and a desktop refresh (right-click->refresh
    on the desktop) is required to refresh the desktop to clear the stale content from the display. This does not happen when using mstsc to connect to a legacy Win XP Pro workstation.
    Video adapter is an integrated Intel P4600/P4700 with latest drivers provided my Microsoft Update (v10.18.10.3621) in multi-monitor (3 monitors) mode. The mstsc is only active on one monitor.
    Anyone else seen this issue?

    Monitor refresh rate (all 3 of them is set to 60hz). Only options on the primary display are 59 or 60Hz.
    Setting the refresh rate to 59Hz produces same results. Setting back to 60Hz produces same results.
    Sometimes part of the desktop on the monitor with the mstsc window needs to be refreshed, sometimes all of it under the mstsc windows needs to be refreshed, and sometimes, but rarely, the desktop never needs to be refreshed after closing mstsc to this specific
    target.
    The mstsc session is not a full screen session and is opened as per:
    C:\Windows\System32\mstsc.exe "<path to rdp file>.rdp" /w:2560 /h:1530
    on a 30" display set for 2560x1600, 32bpp, 60Hz
    To clarify, the specific issue manifests when I disconnect the session -- ie. clicking the X in the title bar, then clicking OK in the dialog "Your remote session will be disconnected". The "Your remote session will be disconnected" dialog
    disappears (sometimes), and the mstsc windows title bar disappears but some or all of everything else that was inside the mstsc windows (from the remote system) remains displayed (even the mstsc bottom window border) until the desktop is refreshed.
    I do note that if I set the mstsc session to full screen and then close/disconnect the session while it is in full screen, that the refresh required after disconnect issue does not manifest.
    I am not sure if this is a functional issue in the mstsc client in Windows 8.1 (file version 6.3.9600.16384) or is more generally display/explorer specific. If the issue is broader, I am only noticing it with mstsc.
    I've also updated to the latest Intel HD Graphics driver (rel: 2014-08-29) and no difference.

  • Badi or user-exit for QA32 after save

    I need a badi or user exit to execute exactly after save in QA32 ..I tried belows but they are not that i want
    QPL1_SUBSCREEN_ADDON
    INSPECTIONLOT_UPDATE
    Check these Exits:
    QEVA0004 Exit for changing information line in usage decision he
    QEVA0005 User subscreen for displaying add. data for usage decis
    QEVA0006 Entry to usage decision transactions
    QEVA0007 UD: Control of compulsory comment or long text presetti
    QEVA0008 Usage decision: Customer function key (e.g. to cancel U
    QEVA0009 UD: Predefinition of quantity to be posted to sample st
    QEVA0010 UD: Usage decision check
    QLCO0001 QM: Call alternative costs report from UD
    QSS10001 Possibility of calling a different print report

    Hello Tuncer,
    have you checked the BADI QE_SAVE? This is the last possible chance of changing data on saving a QM transaction and should be active in QA32.
    The only other solution I can come up with is a follow-up action i.e. for the UD-code
    Hope this information proves usefull.
    Regards
    Isabelle

  • Auto po creation after save sales order.

    Hi, Experts,
    A s per  my business requirement, We have mapped configuratin for auto PR creation at a time of order if stock not available, But system not create automatic PO after save sales order. I want to crate Automatic PO after save sales order, it is possible i know , But for that which type for configuration require i don't know, can anybody give me solution for this issue.
    Thankls a lot in advance,
    Regards:
    Happy

    Hi,
    It's possible to create PO automatically after sales order is saved.
    1. Set up back-to-back, i.e. PR can be automatically created after the SO is saved.
    2. Item category - make sure 'Create PO automatically' checkbox  is ticked.
    3. Enterprise Structure --> Sales Organization - ensure that PO type, purchasing group etc. is maintained.
    4. Transaction code SWETYPV - Ensure that both checkboxes are ticked for BO (object category), BUS2032 (object type), ALECREATEE/CHANGED and ERRORCHANGINGPURORD/ERRORCREATINGPURORD.
    5. Optional: You could execute BD86 to check for consistencies (note that you can still get it work even if BD86 shows errors)
    Regards,
    HweeLing

  • Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    I'm performing a normal "Save", not "Save As". Work flow I'm using is as follows:  Select photo in Lightroom 5.7 >" Edit In" Photoshop CC 2014 > (after working on photo is PS) > Save > close PS. Photo returns to Lightroom 5.7 in a new folder rather than next to the original. Prior to purchasing the monthly plan and upgrading to PS CC 2014, I performed this same work flow using Lightroom 5.6 and Photoshop CS6 without any issues.
    Just for fun... I attempted to move the edited file back into the original folder. I received a prompt that said the file already existed in the original folder, however I can't see it except the new folder that LR created. I tried several different sort orders, etc without any success.
    *** Follow up: Was unable to resolve the issue using Photoshop CC 2014. Uninstalled PS CC 2014 and went back to using Photoshop CS6. Return trips from LR 5.7 to Photoshop is now performing as it should: returning edited photo back to the original folder in LR 5 and placing next to the original image.
    Should anyone have a suggestion on getting Photoshop CC 2014 to do the same, I would love to be educated.
    Thanks for the help, dj_paige.

  • How to get the only the changed or newly added entries in AFTER SAVE.

    I have created table maintenance generated for a table,I want to get the newly added or changed entries while saving thats why im using AFTER SAVE event for the same,can anyone please tell me how to get the only the changed or newly added entries in AFTER SAVE.

    Hi,
    Welcome you post on the forum.
    I have moved your thread here because it is in English and should not in the language specific forum. What is your system version?
    Thanks,
    Gordon

  • Premiere pro cc losing audio after save and close

    Though I can see the wave form, audio won't play back after save, close and reopening of project.  Not every file is affected.  If I reimport track, audio will work again, but this is causing me to lose TONS of editing work when I have to start over again and then I'm afraid to close project.
    Any ideas?

    I am having this same issue in PPro CC. I am editing multi-source material from interviews that were 2-3 hours long. The audio was recorded separately and the wave files ran the entire length of the interview. 44100kHz, 16-bit wav files. It happens after I reopen the project to only some (5%?) of the audio files I imported into the project, not all.
    When I re-open the project, the audio data within the wav file will shift forward, so that the back end of the clip will show green/grey diagonal striping signifying the deadspace left when the audio data shifted forward. This is only visible when the entire file is in a sequence. In sequences where it is just a clip from the *shifted* file, the clip will either play dead space if the clip is from the end of the *shifted* file or audio from the wrong part of the file since it's time reference is shifted. The only work around is to import the file again and re-cut, but its killing my work flows. I'm editing 56 interviews, each of 2-3 hours and I can't waste time re-cutting my deliverables each time there's an a revision.

  • Status is not updated after Save in the transaction but after closing and

    Hi
    In CRM GUI and PCUI,
    1) Opening a transaction (say an Invoice)
    2) Changing the status from 'Open' to 'Completed'.
    3) Save it
    4) after save, the status shows as 'Open' (but it should show as completed) but if we come out of the transaction and come again to the same transaction, we can see now that it is in completed status.
    Is there any thing to be checked or SAP usually works like this?
    As whenever an user change the status from open to completed, an follow up activity is created, since here the user see the open status again in the same transatcion (after saving), he/she again change the status from open to completed and save.. so it now creates two follow-up activity..
    Please help.

    HI
    i had similar issue when I planned callback after saving document (function module with commit was doing sth).
    This commit caused that status displayed on my document was previous not actual. When entering document again status was ok.
    So check if there are any function modules with commit launched after you save document (of course I do not mean standard commit for saved document).
    Regards
    Radek

  • When opening the Calendar app, I am greeted with a box that says "This calendar can not be refreshed."  After clicking on "OK" another box pops up saying "The server responded with an error."  How can I get rid of these?

    When opening the Calendar app, I am greeted with a box that says "This calendar can not be refreshed," and after clicking ok there is another box saying "The server responded with an error."  How do I get rid of this.  The calendar functions all right, but just have to close both of those boxes after doing any action in the calendar app.

    Please take each of the following steps that you haven't already tried, until the problem is resolved. Back up all databefore making any changes.
    Step 1
    From the Calendar menu bar, select
    Calendar ▹ Preferences ▹ Accounts
    Choose the affected account from the list on the left and uncheck the box marked
    Enable this account
    Then check the box again. Test.
    Step 2
    Make a note of the account settings, then delete the account and add it back with the same settings.
    Step 3
    If you can't add the account, the settings may be invalid. Verify them. How you do that depends on what kind of account it is. If it's a Google calendar and you've activated 2-step verification, you need to generate an application-specific password in your Google account and enter it in place of your old password.
    Step 4
    Quit Calendar. Triple-click the line below on this page to select it:  
    ~/Library/Calendars/Calendar Cache  
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a file named "Calendar Cache" selected.
    Move the selected file to the Trash. There may be one or two other files in the same folder with names that begin in "Calendar Cache". If so, delete those files too.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Identify if new Business Partner in After Save event

    Hello,
    I need to implement some logic in the After Save event of a BP. I am doing this in DSAVE event in BUS7 transaction. In the custom function module for the event, I need to identify if the BP is a new or a modified BP.
    Can anyone suggest which is the best approach to do identify if a BP is new or modified?
    Thanks
    Ajay

    Its simple.. with BP Guid go to the BUT000 (BP: General data I) if the record is available.. then its not new otherwise its a new BP.
    Or Use this BAPI to check the BP is already avaialbe or not.. BAPI_BUPA_EXISTENCE_CHECK
    Hope this helps you...

  • User Exit or BADI for MIRO after save

    Hi
    I want to show a message in MIRO once the invoice document is create but I am unable to find a user exit or BADI after save of the MIRO transaction.
    Please guide me in this aspect.
    Regards

    try to run the below codes in a new program,it can help you to find all user exits of a t-code:
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct.
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir WHERE funcname =
    tfdir-funcname.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name EQ enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    SELECT * FROM tadir INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND
    tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

  • Corrupted after SaveAs

    Post Author: queen3
    CA Forum: General
    I use C#/VBScript (tried both) to update database location for all subreports and save new report:- open report- update location (LogOnInfo / SetTableLocation / etc);- SaveAs.Nothing more. This works fine on my machine. However, on client's computer the only subreport which uses stored procedure (others use views) is saved with fields messed up. For example, there're 2 fields: "number" and "text" with display formulas. After saving they "field source" is flipped - "number" become "text" and vice versa. However, their formulas remains the same! So after SaveAs we got "number" with text formula and "text" with number formula! This results in incorrect displaying and errors in formulas (like, "a string is required here").The fields are not swapped; there're 9 fields and they are RANDOMLY replaced with another ones, some of them even remain valid.This happens only on client's computer and only for subreport which uses stored procedure.

    FIXED!
    if you have this issue the best way to see if the dynamiclink server is in a crash loop. It will intermittently freeze your machine. On the task manager you will see it starting and quitting.
    see http://forums.adobe.com/message/3196845#3196845
    post 15. Solved it for me (the prefs in dynamiclinkmanager)
    cheers
    chris

Maybe you are looking for

  • Help Adobe Flash Player is not working

    I have a Windows 7 64 bit computer with IE 9- I am using the 32 bit IE so that is not the problem. When I go to Hulu or Youtube it tells me to update my flash player to 10.32 or higher. I tried downloading 10.1 but that did not work and it did not wo

  • How to Capitalize the first letter in a text field?

    I have a text field of first_name and one of last_name.  I want to make sure not matter what format the user inputs the the first letter is Capitalized and the rest is lower case.  Can someone tell me how this is done?  Thanks!

  • ZTE Open C doesn't have root access after running unlock tool

    I've ordered a ZTE Open C from Ebay from UK, and I wanted to unlock the bootloader. I followed the instructions from here (http://en.comebuy.com/developer-firefox-os-open-c.html), installed the EU version (I've ordered the phone from Hungary), but if

  • Why summaries are converted to character when exported to excel??

    Hi, When i export my discoverer workbooks to excel, all of my summaries are converted to character type and excel gives error messages for each cell and asks to convert them back to numbers. Its not possible to do so because Discoverer plus is a clie

  • WebServices with WLS5.1

    How can I implement web services with WLS 5.1?