Help on storing description for columns in oracle

Hi all,
I have table like this
SQL> desc tbldmsfolder;
Name Null? Type
FLDFOLDERCODE NOT NULL NUMBER(19)
FLDFOLDERNAME NOT NULL NVARCHAR2(200)
FLDPARENTCODE NUMBER(19)
FLDDESCRIPTION NVARCHAR2(2000)
FLDSORTORDER NOT NULL VARCHAR2(50)
FLDHASCHILD NOT NULL NUMBER(3)
FLDENTITYLIST VARCHAR2(1000)
FLDUSERLIST VARCHAR2(1000)
FLDTYPE NOT NULL NUMBER(3)
FLDAPPROVAL NOT NULL NUMBER(3)
FLDVIEWLIST VARCHAR2(1000)
FLDFOLDERDATETIME NOT NULL DATE
I want to store the description for the fields fldtype ( ''0 - Controlled; 1 - Uncontrolled; 2 - Both') and fldapproval('0 - All; 1 - Any');
Thanks in advance
Regards,
Ariff

SQL> comment on column str1.c1 is ' 1-college id 2 - course id';
Comment created.
SQL> desc str1
Name Null? Type
C1 NOT NULL NUMBER(10)
How to view the comment??
Ram

Similar Messages

  • Input help not showing up for columns in CATS regular application

    I am using standard iView Time Entry in ESS available in EP7 ECC6.0.
    the issue I am having is that there is no popup (input help)  for columns 'Reason Code',  'Region' and 'OT Rsn'. But if I go into ECC6.0 t-code CAT2, the popups are available.
    Any idea what may be causing this issue?
    Tiberiu

    Suresh is right, You need to build your own search help with above table and implement the class
    ie CL_XSS_CAT_VALUE_HELP* in se24

  • Need help in creating documents for Contacts in Oracle HRMS

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

  • Which table stored  description for field name

    hi,
    for example,
    field name is  LIFNR , description (vendor number),
    which table stored this description (vendor number)  for that field name(LIFNR) ?

    1. From table DD03L, give your tablename and get all of its field names and corresponding data element names. 
    2. From table DD03T, get the description of each data element you have got in step 1. 
    3. Then Use Function Module DDIF_FIELDINFO_GET 
    DD02L : ALL SAP TABLE NAMES
    DD02T : DESCRIPTION OF TABLE NAMES
    DD03L : FIELDS IN A TABLE.
    Check the below link for more information.
    http://www.sap-img.com/abap/how-to-get-the-field-descriptions-of-a-table.htm
    Thanks,
    Balaji

  • Need Help in Pivot of the Columns in Oracle 9i

    Hi,
    I have a requirement where-in i need to generate the output as below:<<under EXP1 we need to populate the SUM amounts for each category i.e. group by No and Category>>
    No Vessel EXP1 EXP2 EXP3 EXP3 .....
    1 TEST 10 -8 100 0
    2 TEST 11 0 90 -17
    And the Code I am using for the same as below:
    SELECT Vessel_Code,
               dano,          
               join(cursor(select 'SUM(DECODE(ExpenseCategory,'||''''||expensecategory||''''||',GroupAmount,NULL))'||' '||expensecategory
                           from linetypes
                           where ExpenseCategory NOT IN ('ADV','BANKCHARGES','GAIN/LOSS','NONAGENT')
                           and ExpenseCategory NOT LIKE 'REBILLABLE%'
                           and ExpenseCategory NOT LIKE 'SPECIFIED%'
                           group by expensecategory))
        FROM
        (select     a.Vessel_Code        
        ,           NVL(a.ParentDANo,a.DA_NO) as dano
        ,           b.ExpenseCategory
        ,           sum(NVL(FinalDAAMount,0)+NVL(supplmnt_amount,0)) as GroupAmount
        from  da_head a
        Cross Join LineTypes b
        Left Join   DA_Detail c
        On          a.DA_No     = c.DA_No
        and         a.Credit_Status = c.Credit_Status
        and         b.DALineTypeId = c.DA_LINETYPE_ID
        where status in ('P','G')
        and         b.ExpenseCategory NOT IN ('ADV','BANKCHARGES','GAIN/LOSS','NONAGENT')
        and         b.ExpenseCategory NOT LIKE 'REBILLABLE%'
        and         b.ExpenseCategory NOT LIKE 'SPECIFIED%'
        Group by a.Vessel_Code
        ,           NVL(a.ParentDANo,a.DA_NO)
        ,           b.ExpenseCategory
        Union
        select      a.Vessel_Code
        ,           NVL(a.ParentDANo,a.DA_NO) as dano
        ,           SUBSTR(b.ExpenseCategory,0,Length(b.ExpenseCategory)-1) as ExpenseCategory
        ,           sum(NVL(FinalDAAMount,0)+NVL(supplmnt_amount,0)) as GroupAmount
        from  da_head a
        Cross Join LineTypes b
        Left Join   DA_Detail c
        On          a.DA_No     = c.DA_No
        and         a.Credit_Status = c.Credit_Status
        and         b.DALineTypeId = c.DA_LINETYPE_ID
        where status in ('P','G')
        and         b.ExpenseCategory NOT IN ('ADV','BANKCHARGES','GAIN/LOSS','NONAGENT')
        and         b.ExpenseCategory LIKE 'SPECIFIED%'
        Group by a.Vessel_Code
        ,           NVL(a.ParentDANo,a.DA_NO)
        ,           SUBSTR(b.ExpenseCategory,0,Length(b.ExpenseCategory)-1)
        Union
        select      a.Vessel_Code
        ,           NVL(a.ParentDANo,a.DA_NO) as dano
        ,           SUBSTR(b.ExpenseCategory,0,Length(b.ExpenseCategory)-1) as ExpenseCategory
        ,           sum(NVL(FinalDAAMount,0)+NVL(supplmnt_amount,0)) as GroupAmount
        from  da_head a
        Cross Join LineTypes b
        Left Join   DA_Detail c
        On          a.DA_No     = c.DA_No
        and         a.Credit_Status = c.Credit_Status
        and         b.DALineTypeId = c.DA_LINETYPE_ID
        where status in ('P','G')
        and         b.ExpenseCategory NOT IN ('ADV','BANKCHARGES','GAIN/LOSS','NONAGENT')
        and         b.ExpenseCategory LIKE 'REBILLABLE%'
        Group by a.Vessel_Code
        ,           NVL(a.ParentDANo,a.DA_NO)
        ,           SUBSTR(b.ExpenseCategory,0,Length(b.ExpenseCategory)-1)
        GROUP BY Vessel_Code,
        dano
        order by dano;The reason why I have been using the join(cursor(.....) to get the result set as :
    SUM(DECODE(ExpenseCategory,'OWNER',GroupAmount,NULL)) OWNER,
               SUM(DECODE(ExpenseCategory,'CTM',GroupAmount,NULL)) CTM,
               SUM(DECODE(ExpenseCategory,'PORT',GroupAmount,NULL)) PORT,
               SUM(DECODE(ExpenseCategory,'REBILLABLE',GroupAmount,NULL)) REBILLABLE,
               SUM(DECODE(ExpenseCategory,'SPECIFIED',GroupAmount,NULL)) SPECIFIED,
               SUM(DECODE(ExpenseCategory,'CARGO',GroupAmount,NULL)) CARGO,
               SUM(DECODE(ExpenseCategory,'ACCTTEMP',GroupAmount,NULL)) ACCTTEMPAs we don't know the exact number of expense categories to be displayed I have used cursor excluding the expense categories I don't need.When I run the same as individual query I get the correct result but when I execute it along with the query I get error maximum cursors open exceeded...
    Please let me know how can it be achieved.
    Any suggestions are welcome.
    Thanks,
    Hemanth

    The easiest way to do this, and it could be done in a few minutes, would be to move to a currently supported version of Oracle, 11gR1 or 11gR2, where we have the PIVOT and UNPIVOT operators.
    In the desupported version you have the best choice is to hit http://asktom.oracle.com and look up the solution he published there some years ago.
    I don't have the link so you can find it as fast as I can but look under "pivot" and "crosstab."

  • Description for value help field for custom infotype field

    Hi,
       I`ve got to include a field in custom infotype. This field has got a value help attached to it. The values to be displayed in the value help are stored in the domain of the field(in the dictionary).
    The requirement is that once I select a value from the F4 help, the description for that value should be fetched and be dispalyed on the screen.
      I`m using the FM "<b>AM_READ_TEXT_ON_DOMAIN_VALUE</b>" to read the description from the domain ,but unable to make it display it on the screen.
      Can anyone suggest me as what should I do for displaying the description in the custom infotype screen.
    Regards,
    Farhana

    Hi anji,
       While using the "GET_DOMAIN_VALUES", I do get all the values from the domain. But I want only description to be displayed when I select a Value for that field.Kindly help out..
    Eg:
    1-Individual
    2-Family
    Then the description should be displayed as Family when I select the value 2 from the value help.
    Regards,
    Farhana.

  • Help - Class name and descriptions for a function location.

    Hi Guys
    i have to write a report that displays the class and class descriptions for a function location. the user passes in either the function location(TPLNR) or the class name and  the report should display the the class characteristics and resp. values. Is there a FM that i coud use?
    please help.
    many thanks.
    seelan.

    sadiepu1 wrote:
    When I set up Words with Friends on my Fire it asked for my username and password which from a previous reply to my inquiry above stated that the S 3 doesn't store due to privacy issues. I have tried all my usual combinations of usernames and passwords and my Fire won't let me access the game as it keeps telling me that one or the other is not correct. I have deleted the app from my Fire and re-downloaded it but have the same error comes up. I have accessed the Words with Friends support both on my phone and their website but there is no live chat. I might have to take both to a Verizon store. Also, my Fire won't let me access the game without a correct username and password. To say that I am frustrated would be an understatement as well I have tried everything I can think of with no luck! Thanks for any help you can give!
    Did you use facebook to log in? 
    Verizon will not be able to help you retrieve any of the information you need.  You will have to contact Zynga.

  • Oracle : ORA-12899: value too large for column

    Hi Experts,
    I am loading multibyte data from fixed width flat file to Oracle database(which is a utf8 characterset) via Informatica. I have set utf8 as characterset in both source and target definitions.
    Source flat file data : Münchener(this flat file data was loaded from external oracle database where data looks like Münchener)
    When I load the data I am getting below error
    ORA-12899: value too large for column "schema_name"."table"."column" (actual: 513, maximum: 512)
    I know we can declare the data type as varchar2(512 char) instead of varchar2(512 byte). Please let me know the other solution to load multibyte data into target utf8 database.

    You answered your own question and there isn't another solution. You need to increase that column.
    alter table "schema_name"."table" ("column" varchar2(513)); ---Though you should increase it to be the max length that column will ever be. If you don't know pad it. Pad it high. Oracle is very good at handling the space with the varchar2 datatype.

  • Is the new iPad and iPod touch 5g have exactly the same iSight camera. because i heard read a lot in the apple site about the new iPad camera but the description for the new iPod touch is not so good IN TERMS OF CAMERA. so please help me

    is the new iPad and iPod touch 5g have exactly the same iSight camera. because i heard read a lot in the apple site about the new iPad camera but the description for the new iPod touch is not so good IN TERMS OF CAMERA. so please help me. coz i want to know is ipod touch 5g giving the new ipads like high clarity mages

    The ipod touch 5g and the new ipoad both have 5-mega pixal cameras.

  • Oracle 11g 64 bit - "Value too large for column" when setting Varchar2

    Hello guys,
    I have a machine running Oracle 11g - 64bits. And I have a table that contains a VARCHAR2(2000) field.
    When I try to set the value of this field to a string that contains double byte characters, I get this error:
    ORA-12899: value too large for column "QAPBG1220_11"."MYTABLE"."MYFIELD" (actual: 2433, maximum: 2000).
    Although the value I'm setting is only 811 characters (€ sign).
    The weird thing is that when I try to run the same query on another PC with Oracle 11g, 32 bits, It runs normally and the values are updated!!
    Anyone has any idea about this? It's driving me crazy
    Thanks in advance
    Zahraa

    create table MYTABLE
    MYTABLEID NUMBER(10) not null,
    MYFIELD VARCHAR2(2000)
    alter table MYTABLE
    add constraint PK_MYTABLE primary key (MYTABLEID);
    INSERT INTO MYTABLE (Mytableid, Myfield) VALUES(1, '€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€fds€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€')
    COMMIT;
    On the 32 bit, this works fine. I get the record with the values 1 and 2000 euro signs.
    On the 64 bits, there is one machine (oracle 11.2.0.1.0) that adds the row, but when I view it, the value shows as "????"
    and another machine (oracle 11.1.0.7.0) that throws an error:
    - "String Literal is too long" : if there are more than 1333 euro characters
    - Value too large for column .... : if there are less than 1333 and more than 666 characters.
    Any ideas?

  • Require Help on Load Testing for Oracle Applications

    Hi,
    I have to do a Load Testing on Oracle Application 11i. I am not able to understand from where do I need to start.
    Could any one please help on this ?
    Ramu.

    The tool which I am using for this is "Oracle Application Testing Suite".
    Any help welcome !
    Ramu

  • Table name where description for any code group is stored

    Hi All,
    Can Anybody tell me name of table where description for any code group is stored.
    Thanks in Advance
    Regards,
    Amit

    Hi Amit,
    It is in table QPGT.
    Kind regards,

  • Wizard for column/table description

    Hi all ,
    I'm using OBIEE 11g. In the admin tool i have 20 models and i want to set a description for each column and table/which is like tooltip in the analysis/. Does anybody knows a fast way or a wizard for this or i should go through all the tables and columns in the BMM ?
    Thanks in advance,
    Alexander.

    Hey Alexander,
    I did mine one by one but you can also generate a RPD UDML file and write a simple script to mass update or depending on your OBIEE version, I believe 11.1.1.6.2BP1 added MDS XML support. You can update the XML files. Other than that, its a One and One update.
    Thanks,
    Jon
    Mark if helpful

  • How to display help text in pop-up windo for column headers in

    Hi all,
    is it possible to display help text message in pop-up windo for manually created tabular form headers.
    i am trying but not getting. any help will be appreciated.
    Thanks in advance,
    Amit

    Amit,
    I've responded to this in:
    How to put help text for column headers of manually created tabular form.
    Unless this is a different question?
    Andy

  • Error in help description for TriangleWave

    There is an error in the Help description for the TriangleWave function.
    It says this:
    It should say this:

    Thanks for pointing this out, I'll see what I can do to get this documentation updated. They have it correctly in other programs, but you were spot on with it being incorrect in CVI. 
    Rob S
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Error with declaring a method with array variable

    Hi, I had implemented this: import java.awt.*; import javax.swing.*; public class Oefening1      public static void main(String args[])           int array[]= new int[10];           int getal;           JTextArea outputArea = new JTextArea();        

  • Archive document

    Hi,    I am  archiving  FI_documnt   object,  Here  I come across  requiremnt  is to  include  custom  table.    So I added  custom  table  in  Archive  object (FI_DOCUMNT )  through Tran  AOBJ  under  Structure  definition. Here My  question,  What 

  • Sync Personal IMAP E-mail

    On my iphone, all my e-mails would sync because it was imap. From what i understand, the way i set up my personal e-mail on my blackberry is imap. why is it that i only have e-mails displayed from the date that i set up the e-mail account on my black

  • Content Filter Problem

    Hello experts, I used to do user authorization using Content Filter for each Fact Table and it worked. But Recently after upgrading to 10.1.3.4 Some dashboards adhere to that filter others don't (so one dashboard users see filtered content on other d

  • Anyway to force a user to logout?

    Hi, I wonder whether there is a way for root to force a user out of the system, if the user is currently in it. I get two reasons to do it: 1) sometime after a remote telnet PC crash, I find the user is reported to be still in the host from "who". I