Debugger find a REF data type.

CREATE DATA <ls_dropdown_listbox>-data
                  TYPE STANDARD TABLE OF crmt_bsp_status_dropdown.
If I don't know the <ls_dropdown_listbox>-data's data type(can't find the "create data..." ),
How find the data type by Debugger?
In Debugger
<LS_DROPDOWN_LISTBOX>-DATA
Technical Type is
REF TO \TYPE=%_T00004S00000468O0000043808
not crmt_bsp_status_dropdown.
How find crmt_bsp_status_dropdown in debugger?

Hi
U're creating a dynamic internal table structurated as crmt_bsp_status_dropdown, so u should check the type of that structure, in this way u'll be able to know the type.
So check how crmt_bsp_status_dropdown is defined.
Max

Similar Messages

  • Where we can find Short Text data type attachment

    Hi,
    file type attachements are store in fnd_lob.
    Where we can find Short Text data type attachment in oracle apps.
    Regards

    Hi,
    You can find short text data type attachments in FND_DOCUMENTS_SHORT_TEXT table.
    Please also refer link:
    Oracle Apps Gurus: Attachments in Oracle
    Attachments in Oracle Applications
    Hope this helps!!!
    Best Regards,

  • How to find the Column data type changes in table

    Hi All,
    I need to find out the column data type changes where made recently in table .
    How do i check past changes in column data type. Any data dictionary are there to find out the data type changes in the column .
    Thanks in advance..

    <FONT FACE="Arial" size=2 color="2D0000">
    You have the answer on hand (user_arguments / all_arguments)!
    SQL> desc user_arguments
    Name                                      Null?    Typ
    OBJECT_NAME      VARCHAR2(30)
    PACKAGE_NAME     VARCHAR2(30)
    OBJECT_ID     NOT NULL NUMBER
    OVERLOAD       VARCHAR2(40)
    ARGUMENT_NAME  VARCHAR2(30)
    POSITION       NOT NULL NUMBER
    SEQUENCE       NOT NULL NUMBER
    DATA_LEVEL     NOT NULL NUMBER
    DATA_TYPE      VARCHAR2(30) --> Data Type
    DEFAULT_VALUE  LONG
    DEFAULT_LENGTH NUMBER
    IN_OUT         VARCHAR2(9) -->Argument direction (IN,OUT,or IN/OUT)
    DATA_LENGTH    NUMBER
    DATA_PRECISION NUMBER
    DATA_SCALE     NUMBER
    RADIX          NUMBER
    CHARACTER_SET_NAME VARCHAR2(44)
    TYPE_OWNER         VARCHAR2(30)
    TYPE_NAME          VARCHAR2(30)
    TYPE_SUBNAME       VARCHAR2(30)
    TYPE_LINK          VARCHAR2(128)
    PLS_TYPE           VARCHAR2(30)
    CHAR_LENGTH        NUMBER
    CHAR_USED          VARCHAR2(1)
    Look for Data_Type where IN_OUT say OUT. That will be the data type retruned by that function.
    Edited :
    or POSITION in argument list,or null for function return value
    -SK
    </FONT>

  • I cant find(map) some data types

    Hello!
    I am doing some test using a Access and SQL Server databases in order to do the mapping of the data types that is offered using the "sun.jdbc.odbc.JdbcOdbcDriver" ,I am using jdk1.3 I have not downloaded any other driver .
    The thing is that I an MS ACCESS table that I have
    Memo Field
    OleObject Field
    Text Field
    DateTime Field
    Currency Field
    When I get thet metadata for that table and aquire the java.sql.Types for the Memo and OleObject Aceess Types I get LONGCHAR and LONGBINARY Java.sql.Types....but I can not find them in the Java API documentation!!!! Are they the same with LONGVARCHAR and LONGVARBINARY that are reffered in the Java API ?
    Am in loosing somthing here?
    Thanks in advance

    They are one and same. Have a look at, http://www.i-mech.com/docs/jdbc/tbl_21_7.html
    Sudha

  • Clientgen fails -not finding built-in data type class

    Hi,
    I have deployed a web service on WL81, which returns a complex object. I have
    provided the java-class representation and the serializer for it, and i am able
    to deploy and test the web service fine using the WL console.
    I am now trying to create the stubs using clientgen, and it fails saying that
    it cannot find by complex object. I have even put the class in a jar file and
    in the classpath but it just doesnt find it. Does anyone know what im doing wrong
    Any help is appreciated. Thanks! Leena.
    Here are the error messages :
    build:
    [clientgen] Generating client jar for http://localhost:7001/Project1/Project1Services?WSDL
    [clientgen] C:\WINNT\Profiles\leena\Local Settings\Temp\Project1Client.jar-184891975\blackpearl\client\project1\MyServicePort.java:15:
    cannot resolve symbol
    [clientgen] symbol : class MyObject
    [clientgen] location: interface test.project1.MyServicePort
    [clientgen] public MyObject getXXX(java.lang.String Myname)
    This msg is spit out for every reference in the MyServicePort.java and MyServicePort_Stub.java
    that i assume it generates before it fails.
    Here is the build.xml:
    <project name="MywebServicesExample" default="build">
    <target name="build" >
    <clientgen wsdl="http://localhost:7001/Project1/Project1Services?WSDL"
    packageName="test.project1"
    clientJar="Project1Client.jar" />
    </target>
    </project>

    Not sure why you are getting this error,
    but my guess is that this may be due to
    some classpath issues.
    Make sure that you are using the ant that
    is shipped with WLS and your classpath
    contains weblogic.jar and webservices.jar.
    Also you can try out this simple clientgen
    example:
    http://www.manojc.com/?sample28
    Regards,
    -manoj
    http://manojc.com
    "Leena" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi,
    I have deployed a web service on WL81, which returns a complex object.I have
    provided the java-class representation and the serializer for it, and i amable
    to deploy and test the web service fine using the WL console.
    I am now trying to create a Java client to invoke this service. Tocreate
    the stubs im using clientgen, and it fails saying that it cannot find mycomplex
    object. I have put the complex object class in a jar file and in theclasspath
    but it just doesnt find it. Does anyone know what im doing wrong ?
    Any help is appreciated. Thanks! Leena.
    Here are the error messages :
    build:
    [clientgen] Generating client jar forhttp://localhost:7001/Project1/Project1Services?WSDL
    [clientgen] C:\WINNT\Profiles\leena\LocalSettings\Temp\Project1Client.jar-184891975\test\project1\MyServicePort.java:
    15:
    cannot resolve symbol
    [clientgen] symbol : class MyObject [clientgen] location: interfacetest.project1.MyServicePort
    [clientgen] public MyObject getXXX(java.lang.String Myname)
    This msg is spit out for every reference in the MyServicePort.java andMyServicePort_Stub.java
    that i assume it generates before it fails.
    Here is the build.xml:
    <project name="MywebServicesExample" default="build"> <target name="build"
    <clientgen wsdl="http://localhost:7001/Project1/Project1Services?WSDL"
    packageName="test.project1"
    clientJar="Project1Client.jar" />
    </target>
    </project>

  • How to Find the Data Type of the Field In a Database Table

    Hi Experts,
    I'm currently working on a program which needs to find out the data type of the given field in a database table. In addition to accessing DD03L directly, is there any other workaround such as function module to help me achieve this? It would be helpful if a demo example could be provided.
    Thanks a lot.

    Hi,
    Use this..
    DESCRIBE FIELD dobj  TYPE typ.
    write typ.
    type will contain the data type of the object.
    and check this thread also....
    Re: How to get datatype of fields in dynamic structures
    Cheers,
    Simha.
    Reward all the helpful answers..

  • Z Date Types not available in WebUI

    I have created a Z Date type and assigned it to my Z Date profile which is in turn assigned to my Issue Request Transaction Type.
    Now when I open the UI Component SRQM_INCIDENT_H and then go to BTADMINH context node. I should be able to find my Z Date type there and creating a Z Attribute for it.
    How to make my Z Date Types to be available on WebUI?

    Hi Max,
    you are right. You can create an attribute for your custom date type. In the wizard when selecting the attribute from BTAdminH scroll down to "Relations" and follow the BOL path through BTHeaderDatesSet and BTDate_<your date type>.
    Although in my experience it works better if you create a new context node for BTDate_<your date type>. This context node is dependent on BTDatesSet. And then in SE80 change the inheritance for the generated context class to CL_CRM_UIU_BT_DATE_CN.
    Regards
    Jan

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • How to find the Data Type of a column

    Dear All,
    How to find the Data Type of a Column dynamically in oracle Form.
    Thanks and Regards,
    Fazil
    Edited by: user11334489 on Aug 25, 2012 9:06 PM

    hi,
    you can use get_item_property built-in
    eg:
    declare
       l_item VARCHAR2(10);
    begin
       l_item := Get_Item_Property('item_name',DATATYPE);
    end;

  • Find data type from value

    Hi,
    I want to find data type from its value.
    Ex- If value = 1234 then its data type is numeric.
          If value = ABCD then its data type is char.
    So is there any FM which can tell the data type from its value or any way to do it.
    Moderator Message: Offering points is against forum RoE. 
    Regards,
    Ashish Gupta
    Message was edited by: Suhas Saha

    Hai.
    check this.
    the five non-numeric types (text field (C), numeric text field (N), date field (D), time field (T), and hexadecimal field (X)), there are three numeric types, used in ABAP to display and calculate numbers. Data type N is not a numeric type. Type N objects can only contain numeric characters (0...9), but are not represented internally as numbers. Typical type N fields are account numbers and zip codes.
    integers - type I
    The value range of type I numbers is -2*31 to 2*31-1 and includes only whole numbers. Non-integer results of arithmetic operations (e.g. fractions) are rounded, not truncated.
    You can use type I data for counters, numbers of items, indexes, time periods, and so on.
    Packed numbers - type P
    Type P data allows digits after the decimal point. The number of decimal places is generic, and is determined in the program. The value range of type P data depends on its size and the number of digits after the decimal point. The valid size can be any value from 1 to 16 bytes. Two decimal digits are packed into one byte, while the last byte contains one digit and the sign. Up to 14 digits are allowed after the decimal point. The initial value is zero. When working with type P data, it is a good idea to set the program attribute Fixed point arithmetic.Otherwise, type P numbers are treated as integers.
    You can use type P data for such values as distances, weights, amounts of money, and so on.
    Floating point numbers - type F
    The value range of type F numbers is 1x10*-307 to 1x10*308 for positive and negative numbers, including 0 (zero). The accuracy range is approximately 15 decimals, depending on the floating point arithmetic of the hardware platform. Since type F data is internally converted to a binary system, rounding errors can occur. Although the ABAP processor tries to minimize these effects, you should not use type F data if high accuracy is required. Instead, use type P data.
    You use type F fields when you need to cope with very large value ranges and rounding errors are not critical.
    Using I and F fields for calculations is quicker than using P fields. Arithmetic operations using I and F fields are very similar to the actual machine code operations, while P fields require more support from the software. Nevertheless, you have to use type P data to meet accuracy or value range requirements.
    C ---> character
    D ---> date
    P ---> packed
    T ---> time
    X ---> hexadecimal
    I ---> integer.
    N ---> Muneric.
    Possible ABAP/4 data types:
    C: Character.
    D: Date, format YYYYMMDD.
    F: Floating-point number in DOUBLE PRECISION (8 bytes).
    I: Integer.
    N: Numerical character string of arbitrary length.
    P: Amount or counter field (packed; implementation depends on hardware platform).
    S: Time stamp YYYYMMDDHHMMSS.
    T: Time of day HHMMSS.
    V: Character string of variable length, length is given in the first two bytes.
    X: Hexadecimal (binary) storage.
    regards.
    sowjanya.b.

  • Want to find the Data type of a variable at runtime ?

    Hi,
    I Want to find the Data type of a variable at runtime ?
    I think there is a function module... But i forgot ..... Can you please help me out.
    Points are rewarded immediately.

    hi,
    do this way
    REPORT ysantest LINE-SIZE 350.
    DATA : v_num TYPE n,
    v_type(2).
    DESCRIBE FIELD v_num TYPE v_type.
    WRITE : v_type.

  • How to find data type of field dynamically in abap

    hi all,
    I am hanged up in one issue. There an internal table is filled.
    theres one field ,and  i want to extract the data type of the field content.
    Ex. i_tab is internal table having field var1.
          let the content of var1  have data type same as that of matnr (material no.)
    so here i want to extract this data type.
    thanx in advance for efficient help

    hi,
    Use the statemnt
    DESCRIBE FIELD 
    Use the edition   TYPE typ [COMPONENTS com]
    More help use F1
    example fropm F1 help
    DATA: BEGIN OF struc1,
            comp1 TYPE c LENGTH 1,
            comp2 TYPE string,
            BEGIN OF struc2,
               comp1 TYPE c LENGTH 1,
              comp2 TYPE i,
            END OF struc2,
          END OF struc1,
          typ1  TYPE c LENGTH 1,
          comp1 TYPE i,
          typ2  TYPE c LENGTH 1,
          comp2 TYPE i.
    DESCRIBE FIELD: struc1        TYPE typ1 COMPONENTS comp1,
                    struc1-struc2 TYPE typ2 COMPONENTS comp2.
    regards
    prasanth

  • Cant find data type

    hi all, sorry ive not been back for a while but ive got a problem i cant solve
    i have a data type problem, i have a complex formula that i need to implement but both excel and java have give up because the number is too big, excel gave up at 1.19425116332374E+308 and the value needs to go alot higher. can anyone suggest a way of storing more than this vaule in a data type.
    thanks in advance, any help is welcome

    Matt06 wrote:
    no thats not working, the bigDecimal class wont allow more multipliations Are you trying to use the multiply operator (*) on the BigDecimals? Won't work. Read the javadocs on BigDecimal, it has methods for common operations. But it isn't a primitive type, so you can't simply drop it in place of a long and expect the same operators to work on it. You're dealing with actual objects, so it's all down to method calls. Example:
    BigDecimal finalValue = new BigDecimal("1.0000000000"); // a BigDecimal accurate to ten places
    BigDecimal twentyOne = new BigDecimal("21");
    for(int i = 0; i < 480; i++){
        finalValue = finalValue.multiply(twentyOne);
    System.out.println(finalValue);A bit more long-winded, but that's just tough heh heh

  • Dynamically Find out the Integer and Decimal Data Type of a Column

    Table: test (INTE number, DECI number(7,2))
    Try to dynamically determine the column type.
    Using select data_type from user_tab_columns. It only returns NUMBER which does not indicate if the column is an integer or decimal data type.
    Is there a way to dynamically determine if a column is integer or decimal type?
    Thanks

    First of all your column INTE stores not just integers but any franctional numbers too:
    SQL> create table test(INTE number, DECI number(7,2))
      2  /
    Table created.
    SQL> insert
      2    into test
      3    values(
      4           10.99,
      5           10.99
      6          )
      7  /
    1 row created.
    SQL> select  *
      2    from  test
      3  /
          INTE       DECI
         10.99      10.99
    SQL>If you want to declare column as integer you use either NUMBER(n) or INTEGER. And, as others already pointed out, you can check DATA_PRECISION & DATA_SCALE in data dictionary view USER/ALL/DBA_TAB_COLUMNS.
    SY.

  • ABAP Data type to XI data type mapping

    Hi,
    I am creating a message type in XI corresponding to a ABAP structure. There are couple of data types on the ABAP side (for example: RAW, QUAN, CURR CUKY, UNIT, NUMC etc) which i have no idea on what it should be mapped to on the XI side(xsd:string, xsd:token, xsd:int etc).
    Is there is any document on mapping from ABAP data type to XML data type ? if yes please send it across.([email protected])
    if no doc available, if some body could let me know what these ABAP data type would map on the XI side it would great.
    Best Regards,
    Kiran

    Hi Kiran,
    just some more background information to the data types CURR, CUKY, QUAN, UNIT:
    1) Each field of data type CURR must be assigned to a field of data type CUKY (the financial amount must be assigned to a currency) and each field of data type QUAN must be assigned to a field of data type UNIT (each quantity must have a dimension). If you want to know this assignment for your specific ABAP structure, you can find it using transaction SE11 with your ABAP structure and go to the tab <i>Currency/Quantity fields</i>. Here you find the information under <i>Reference table</i> and <i>Ref. field</i>.
    2) The default number of decimals for a field of data type CURR is 2, but this can be overwritten by the assigned CUKY field. You can check the actual number of decimals for a specific currency with transaction OY04. Here are all currency list that do <b>not</b> have 2 decimals.
    3) The default number of decimals for a field of data type QUAN is 3, but this can be overwritten by the assigned UNIT field. You can check the actual number of decimals for a specific unit with transaction CUNI. Click on <i>Units of measurement</i> (pick the correct dimension first), double click on your unit and you find the info in the field <i>Decimal places</i>.
    4) Depending on the data you receive your conversions can get quite tricky. Lets take as an example a field of type CURR. If you find the value 1000 in there, this would convert to 10.00 USD if the assigned CUKY field contains the value USD (US dollar). But the same value ca represent 1000 JPY (Japanese Yen) if the assigned CUKY field contains the value JPY. What i try to say is that the value in the field of type CURR alone does not give you the actual amount, you have to know the value of the CUKY field as well. Similar for QUAN and UNIT.
    Regards,
    Claus

Maybe you are looking for

  • FPS2000 subwoofer for home theater?

    This question might be kind of out there but oh well... I know these are digital speakers but is there any way to get this subwoofer to output a signal from a home theater receiver with a subwoofer output? I have it just sitting around and would like

  • Opinion needed on MacBook Firewire workaround

    I've never really used iMovie and I've got a Firewire camcorder and I want to be able to get the video on to my new MacBook (w/o firewire) I plan on buying an HD (aka USB) camcorder when new models are released in about a month. But, I need a workaro

  • External HD workflow

    Hi there, New to FCP X I have important things to understand for me workflow wise. I guess the best way to work is to import, footage, work from and save directly to an external HD. If not please tell me otherwise. Right now I have footage both on my

  • SAP HR Payslip

    Hi All, I trust all is okay. I've made some changes (config) on the payroll payslip (PE51), my questions: how do I transferred those changes to ESS payslip version. Regards, Jacob

  • Creating and connecting images to indicate tag values

    I am trying to create a simplified version of our plant layout on my front panel using images from the image navigator. I would like to create, for example, a rectangle and have it shown green when my discrete tag value is 1 and red when my tag value