Problem with a Dynpro field (type numc)

hi everybody.
I'm developping a ModulPool application in wich i have 2 RadioButtons with 2 textbox fields.
What i pretend to do is, when the user clicks a radiobutton and strikes Intro, enable the corresponding textbox field and disable the other one.
My code runs fine, but i have a little problem. When I loop the screen table, to set the appropiate value to the 'input' property, in this case, when i try to disable it (input = '0'), I get a zero character in that field. This field has NUMC type, i'm sure this is the problem
'cos i've got no problem with the other field (type char). But i can't solve it.
Anybody's got an idea?
Thanks

What you are seeing is the normal behavior of a numeric field represented by the SAPgui.  This is how all numeric fields are displayed via SAPgui.  If you don't want to see the 0,  then you just change the field type to CHAR and handle accordingly.
Regards,
Rich Heilman

Similar Messages

  • Problem with reading Dynpro fields

    Hi,
    I have some tabstrips. On each tabstrip, I have a
    container for an ALV and on the bottom I have another
    subscreen for some input fields.
    Under the subscreen I have some buttons to insert, delete
    etc...
    The fields in my subscreen I have bound to DDIC table
    fields and I have defined that in my program under TABLES
    in my declaration.
    So when I write something in the fields, their content
    has been written to my table-structure defined in TABLES.
    If you double click on a line in the alv, the content of
    the line has been written to my dynpro fields in the
    subscreen.
    My problem now is:
    When You have double clicked a line and the content was
    filled in my dynpro fields and I change the values after-
    wards, I do not have the changed field content in my
    TABLES structure. It´s because, the framework isn´t
    processing my PBO of the subscreen.
    How can I call the pbo manually to get the new field
    content, when I´m pressing the button on the parent
    dynpro?
    I hope it´s possible to understand my problem!
    Cheers Arne

    Hi again,
    I have tried both functions Dynpro_field_get and read_values, but I´m not getting any content. With dynpro_field_get, I´m getting the fieldnames, but not the values!
    I have seen, when I´m pressing enter, after I have typed in the new field values, my TABLES structure has been updated. But I think, it´s not very user friendly, if You have to pay attention to press enter before pressing the "add" button...
    Any other idea? Or do You know why I´m not getting any content?
    Cheers Arne
    Message was edited by: Arne Hein

  • Problem with offset value: field type p does not permit subfield access

    Hi experts,
    In my table am having one field ,
    Filed name : planfinish
    data type : dec    Length : 15
    data store in this field is :    12.05.2010 03:59:00 this format.
    i want to remove year 2010 from this above data by using offset.
    i have try with code :   lv_year = lv_planfininsh+6(4).      n also declare lv_year as dec 15.
    still am getting error. field type p does not permit subfield access
    kindly suggest on this.
    thx in advance.

    a packed decimal field (P) is a numeric field that is always 8 bytes long.  The (15) is the DISPLAY or max number of digits characteristic.  Like all true numeric types (not 'N'), offset is meaningless and you do NOT have format 12.05.2010 03:59:00  in a P field!  You have 15 digits and a sign, and any decimal point is implied by your data declaration.
    Look at keyword CONVERT if this is a timestamp field.

  • Sql Devloper 4.0.0.13 - problems with displaying user data types

    Hi,
    I have installed new version of sqldeveloper and have discovered some problems with displaying user data types. The data that is described as VARCHAR2 are displayed with ‘???’.
    The problem persist in table view, script output and exported files.
    My type is described as follows:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    when make select column from table that contains this type I get next results:
    CASE 1:
    SQLDeveloper Version 3.2.20.09; Build MAIN-09.87; JDK 1.6.0_43; Windows 7 64 bit
    Select:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result:
            ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'TRAIK','TURBE','BABANA','3452','0',NULL)
    END CASE 1;
    CASE 2:
    SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_40; Windows 7 64 bit
    Select1:
    select id, adresalokacija
    from dptr_saglasnosti
    where id = 1;
    Result1:
    ID ADRESALOKACIJA
             1 COMP.DPTY_ADRESA(124,4913,'???','???','???','???','???',NULL)    
    But if I select one element it is displayed normal.
    Select2:
    select id, a.adresalokacija.opcina
    from dptr_saglasnosti a
    where id = 1;
    Result2:
    ID ADRESALOKACIJA.OPCINA
             1 TRAVNIK                  
    END CASE 2;
    I have tried this scenario on three different pc with same output.
    Pleas help me to get rid of the '???' in result.
    Best Regards,
    Omer

      I tried on SQLDeveloper Version 4.0.0.13; Build MAIN-13.80; JDK 1.7.0_45; Windows 7 64 bit; NLS setting is default
    all data can show,No ??? in result
    Test step as following:
    create or replace TYPE "DPTY_ADRESA" AS OBJECT
      ID_DPSF_OPCINE                                         NUMBER,
      ID_DPSF_MJESTA                                        NUMBER,
      OPCINA                                            VARCHAR2(100),
      MJESTO                                            VARCHAR2(100),
      ULICA                                 VARCHAR2(200),
      BROJ                                   VARCHAR2(20),
      SPRAT                VARCHAR2(20),
      OSTALO                             VARCHAR2(100),
      CONSTRUCTOR FUNCTION dpty_adresa RETURN SELF AS RESULT
    alter TYPE "DPTY_ADRESA" add MEMBER FUNCTION dajAdresu RETURN VARCHAR2 cascade;
    CREATE TABLE dptr_saglasnosti (
    adresalokacija        DPTY_ADRESA,
      id    number);
      INSERT INTO dptr_saglasnosti VALUES (
      DPTY_ADRESA (65,225,'Vrinda Mills', '1-800-555-4412','sss','aaaa','eeeee','attta'),1 );
    select id, adresalokacija from dptr_saglasnosti where id = 1;
    ID ADRESALOKACIJA
    1    HRCP.DPTY_ADRESA(65,225,'Vrinda Mills','1-800-555-4412','sss','aaaa','eeeee','attta')

  • Problem with the quantity field

    hi every one
    i am facing a problem with the quantity field (vbap-kwmeng)
    as per my requirement i need to display this quantity field along with some other item fields from VBAP in an alv grid.
    among all the fields displayed in the alv grid only this quantity field is editable(end user can change this quantity)
    once end user changes this quantity and press save button i need to capture this new quantity in my internaltable.
    problem is input of length of quantity is 15 and the output length is 19
    so when i am pressing save
    say my quantity is 50 when i am pressing save '0.050' is coming because of the length difference
    how can i capture the original changed value.
    vamsi

    what about define two fields in  you inner table ,one as char and the other as vbap-kwmeng, you can show the char one in the ALV gird , when user input value and press SAVE ,you can move the value to vbap-kwmeng.
    you can test it,mybe some one has one better idea.

  • Problem with adding new field to the mass change screen in FBL5N

    Hi,
    We have a problem with adding the field XREF3 to the mass change screen. We followed steps described in the SAP Note 640908, but the result is that when we try to mass change some documents in FBL5N and enter some values in the mass change screen, a message appears: "Please enter at least one new value" and nothing is changed.
    If you have faced with such a problem, we would be grateful if you give us some tips.
    Regards,
    Miłosz Włodarczyk

    The problem has been resolved: we didn't activate a code in SE80.

  • Problem with non currency field calculations to become curr

    Hi guys,
    Is there a problem if I have a QUAN field and DEC field forming to become a CURR field? I mean a have this computation below:
    v_var1 = v_var2 * v_var3.
    where v_var1 type QUAN, v_var2 type DEC and v_var3 type CURR...
    would it incur any problem with the calculations?
    Thanks!

    Hi,
    Did you try ?
    Worked for me flawlessly
    tables bseg.
    parameters : qty like bseg-menge,
                       amt like bseg-dmbtr.
    data : result like bseg-dmbtr.
    result = qty * amt.
                write result.
    The only issue is that the result will be rounded upto 2 decimals.
    But if you declare result as
    data : result(13) type p decimals 3.
    Then there will be no issues.
    regards,
    Advait
    Edited by: Advait Gode on Oct 3, 2008 3:59 PM

  • Problem with SAPbouiCOM.EditText field

    Hey Everyone,
    I am experiencing a problem with an edit text box on a form that I created. For some reason when I go into the add mode on the form and type into the field the text disappears as soon as I go to another one of the controls on the form.
    If i leave the cursor in that text box the text stays. Has anyone experienced this problem before?
    Thanks in advance.

    Laura,
    I had this problem and the reason was about the datasource.
    If you item is linked to a UserDataSource, there is no problem.
    If you item is linked to a dbdatasource, you have to ensure the datasource contains at least one record.
    Can you show us the part of xml file, or VB code that you use to create your item on you form.
    the event that you can catch would be et_validate. But I think it's fired when your text box is linked to datasource
    HTH
    Sebastien

  • Problem with Matrix columns of type Float

    Hi all!
    I need to show in a matrix column a quantity with the number of decimal set in SBO. My code is:
    Dim dt As SAPbouiCOM.DataTable = oFrm.DataSources.DataTables.Add("PCKG")
    dt.Columns.Add("clQta", SAPbouiCOM.BoFieldsType.ft_Float, 30)
    oCl = oGrid.Columns.Add("clQta", SAPbouiCOM.BoFormItemTypes.it_EDIT)
    oCl.Width = 100
    oCl.TitleObject.Caption = tr.getTranslation("clQta") '"Quantità"
    oCl.DataBind.Bind("PCKG", "clQta")
    In this way the number of decimal that i see is 2 because the field type is Float, but in SBO parameterization i have set 4 decimal and would like to see the same number of decimal set in SBO parameterization.
    How can I do?
    Thanks

    Hi,
    If i know well, this is now a limitation of B12007 version. in 8.8 this problem will be resolved.
    othwewise of you set all the prices, Quantities, Sumarizes to 4 it will display for. I think it is now displaying the Quantity settings. (float)
    Regards,
    J.
    Edited by: János Nagy on Oct 7, 2009 12:50 PM

  • Contract - problem with attachements (empty field in LOIO_OBJID)

    Hi Guys,
    We are using extended classic scenario of SRM 4.0 (SRM Server 500) and our latest support package is SAPKIBKS12. We have the following problem with contracts.
    Sometimes when an attachment is added to a contract the system does not fill the following fields in tabel BBP_PDATT.
    LOIO_CLASS: Normally filled with BBP_L_DOC
    LOIO_OBJID: Normaly filled with a GUID size datastring
    Whenever this happens and later on the contract is changed and released the system will raise an abort. We tried the following notes but no good result.
    891293,919467,932602,964065. Some other notes that might be possible are 1042826/1085700/1083063 but we also don't have good experience with these ones.
    Can anyone give us advice about two things.
    1) Is there a way to fill the empty fields in BBP_PDATT so that existing contract will work properly again?
    2) Does anyone know why this problem occurs and how to fix it for new contracts?
    Hope to hear from you,
    Arie

    Thankyou for the reply. I have made following changes but still not working. I am creating the inquiry and customer material is not getting populated. Please guide in resolving the issue.
    DATA : W_ENQUIRY_ITEM_INX LIKE BAPISDITMX OCCURS 0 WITH HEADER LINE.
    W_ENQUIRY_ITEM_INX-ITM_NUMBER  = THEAD-ITEMNO.
          W_ENQUIRY_ITEM_INX-UPDATEFLAG  = 'X'.
          W_ENQUIRY_ITEM_INX-CUST_MAT22 = 'X'.
    APPEND W_ENQUIRY_ITEM_INX.
    CALL FUNCTION 'BAPI_INQUIRY_CREATEFROMDATA2'
       EXPORTING
       SALESDOCUMENTIN               =
         INQUIRY_HEADER_IN             =  W_ENQUIRY_THEAD
      IMPORTING
        SALESDOCUMENT                 = W_NUMBER
       TABLES
        RETURN                        = W_RETURN
        INQUIRY_ITEMS_IN              =  W_ENQUIRY_ITEM
        INQUIRY_ITEMS_INX             =  W_ENQUIRY_ITEM_INX
         INQUIRY_PARTNERS              = T_INQUIRY_PARTNERS

  • Problems with the 'Comments' field in iTunes

    First, sorry for my english (I'm danish).
    I've read a lot of threads here and everywhere else, but can't find a solution for my exact problem. I use Windows Vista and the newest version of iTunes.
    Most of my mp3 songs (35.000) are put directly in album folders to the folder 'D:My Music from another computer via a USB drive and the songs already have id3 tag information on them.
    I then add the albums to iTunes and most of my tag information is now updated in iTunes. Names, Artists, Genre, Year, everything is okay. By the way the songs have ID3v2.3 tag information. I see that in my Mp3tag v.2.42 application.
    But the problem is with the 'Comments' field:
    Those tags (originally put to the songs directly in the proberties of the song in Windows Explorer) will simply not transfer to iTunes 'Comments' field. And if I write something in the iTunes 'Comments' field this will not show up in the fields properties in windows Explorer. It looks like the 'Comments' fields in iTunes and in the proberties in the song are not connected at all!?
    I then found out, I could let iTunes convert the ID3 codes, but nothing happens except from when using v. 1.0 or 1.1, because then the comments tag are transferres, but unfortunately all the tags will only show 30 characters!!!
    And there's also a different story:
    A few albums though are put directly on my computer by using iTunes to import the CD. These songs have ID3 v.2.2 tags, so I guess iTunes import files in that format?
    And here it's a little different story. If I put comment data directly to the file proberties in Windows Explorer (after the CD's been imported to iTunes), the comments will show up in iTunes, but only as several 0 and 1 digits! On the other hand, if I put information directly in iTunes 'Comments' field it wil show up correctly in the file proberties! But it's only a few songs/albums that are handled that way.
    Well, bottom's line, I want to see my comments tags (which are allready there in the song's proberties) when I browse my music in my folders in Windows Explorer and I want to see the exact same comments if I go to browse my music in iTunes. That should not be a problem ... but it is not ...
    Can I please get a solution or at least an explanation, and hopefully in not too tecnical terms.

    I, too, hope someone will answer this! I am hoping to catalog my entire CD collection in iTunes and I want to include the storage box number somehow, thinking that "comments" would be a good place to do so. If I cannot do that I'll try to find a program other than iTumes to do it. Does anyone have any suggestions on this topic? ...perhaps I need to open a new thread?
    THANKS!
    Doug

  • Problem with Update Text fields in Infoset

    Hi experts,
    Here i would like to rephrase the question. Normaly while working with Infosets, when press "update text fields" button, those fields having text is updated. But one of my field is not updated. I need some help from you for that.
    One more question i've that my field is having check table so i would like to know how exactly the text field is updated.
    scenario.
    Customized IT9320 has field prt_pos added. This field is having check table T528B. But i want text field to be attached is IT1000-STEXT.
    How this can be done, because i suspect that just using check table field IT1000-STEXT is not attached to IT9320-prt_pos.
    Please help. I'm really got stuck here.
    Thanks a lot,
    Toral.
    Hi,
    I'm working on customised Infotype. I need to add one new customised field ie Present Position. This field has number as well as text associated with it. There is a check table attached with this field so that text can be displayed alongwith number.
    I need this field in SAP/Adhoc query. But when i go to SQ02 this fields shows only value. Text is disabled for this field. I'm not sure why is it so.
    I looked into other infotype which as one field using same data element, and that field shows both value as well as text. Please help me to rectify this issue for present position field.
    Thanks,
    Toral.
    Edited by: Toral Sheth on Jul 4, 2008 2:01 PM

    You would be much better off with one multi-line form field.
    There are many problems with trying to determine when one is at the end of the display field with text entry.

  • Problem with long text field.

    Hi all,
    I have a problem when I try to concatenate two fields.
    It seems the new field only is 254 characters long?
    Here is my syntax:
    data: w_long_text(1000).
    clear w_long_text.
        loop at iline.
          concatenate w_long_text iline-tdline into w_long_text separated by space.
        endloop.
    I'm sure the text is longer then 254 becuase I can see the text in an Activity in the Sap Crm system.
    Best Regards
    Frode

    Hi thomas
    wat i would suggest you is better take an internal table with long_text(255) field .
    data : begin of it_text occurs 0,
                long_text(255),
              end of it_text.
    clear : w_long_text,it_text.
    loop at iline.
    concatenate w_long_text iline-tdline into w_long_text separated by space.
    <b>it_text-long_text = iline-tdline.</b>
    append it_text.
    clear it_text.
    endloop.
    and when displaying the text keep that in a loop and print it.
    This way u can display the whole text irrespective of the char length.
    Reward points if helpful
    Regards
    Zarina

  • Problem with select max(FIELD)

    I have a table with the following fields:
    PARTID     ART_TYP     AEC     SERVICE     PLANT     STATUS
    4711     A     A     2     P     230
    4711     A     B     0     P     230
    4712     A     B     2     P     230
    4713     A     B     0     P     230
    I need a sqlscript where I get the records with MAX(SERVICE)
    In this example
    4711     A     A     2     P     230
    4712     A     B     2     P     230
    4713     A     B     0     P     230
    I tried this with:
    select distinct partid,
         art_typ,
         aec,
         max(service),
         plant,
         status
    from t_msltmp
    group by partid,art_typ,aec,plant,status
    But I get both records of partid=4711
    Can someone help me with this problem
    kind regards
    Menk Slot

    ROW_NUMBER() requires explicit ORDER BY clause in OVER:
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions105a.htm#86312
    SQL> select partid, art_typ, aec, mx, plant, status
      2  from(select partid,
      3                art_typ,
      4                aec,
      5                max(service) over (partition by partid) mx,
      6                row_number() over (partition by partid order by service desc) rn
      7                plant,
      8                status
      9         from t_t)
    10  where rn = 1
    11  /
        PARTID A A         MX P     STATUS
          4711 A A          2 P        230
          4712 A B          2 P        230
          4713 A B          0 P        230Rgds.
    P.S.
    Another way to get this (more tedoius):
    SQL> select partid,
      2  max(art_typ) keep (dense_rank first order by service desc) art_typ,
      3  max(aec) keep (dense_rank first order by service desc) aec,
      4  max(service) service,
      5  max(plant) keep (dense_rank first order by service desc) plant,
      6  max(status) keep (dense_rank first order by service desc) status
      7  from t_t
      8  group by partid
      9  /
        PARTID A A    SERVICE P     STATUS
          4711 A A          2 P        230
          4712 A B          2 P        230
          4713 A B          0 P        230Message was edited by:
    dnikiforov

  • Problem with multiple 'selectOneMenu' fields

    I have a JSF web page with 2 selectOneMenu fields. The first field is populated as the page loads,
    the second field is populated from the value selected in the first field. The second field value is
    associated to a variable in the backing bean which is used for further processing when the
    command button is pressed.
    on pressing the command button the following error message appears :
    jsf E com.sun.faces.context.FacesContextImpl addMessage Adding Message[sourceId=form1:menu2,summary=Validation Error: Value is not valid)
    Below is my JSF page and backing bean. Any help would be appreciated
    <h:form styleClass="form" id="form1">
         <BR>
         <h:selectOneMenu styleClass="selectOneMenu" id="menu1" valueChangeListener="#{empDetailsBackingBean.EmpSelectDetails}" onchange="submit()">
         <f:selectItems value="#{empDetailsBackingBean.selectItems}"/>
         </h:selectOneMenu>
         <BR>
         <h:selectOneMenu styleClass="selectOneMenu" id="menu2" value="#{empDetailsBackingBean.keyDetails}">
         <f:selectItems value="#{empDetailsBackingBean.selectItems1}"/>
         </h:selectOneMenu>
         <BR>
         <hx:commandExButton type="submit" value="Submit" styleClass="commandExButton" id="button1" action="#{empDetailsBackingBean.EmpDetails}">
         </hx:commandExButton>
    </h:form>
    public class EmpDetailsBackingBean
         private String c12 = "";
         private String c4 = "";
         private String empNo = "";
         private String title = "";
         private String name = "";
         private String add1 = "";
         private String add2 = "";
         private String add3 = "";
         private String postCode = "";
         private String keyDetails = "";
         private List selectItems;
         private List selectItems1;
         private HoldDetails details;
         public EmpDetailsBackingBean()
              C4Utility util = new C4Utility();
              selectItems = util.getDetails();
              EmployeeUtility util1 = new EmployeeUtility();
              selectItems1 = util1.getDetails("", "Y");
         public void EmpSelectDetails(ValueChangeEvent vce)
              c4 = (String) vce.getNewValue();
              EmployeeUtility util = new EmployeeUtility();
              selectItems1 = util.getDetails(c4, "Y");
         public String EmpDetails()
              c12 = keyDetails.substring(0,6);
              empNo = keyDetails.substring(6,12);
              EmpDetails util = new EmpDetails();
              details = util.getEmpVals(c12, empNo);
              c12= details.getC12();
              empNo = details.getEmpNo();
              title = details.getTitle();
              name = details.getName();
              add1 = details.getAdd1();
              add2 = details.getAdd2();
              add3 = details.getAdd3();
              postCode = details.getPostCode();
              return"";
         public String getAdd1()
              return add1;
         public void setAdd1(String add1)
              this.add1 = add1;
         public String getAdd2()
              return add2;
         public void setAdd2(String add2)
              this.add2 = add2;
         public String getAdd3() {
              return add3;
         public void setAdd3(String add3)
              this.add3 = add3;
         public String getC12()
              return c12;
         public void setC12(String c12)
              this.c12 = c12;
         public String getEmpNo()
              return empNo;
         public void setEmpNo(String empNo)
              this.empNo = empNo;
         public String getName()
              return name;
         public void setName(String name)
              this.name = name;
         public String getPostCode()
              return postCode;
         public void setPostCode(String postCode)
              this.postCode = postCode;
         public String getTitle()
              return title;
         public void setTitle(String title)
              this.title = title;
         public HoldDetails getDetails() {
              return details;
         public void setDetails(HoldDetails details) {
              this.details = details;
         public String getKeyDetails() {
              return keyDetails;
         public void setKeyDetails(String keyDetails) {
              this.keyDetails = keyDetails;
         public List getSelectItems() {
              return selectItems;
         public void setSelectItems(List selectItems) {
              this.selectItems = selectItems;
         public List getSelectItems1() {
              return selectItems1;
         public void setSelectItems1(List selectItems1) {
              this.selectItems1 = selectItems1;
         public String getC4() {
              return c4;
         public void setC4(String c4) {
              this.c4 = c4;
    }

    I haven't taken the time to read your code, but the error message "Value is not valid" mostly means that the value of f:selectItems is dirty.
    If you understand generics, this one clearly explains the usage of h:selectOneMenu:
    JSF<h:selectOneMenu value="#{myBean.selectedItem}">
        <f:selectItems value="#{myBean.selectItems}" />
    </h:selectOneMenu>MyBeanprivate T selectedItem;
    private List < SelectItem < T, String > > selectItems;
    // + getters + setters
    // T is the Object you want to select. String is the label for the menu.
    // think away the spaces surrounding < and >, the parser of this forum is a bit crappy ;)

Maybe you are looking for

  • Steps to send data from BI 7.0 to PI in XML format...

    Hello everybody, Can somebody share any direct link to a document or thread where I can find step by step details as to how to send data from BI 7.0 to PI in XML format? I extracted data from ODS objects into CSV files through Open Hub Destination be

  • IPhone contacts disappeared after update to 4.1.

    Updated my iPhone 3G to 4.1 a few days ago and now all my contacts have disappeared. I let iTunes backup my phone before the update and I can see the backup in Preferences but how do I use the backup? I'd be very grateful for some help - I recently l

  • PREREQISITE SETTINGS IN R/3,SLD,XI

    hi could you tell me who does actually sets the prerequisite settings in real time for the scenarios involving IDOC, RFC......which needs some settings as everyone will not hv access to some components,; Please elucidate this as I need to face interv

  • Skype doesn't open, Windows 7 ult, 32 bit

    Hi all, Apologies if this is a much repeated post, but I can't find a specific solution. Basically, Skype will no longer open on my parents computer. They don't know if they changed anything for this to happen (ie sw updates etc). At present when you

  • Unable to create applications

    Hi guys, I am compeltely new to APEX, so sorry if this is something basic.. I'll run through my setup and the issue, and hopefully someone can offer me some advice on how to fix it! - Server: Windows 2003 server with pure default Oracle XE installed.