1.5 Edit Table Partitions - Can not edit Values Less than Field

When editing (or more importantly to me) creating new partitions through the GUI. This slao was an issue w/1.2.1 that I recently discovered, I was hoping that it would have gotten fixed in 1.5

Just to confirm this is only a problem when editing a table? It seems fine when creating a table from scratch.
The field is disabled when editing an existing partition because there isn't (as far as I can tell) an ALTER TABLE clause for changing the less than value of a range partition.
It's a bug that when you create a new partition, while editing a table, the field is still disabled. I'll log it now.

Similar Messages

  • User can not enter value in INPUT field.

    hi experts,
    i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    Please suggest...
    points will be awarded...

    >
    ashish gupta wrote:
    > hi experts,
    >
    > i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    >
    >
    > If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    >
    >
    > Please suggest...
    >
    > points will be awarded...
    This you cannot control. because if it is enabled only in that case you can see it white.
    do that thing as suggested by basakar to add a new input field just besides first one with zero padding.
    One workaround is use an image instead of real input field. the image should have the input field as image.
    and besides it create the input field with width 0 and padding also zero.
    i think this can fulfill the requirement.
    Thanks
    sarbjeet singh

  • Why Does Disk Utility Say "This Partition Can Not Be Modified"

    I've got an external drive with three partitions. I want to expand the first partition. (It's a backup of my internal drive and it isn't big enough anymore.)
    All partitions are Journaled. All verify okay. The disk's partition map is GUID.
    Disk utility will change the size of the 2nd and 3rd partition, but when I click on the first partition, the one I want to expand, it says "This partition can not be modified."
    I've tried making another partition smaller, but that doesn't help.
    Does anyone know why? Or what I can do about it? (Can I delete that partition, make another one smaller and then create a new bigger one?)
    Many thanks in advance.
    Steve

    Thanks, guys.
    I ended up taking one of the existing partitions, making it smaller and then adding a partition of the size I needed -- created out of the space freed up. I also erased the original partition that I couldn't change and Disk Utility now says I can make it smaller, but not bigger.
    Bottom line in my case -- all partitions except the first could be made smaller. But none could be made larger. (Maybe the first one couldn't be made smaller because it was full?). That caveat -- 'you can make 'em smaller but not larger' -- is not mentioned in the help file, but that's what I saw.
    Make sense?
    Thanks again,
    Steve

  • Partitioning (range) a table values less than 'A'

    i am referring
    http://docs.oracle.com/cd/B10501_01/server.920/a96524/c12parti.htm
    http://docs.oracle.com/cd/B19306_01/server.102/b14220/partconc.htm
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    create table drop_it as select * from mv_prod_search_det2;     
    CREATE TABLE DROP_IT_P(
    PROD_DETAILS VARCHAR2(1000 BYTE),
         SIGN VARCHAR2(42 BYTE)
    PARTITION BY RANGE(PROD_DETAILS)
    PARTITION MAX_VALUE VALUES LESS THAN (MAXVALUE)
    update drop_it set prod_details=upper(prod_details);     
    72000 rows updated
    ALTER TABLE drop_it_p EXCHANGE PARTITION MAX_VALUE WITH TABLE drop_it WITH VALIDATION;     
    select * from mv_prod_search_det2
    72000 rows selected
    exec dbms_stats.gather_database_stats;
    select * from drop_it_p partition(max_value)
    ALTER TABLE DROP_IT_P
      SPLIT PARTITION MAX_VALUE AT ('B%')
      INTO (PARTITION p_a,
            PARTITION MAX_VALUE);     
    select * from drop_it_p partition(p_a);
    6785 rows selected
    select * from drop_it_p partition(p_a) where prod_details not like 'A%'     
    696 rows selectedit even shows me values that start with W,V,I,1,2,3,4,24,5 etc
    although the number is less(696out of 6785) this is undesired
    please help me eliminate these rows
    thank you
    this thread is related to tuning regexp_like by author 946207
    please refer
    tuning regexp_like
    and partitioning a table by 946207
    Edited by: 946207 on Dec 2, 2012 1:52 AM
    Edited by: 946207 on Dec 2, 2012 11:02 PM

    First, when you post related threads you should cross-link them so people have access to all of the information about the problem you are trying to work with.
    partitioning a table
    >
    it even shows me values that start with W,V,I,1,2,3,4,24,5 etc
    although the number is less(696out of 6785) this is undesired
    >
    Yes - that is what it should be doing.
    These are the steps you took to populate the table
    1. You originally inserted ALL data into table 'drop_it' with no restriction on the PROD_DETAILS values.
    create table drop_it as select * from mv_prod_search_det2;     2. Then you converted the PROD_DETAILS value to upper case. That has no effect on numbers or other non-alphabetic characters.
    update drop_it set prod_details=upper(prod_details);3. Then you create a new table with only one partition using MAXVALUe
    PROD_DETAILS VARCHAR2(1000 BYTE),
         SIGN VARCHAR2(42 BYTE)
    PARTITION BY RANGE(PROD_DETAILS)
    PARTITION MAX_VALUE VALUES LESS THAN (MAXVALUE)
    );4. Then you populate the partitioned table by exchange. It now has the same data including the numeric data.
    ALTER TABLE drop_it_p EXCHANGE PARTITION MAX_VALUE WITH TABLE drop_it WITH VALIDATION;     5. Then you split the one MAXVALUE partition into two partitions. One with data < 'B%' and one with the remaining data that sorts higher based on your character set.
    ALTER TABLE DROP_IT_P
      SPLIT PARTITION MAX_VALUE AT ('B%')
      INTO (PARTITION p_a,
            PARTITION MAX_VALUE);     The split on 'B%' when creating partition p_a is equivalent to you 'WITH VALUES < 'B%'. Since PROD_DETAILS is a VARCHAR2 datatype that 'LESS THAN' comparison uses the character order based on your database character set and most, if not all, character sets have characters that sort lower than the uppercase alphabetic characters.
    For example in the ASCII character set an uppercase 'A' is decimal 65 so 64 other characters (including the digitis 0-9) sort lower than 'A'.
    http://www.asciitable.com/
    As the doc you cited shows
    >
    •All partitions, except the first, have an implicit lower bound specified by the VALUES LESS THAN clause on the previous partition.
    >
    That 'first' partition has no lower bound so ALL data, including digits, that sort less than 'B%' will be in that partition.
    >
    please help me eliminate these rows
    >
    Either don't select the data to begin with or remove it using a simple DELETE query. Also you can do the case conversion when you select the data.
    create table drop_it as select upper(prod_details) prod_details, sign from mv_prod_search_det2 where upper(prod_details >= 'A';Before you do that you should make sure you define the actual business rule you want to use to define the data you really want to keep and exclude.
    Because most, if not all, character sets also have characters that sort HIGHER than the alphabetic characters. That ASCII table shows five of them. If you don't filter them out you will get data where the values start with those characters.
    Even if you do filter them out there is nothing in what you posted that would prevent a user from inserting that data back into the table.
    And, of course, there are characters that sort BETWEEN the lower and upper case alphabetics.
    You need to determine what the allowable characters are in the PROD_DETAILS column and add code (e.g. check constraint or trigger) to make sure users can't enter data that includes those characters.

  • Can not color label more than one file at a time

    Hi,
    I've had this problem since 10.6.6-ish, i can not color label more than one file at a time in the Finder.
    Wether i select two, twenty or twohundred only one file gets color labeled.
    It doesn't seem to matter if i assign a color label through the File menu or right click > label.
    Figured a re-install might fix this but it hasn't (even a clean install without restoring any kind of backup).
    Does anyone else have this issue and/or a fix for it?
    Thanks,
    Jay

    Aaaaanyone ?

  • SRM User defined fields -- can not input values

    Hi,
    We are using SRM 4.0. I have created a user defined field at the PO header according to note 672960. But I can not input anything to this field.
    This is what I did:
    1. in both structures INCL_EEW_PD_HEADER_CSF and INCL_EEW_PD_HEADER_CSF_PO add the append structure with the new field ZZCONTRACT.
    2. in BADI BBP_CUF_BADI_2 created an implementation Z_BBP_CUF_BADI_2. In method MODIFY_SCREEN set: xdisplay = 'X' and xinput = 'X' for this new field.
    This new field showed up in SRM, but it is greyed out. I can not type in anything. Could anyone tell me what I did wrong or what I have missing? Thanks a lot!

    hi,
      If you can see the custom fields,the problem is with the BADi implementation.You can write something like this in the method for the PO cust fields:
    IF iv_doc_type = 'BUS2201'.
      *Hide all customer fields
    *Will change this coding if any other document type needs
    *customer fields
          LOOP AT et_fields INTO wa_et_fields.
            wa_et_fields-xdisplay = 'X'.
            MODIFY et_fields FROM wa_et_fields.
          ENDLOOP.
         ENDIF.
    Save and activate the implementation.
    HTH.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Can not read values for profile option proxy_user_id in routine& Routine

    Hi all ,
    I developed a new form in oracle apps R12 and deployed in respective top ,After entering all the details when i am going to save the data i am getting the message like
    Can not read values for profile option proxy_user_id in routine& Routine and no action is taking place .
    Can some one please help me how to avoid this issue.
    Thanks in advance,
    Srinivas

    Hi Srinivas,
    Please check below Metalink notes. Although it is not same as your issue but it will give you way to enable 'VISIBLE' flag(if not done already)
    _'Cannot Read Value For Profile Option Proxy_user_id' Error While Trying To Create an AR Invoice [ID 1280915.1_
    Thanks,
    JD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Note: may be less than permsize

    Hi,
    What is the meaning of followinf message which Im finding in ttmesg.log ?
    /Logs/FOA/DGLOGSTEMP/20130224/POC3P/ttmesg.log.0_POC3P_20971707_20130224_061754.bz2:2013-02-24 04:38:59.33 Info: : 2817: 23001/0x1bd93a0: Reading checkpoint file 0; data segment = 286.3 mb (note: may be less than permsize)
    1. Follownig is my Perrmsize configured in sys.odbc.ini.
    PermSize=8000
    TempSize=400
    2. Memory details of the system:
    free -m
    total used free shared buffers cached
    Mem: 23403 20315 3088 0 303 16050
    -/+ buffers/cache: 3961 19442
    Swap: 8188 133 8055
    Regards
    Pratheej

    Hi,
    For this case of "Part I" selected during GR, you need to create Excise invoice thro J1IEX ->  Capture Excise Invoice -> Good receipt (use the material document number), which will complete the part II posting. Then you can proceed with MIRO.
    With regards,
    Jeeva.

  • Can not pass value to the program symbol

    Hi gurus,
    i've developed a script form whereas the value can not be transported from ABAP program into script form. only the system envoirment variables can be displayed in the FORM.
    any ideas? thanks

    here is my printing program:
    the varable A whose value is 4 can not be printed out in the form preview. on the other hand, if i use the same form in the report in stead of output type ME, the value 4 CAN BE displayed.
    PROGRAM  sapmztest.
    DATA: A VALUE '4'.
    *&      Form  ENTRY
          text
         -->ENT_RETCO  text
         -->ENT_SCREEN text
    FORM entry USING ent_retco ent_screen.
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
        APPLICATION                       = 'TX'
        ARCHIVE_INDEX                     =
        ARCHIVE_PARAMS                    =
        DEVICE                            = 'PRINTER'
        DIALOG                            = 'X'
         FORM                              = 'ZCNMMF017_GR_1'
        LANGUAGE                          = SY-LANGU
        OPTIONS                           =
        MAIL_SENDER                       =
        MAIL_RECIPIENT                    =
        MAIL_APPL_OBJECT                  =
        RAW_DATA_INTERFACE                = '*'
        SPONUMIV                          =
      IMPORTING
        LANGUAGE                          =
        NEW_ARCHIVE_PARAMS                =
        RESULT                            =
      EXCEPTIONS
        CANCELED                          = 1
        DEVICE                            = 2
        FORM                              = 3
        OPTIONS                           = 4
        UNCLOSED                          = 5
        MAIL_OPTIONS                      = 6
        ARCHIVE_ERROR                     = 7
        INVALID_FAX_NUMBER                = 8
        MORE_PARAMS_NEEDED_IN_BATCH       = 9
        SPOOL_ERROR                       = 10
        CODEPAGE                          = 11
        OTHERS                            = 12
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'START_FORM'
       EXPORTING
        ARCHIVE_INDEX          =
         FORM                   = 'ZCNMMF017_GR_1'
        LANGUAGE               = ' '
         STARTPAGE              = 'FIRST'
        PROGRAM                = ' '
        MAIL_APPL_OBJECT       =
      IMPORTING
        LANGUAGE               =
      EXCEPTIONS
        FORM                   = 1
        FORMAT                 = 2
        UNENDED                = 3
        UNOPENED               = 4
        UNUSED                 = 5
        SPOOL_ERROR            = 6
        CODEPAGE               = 7
        OTHERS                 = 8
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'WRITE_FORM'
       EXPORTING
         ELEMENT                        = 'DATA'
        FUNCTION                       = 'SET'
        TYPE                           = 'BODY'
        WINDOW                         = 'MAIN'
      IMPORTING
        PENDING_LINES                  =
      EXCEPTIONS
        ELEMENT                        = 1
        FUNCTION                       = 2
        TYPE                           = 3
        UNOPENED                       = 4
        UNSTARTED                      = 5
        WINDOW                         = 6
        BAD_PAGEFORMAT_FOR_PRINT       = 7
        SPOOL_ERROR                    = 8
        CODEPAGE                       = 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.
      CALL FUNCTION 'END_FORM'
      IMPORTING
        RESULT                         =
      EXCEPTIONS
        UNOPENED                       = 1
        BAD_PAGEFORMAT_FOR_PRINT       = 2
        SPOOL_ERROR                    = 3
        CODEPAGE                       = 4
        OTHERS                         = 5
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'CLOSE_FORM'
      IMPORTING
        RESULT                         =
        RDI_RESULT                     =
      TABLES
        OTFDATA                        =
      EXCEPTIONS
        UNOPENED                       = 1
        BAD_PAGEFORMAT_FOR_PRINT       = 2
        SEND_ERROR                     = 3
        SPOOL_ERROR                    = 4
        CODEPAGE                       = 5
        OTHERS                         = 6
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "ENTRY
    Edited by: Stephen Xue on Oct 29, 2009 11:52 AM

  • Can not see the new appending fields in RSA6

    Hi,
    I add one appending structure to existing datasource, after that I can not see the new field in RSA6, RSO2. However I can see it from RSA2 and SE11 (for extract structure).
    Any idea?
    Thanks
    Victor

    Victor,
    can you tell me how u have done this. you have a DS in RSA6 created from RSO2. then you created a append structure right? then click on your DS on the RSA6 screen. click on change icon on the application tool bar or function key CTRL + SHIFT +F1, maintain the datasource.
    can you able to see the fields here or not (i'm asking for change mode)?
    Nagesh.

  • Do not buy TC! It can not be repaired other than by apple!

    I was first off the mark with this, pre-ordered, got it, looked great. Then. Crash, crash and more crash. Can not get at it to even reformat it! It says the disk needs repair but there is no repair option! What the hey? So do they mean take it to apple? How is there no option for repair in Airport utility? Disk utility doesn't recognize it. Im stuffed! Have I missed something here? I have had nearly every apple from 1984 on, even own the Australian Mac web sight! No one is more committed to Apple but this is not a good product in its present form. Mine is going back today!
    Time Machine rendered my WD 500 Gig a paper weight and now this!. I am now looking for 10000 3 1/4 floppies to back up as that seems to be the most reliable LOL

    you can pull that drive and install it in a Mac or external enclosure to deal with your problem(Disk Utility will recognize it) if its not under warranty. its not a difficult procedure.

  • Additional fields in infoset query can not be used as datasource fields

    I create one infoset query with additional fields (using ABAP code) in R/3. When I create datasource RSO2 using this infoset query, system only show all fields without additional fields that I enhanced in infoset query. Does that mean we can not get additional fields information in generic datasource creation that we enhanced in infoset query?

    dear Awa,
       you are enhanced some fields in r/3.right that fields are  shown in
    rsa6 select your data source click on display your datasource then select
    extract structure its shows how many fields are haveing particular
    datasource .or otherwise goto rso2 select your data source display
    double click on  your extractstructure  its show how many fields haveing
    the particular datasource. check the Rsa6 what ever fields you newly added that field default hide mode
    you remove the hide tickmark.

  • AWM 10.2.0.1 - I can not choosing Value Based hierarchy

    I have Oracle client 10.2.0.1 software with AWM 10.2.0.1 . I want to build a dimension with value-based hierarchy . In AWM I have hierarchy editor with the two radio buttons for choosing type of hierachy : Level Based hierarchy and Value Based hierarchy . But the secod one (Value Based hierarchy) is disabled - I can not choosing this type of hierarchy . Why this?
    Thanks in advance,
    Aurel

    Hi there,
    I really would not recommend that you work with the 10.2.0.1 version of AWM. This version is fairly old now and there have been a number of important bug fixes added to more recent releases.
    What version of the Oracle database are you running? And on what operating system?
    I suggest that you consult the following link and ensure that you are working with the versions of BOTH database and AWM that are recommended by Oracle:
    http://www.oracle.com/technology/products/bi/olap/collateral/olap_certification.html
    Thanks
    Stuart

  • How can we change value of a field in the Repeating Table using SharePoint Workflow 2013.

    Hi
    I have an InfoPath form published on a SharePoint Library. The form contains a Repeating table and after submit a workflow runs. In this workflow I want to change some values of the fields within Repeating table.
    How can I do this?
    Thanks.

    Hi,
    I found a similar thread posted by you here:
    http://social.technet.microsoft.com/Forums/en-US/e1fa36c1-cb5c-456d-ba40-2f26301913d2/how-to-loop-through-each-row-in-a-repeating-table-using-sharepoint-workflows?forum=sharepointgeneralprevious
    I suppose both the threads are reuqesting the method to get values from repeating table via workflow, so we can focus on the issue on the other case. If there is more requestment here, let me know.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Exchange 2010 Outlook search can not find messages older than 1 year

    Hello,
    I have an exchange 2010 sp2 server. One of my users complains that Outlook search can not find any message older than 1 year. He have all his 5 year mails in the mailbox, but looks like search engine cant recognise them :( 
    Any thoughts? thanks in advance.

    Hi,
    Please verify that indexing is complete in Outlook:
    1. In Outlook, click in the Search box.
    2. Click the Search tab, click Search Tools, and then click Indexing Status.
    3. When the Indexing Status dialog appears, you should see the following:
    Outlook has finished indexing all of your items.
    0 items remaining to be indexed.
    Besides, please use the Search-Mailbox cmdlet to check if you can get messages older than one year in this user mailbox.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

Maybe you are looking for