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

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>

  • Not able to map extension data type in standard namespace.

    Hi guys,
    I have a customer who has this problem.  I am from the Business Partner area and BP supports XI for data exchange.  We provide standard message types in XI which contains core BP fields in ABA namespace.  Corresponding complex structure exists in the ABAP system.
    Now, the customer has created an enhancement data type for one of the data types present in the standard message type.  This enhancement data type is present in another namespace.  The customer has also generated the proxy for this enhancement data type which automatically created an Append structure to the standard complex structure in ABAP.
    Now, from the ABAP side all the data is extracted including the enhancement data into the complex structure.  In one of the outbound function modules, we call XI passing this data in complex structure.  However, we call XI in ABA namespace.  So, in XI, since the ABA namespace does not contain the enhancement data type, the customer is not able to map this to his target.  Even though we send all the data from ABAP to XI, since we call it in ABA namespace, the enhancement data is lost.
    So, is there any way of mapping this enhancement data also in ABA namespace itself.  Or from the ABAP, should I call the namespaces seperately.  This means, first I will call ABA namespace to map all standard fields.  Then, I call customer specific namespace to map enhancement data type.
    I would really appreciate a help over here since its a very important customer for SAP.
    Many thanks,
    Vikram

    I thing for customer mapping you have to do an mapping in our own namespace.
    than you need a copy of the fb BUPA_OUTBOUND_MAIN an also from fb
    ABA_BUPA_CALL_PROXY.
    in the copy of ABA_BUPA_CALL_PROXY you can call your own proxy
    do to changing this line
    DATA : lo_ababusiness_partner_out TYPE REF TO co_ababusiness_partner_out ."XI.3.0
    to
    DATA :lo_ababusiness_partner_out  TYPE REF TO yourproxy_mt
    see also weblog /people/michal.krawczyk2/blog/2006/11/14/xipi-data-type-enhancements-standard-business-partner

  • HT4839 I cant find the cellular data setting on my iphone how i can fix it

    i cant find the cellular data setting on my iphone
    how i can fix it
    because I can't use the internet with my iphone right now

    If you go into Settings>General>Network, you should still be able to access VPN settings. My listings show Cellular Data, Data Roaming, Set Up Personal Hotspot, VPN and Wi-Fi. I do not use Personal Hotspot (tethering) so mine says Setup. However, VPN settings are different than cellular data settings. Not sure which you are asking about now.

  • Mapping SQL data types (especially SMALLINT) to Java classes

    I want to know the reason for a certain pair of exceptions in JDBC�s mapping of SQL data types to Java classes.
    Sun�s web site ( http://java.sun.com/j2se/1.4.2/docs/guide/jdbc/getstart/mapping.html ), Sybase�s site, and other sites contain mappings from SQL data types to Java primitive data types and/or Java classes. On that Sun web page, Section 9.9.1 maps mostly to Java primitive data types, and Section 9.9.3 maps mostly to Java classes. For the SQL data types that map to both primitive data types and classes, the class is typically the wrapper class of the primitive data type. For example, SQL�s DOUBLE data type maps to both the double primitive data type and its wrapper class (Double). However, Section 9.7 of that Sun web page says that there are exceptions for SQL�s TINYINT and SMALLINT. As expected, they map to the byte and short primitive data types, but they map to the Integer class, not the Byte and Short classes (which are the wrapper classes for byte and short). The web page does not state the reason for this pair of exceptions. It seems to me that SMALLINT data would either work for both short and Short or fail for both short and Short. I don�t see why it would work for short but fail for Short (as the web page implies).
    Can anybody think of a reason for the pair of exceptions? Thanks.

    ghs wrote:
    1) If a DBMS deals with the short and byte primitive data types (as the various web pages imply that it does), then why would it not deal with the Short and Byte wrapper classes?As another guess, because conversions get a little weird in java. Or at least they did in the past. As I recall (with not a lot of clarity) it is possible to do something like pass a perfectly valid string value into a short and get an exception. Whereas using Integer and then converting to Short works.
    Keep in mind that these are guesses.
    3) What I really want to know is this: If I use wrapper classes of Short and Byte (instead of Integer), what will be the harmful consequences (IF ANY)? So far, I have done some trivial testing with a Short for a SMALLINT column (I have not yet tried any TINYINT columns), and it seems to be working.I considered it risky to not test all target databases and drivers.
    Obviously testing will reveal problems.
    If you don't want to test then you might want to stick with integers.

  • 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

  • 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>

  • Ipad shows 12.5 gb capacity and 1.0gb available but cant find that much data on ipad

    i ipad shows that i have only 1 gb of storage left but i dont have very much on it as far as apps less than (2gb in total when i add them up). i do have 2 gb of movies and less than i gb of music and pictures combined.

    I would suggest the following steps;
    1. Back up your iPad to iTunes on your Computer.
    2. Disconnect your device once done.
    3. Back up to iCloud on your iPad.
    4. Sign out of iCloud on your iPad, then sign back in again.
    5. Reset your iPad by pressing the Home button and the Sleep/Wake button simultaneously for about 15 seconds.  After a few seconds, the display will go black - keep both buttons pressed all the time though - and then the display will come back on white, with a black Apple logo.  Then let go of the buttons, and let your iPad reboot as normal, entering your passcode if used, when prompted.
    6. Then reconnect to iTunes on your computer, and you should see your data has come down.
    Don't worry, you won;t lose any data at all by resetting your iPad as described above.
    Hope this helps.

  • 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..

  • How can I implement data type map?

    The getString() method of java.sql.ResultSet interface is not efficient enough.
    I want to map any data type to VARCHAR type,then use the getBytes() method to get the value.
    How can I implement it.
    I know proc can implement it, simply set selda->T[sli] with 1 for any field.

    Hello,
    What's your LabVIEW version ? Do you have a simple example program which demonstrates this behavior ?
    I found another discussions related to your issues with Xcontrols:
    updating type defs in Xcontrol Facade
    No Data Change event generated for a XControl in a Type Def
    XControl facede.vi 
    Hope this helps.
    Regards, 
    Steve M.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Vidéo-t'chats de l'été : présentations techniques et ingénieurs pour répondre à vos questions

  • Oracle to ODBC data type mapping

    Hi all.
    I am currently using an EasySoft ODBC driver to connect to 10g. This gives me the ability to map oracle data types to ODBC:
    0 NUMBER <= 4 digits SQL_SMALLINT
    NUMBER <= 9 digits SQL_INTEGER
    NUMBER <= 19 digits SQL_BIGINT
    NUMBER = n digits SQL_NUMERIC
    NUMBER = n,m digits SQL_NUMERIC
    1 NUMBER <= 4 digits SQL_SMALLINT
    NUMBER <= 9 digits SQL_INTEGER
    NUMBER = n digits SQL_DOUBLE
    NUMBER = n,m digits SQL_DOUBLE
    2 NUMBER <= 4 digits SQL_SMALLINT
    NUMBER = n digits SQL_INTEGER
    NUMBER <= 19 digits SQL_BIGINT
    NUMBER n,m digits SQL_DOUBLE
    I would rather use the Oracle ODBC driver but I am unsure how (read if) I can get these values mapped?
    Any help would be much appreciated.

    Hi,
    Could you re-run with CQLProcessor category set to DEBUG?
    Which version of OCEP is it?
    Thanks,

  • New Effective CAL essay: How do I create an abstract data type in CAL?

      <p><strong>How do I create an abstract data type in CAL?</strong></p>  <p> </p>  <p>An <em>abstract data type</em> is one whose internal representation can be changed without needing to modify the source code of client modules that make use of that type. For software maintainability, it is a good idea to make a type that is subject to change or enhancement into an abstract data type. Another reason to create an abstract data type is to enforce invariants for values of the type that can only be ensured by using <em>constructor functions</em> (i.e. functions that return values of that type).</p>  <p> </p>  <p>In principle it is simple to create an abstract data type in CAL. For an algebraic data type, make the type constructor public and all data constructors private. For a foreign data type, make the type constructor public and the implementation scope private. If a scope qualifier is omitted, the scope is taken to be private.</p>  <p> </p>  <p>For example, the Map algebraic data type has the public type constructor Map and the data constructors Tip and Bin are each private, so it is an abstract data type.</p>  <p> </p>  <p>/** A map from keys (of type {@code k@}) to values</p>  <p>   (of type {@code a@}). */</p>  <p><strong>data</strong> <strong>public</strong> Map k a <strong>=</strong></p>  <p>    <strong>private</strong> Tip <strong>|</strong></p>  <p>    <strong>private</strong> Bin</p>  <p>        size      <strong>::</strong> <strong>!</strong>Int</p>  <p>        key       <strong>::</strong> <strong>!</strong>k</p>  <p>        value     <strong>::</strong> a</p>  <p>        leftMap   <strong>::</strong> <strong>!(</strong>Map k a<strong>)</strong></p>  <p>        rightMap  <strong>::</strong> <strong>!(</strong>Map k a<strong>);</strong></p>  <p><strong> </strong></p>  <p><strong> </strong></p>  <p>There are a number of invariants of this type: the size field represents the number of elements in the map represented by its Bin value. The keys in leftMap are all less than key, which in turn is less than all the keys in rightMap.  In particular, non-empty Map values can only be created if the key parameter type is a member of the Ord type class.</p>  <p> </p>  <p>Values of the Map type can be created outside the Cal.Collections.Map module only by using constructor functions such as insert:</p>  <p> </p>  <p>insert <strong>::</strong> Ord k <strong>=></strong> k <strong>-></strong> a <strong>-></strong> Map k a <strong>-></strong> Map k a<strong>;</strong></p>  <p><strong>public</strong> insert <strong>!</strong>key value <strong>!</strong>map <strong>= ...</strong></p>  <p> </p>  <p>The owner of the Cal.Collections.Map module must ensure that all invariants of the Map type are satisfied, but if this is done, then it will automatically hold for clients using this function.</p>  <p> </p>  <p>Some examples of foreign abstract data types are Color, StringNoCase  and RelativeDate:</p>  <p> </p>  <p><strong>data</strong> <strong>foreign</strong> <strong>unsafe</strong> <strong>import</strong> <strong>jvm</strong> <strong>private</strong> "java.awt.Color"</p>  <p>    <strong>public</strong> Color<strong>;</strong></p>  <p><strong> </strong></p>  <p><strong>data</strong> <strong>foreign</strong> <strong>unsafe</strong> <strong>import</strong> <strong>jvm</strong> <strong>private</strong> "java.lang.String"</p>  <p>    <strong>public</strong> StringNoCase<strong>;</strong></p>  <p><strong> </strong></p>  <p><strong>data</strong> <strong>foreign</strong> <strong>unsafe</strong> <strong>import</strong> <strong>jvm</strong> <strong>private</strong> "int"</p>  <p>    <strong>public</strong> RelativeDate<strong>;</strong></p>  <p> </p>  <p>The private implementation scope for Color means that a foreign function whose type involves Color can only be declared in the Cal.Graphics.Color module where the Color type is defined. A foreign function declaration involving the Color type relies on the compiler knowing that the Color type corresponds to java.awt.Color to resolve the corresponding Java entity i.e. it must know about the implementation of the Color type. Having a private implementation scope means that the Color type can be changed to correspond to a different Java class, or indeed to be an algebraic type, without the risk of breaking client code.</p>  <p> </p>  <p>In all these three cases there are useful, and different, design reasons to adopt a private implementation scope:</p>  <p> </p>  <p>For RelativeDate, the Java implementation type int represents a coded Gregorian date value in the date scheme used by Crystal Reports. Not all int values correspond to valid dates, and the algorithm to map an int to a year/month/day equivalent is fairly complicated, taking into account things like Gregorian calendar reform. Thus, it is desirable to hide the implementation of this type.</p>  <p> </p>  <p>For StringNoCase, the implementation is more straightforward as a java.lang.String. The reason to adopt a private implementation scope is to ensure that all functions involving StringNoCase preserve the semantics of StringNoCase as representing a case-insensitive string value. Otherwise it is very easy for clients to declare a function such as:</p>  <p> </p>  <p><strong>foreign</strong> <strong>unsafe</strong> <strong>import</strong> <strong>jvm</strong> "method replace"</p>  <p>    replaceChar <strong>::</strong> StringNoCase <strong>-></strong> Char <strong>-></strong> Char <strong>-></strong> StringNoCase<strong>;</strong></p>  <p> </p>  <p>which does not handle case-insensitivity correctly, but is a perfectly valid declaration. This declaration results in a compilation error when it is placed outside the module in which StringNoCase is defined because of the private implementation scope of StringNoCase.</p>  <p> </p>  <p>For Color, the issue is somewhat more subtle. The java.awt.Color implementation type is semantically the same as the CAL Color type. The problem is that java.awt.Color is mutable (since it can be sub-classed to create a mutable type). It is preferable for a first-class CAL type to not be mutable, so we simply make the implementation scope private to ensure that this will be the case. </p>  <p> </p>  <p>A somewhat less encapsulated kind of abstract data type can be created using <em>friend modules </em>and <em>protected</em> scope. For example, if an algebraic type is public, and all its data constructors are protected, then the data constructors can be accessed in the friend modules of the module in which the type is defined. Effectively this means that the implementation of the semantics of the type stretches over the module in which the type is defined, and all of its friend modules. These must all be checked if the implementation of the type is modified. </p>  <p> </p>  <p>Given the merits of abstract data types discussed above, it is perhaps surprising that most of the core types defined in the Prelude module are not abstract data types. For example: Boolean, Char, Int, Double, String, List, Maybe, Either, Ordering, JObject, JList, and all record and tuple types are non-abstract types. </p>  <p> </p>  <p>There are different reasons for this, depending on the particular type involved. </p>  <p> </p>  <p>For example, Boolean, List, Maybe, Either and Ordering are all rather canonical algebraic data types with a long history in functional languages, with many standard functions using them. They are thus guaranteed never to change. In addition, their values have no particular design invariants that need to be enforced via constructor functions. Exposing the data constructors gives clients some additional syntactic flexibility in using values of the type. For example, they can pattern match on the values using case expressions or let patterns.</p>  <p> </p>  <p>Essentially the same explanation holds for record and tuple types. Although non-tuple record types are less canonical, they do correspond to the fundamental notion of an anonymous named-field product type. The "anonymous" here simply means that the programmer can create an entirely new record type simply by creating a value; the type does not have to be declared anywhere prior to use.</p>  <p> </p>  <p>Char, Int, Double, String, JObject and JList are foreign types where in fact part of the semantics of the type is that we want clients to know that the type is a foreign type. For example, we want clients to know that Prelude.Int is essentially the Java primitive unboxed int type, and has all the semantics you would expect of the Java int type i.e. this is quite different from RelativeDate which is using int as its implementation type in a very tactical way that we may choose to change. One can think of a public foreign type declaration with public implementation scope as simply introducing the Java type into the CAL namespace.</p>  <p> </p>  <p>One interesting point here is with CAL&#39;s naming convention for public foreign types. We prefix a type name by "J" (for "Java") for foreign types with public implementation type such that the underlying Java type is mutable. This is intended as mnemonic that the type is not a pure functional type and thus some caution needs to be taken when using it. For example, Prelude.JObject has public Java implementation type java.lang.Object.</p>  <p> </p>  <p>In the case where the underlying Java type is not mutable, we do not use the prefix, since even though the type is foreign; it is basically a first class functional type and can be freely used without concern. For example, Prelude.String has public Java implementation type java.lang.String.</p>  <p> </p>  <p>In the case where the implementation type is private, then the fact that the type is a foreign type, whether mutable or not, is an implementation detail and we do not hint at that detail via the name. Thus Color.Color has as its private Java implementation type the mutable Java type java.awt.Color. </p>  <p> </p>  <p>When creating abstract data types it is important to not inadvertently supply public API functions that conflict with the desired public semantics of the type. For example, if the type is publicly a pure-functional (i.e. immutable) type such as Color, it is important not to expose functions that mutate the internal Java representation.</p>  <p> </p>  <p>A more subtle case of inadvertently exposing the implementation of a type can occur with derived instances. For example, deriving the Prelude.Outputable and Prelude.Inputable type classes on a foreign type, whose implementation type is a mutable Java reference type, allows the client to gain access to the underlying Java value and mutate it
    (by calling Prelude.output, mutating, and then calling Prelude.input). The solution in this case is to not derive Inputable and Outputable instances, but rather to define a custom Inputable and Outputable instance that copies the underlying values.</p>

    Hi Pandra801,
    When you create a the external content type, please try to add a filter based on your select statement.
    http://arsalkhatri.wordpress.com/2012/01/07/external-list-with-bcs-search-filters-finders/
    Or, try to create a stored procedure based on your select statement, then create ECT using the SQL stored procedure.
    A step by step guide in designing BCS entities by using a SQL stored procedure
    http://blogs.msdn.com/b/sharepointdev/archive/2011/02/10/173-a-step-by-step-guide-in-designing-bcs-entities-by-using-a-sql-stored-procedure.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to define data type in an easier way when exposing RFC as WS?

    Hi,all!
    I am trying to expose RFC--"BAPI_SALESORDER_CREATEFROMDAT2" which is in R/3 46c(without WAS) as an Web Service.
    When I try to create related data/message/interface type for the parameters used in this RFC, I found it a really difficult job cauze there are too many types of parameters used in "BAPI_SALESORDER_CREATEFROMDAT2".
    So I am wondering is there an easy way to create a corresponding Interface for RFC--"BAPI_SALESORDER_CREATEFROMDAT2".
    Thanks!
    Message was edited by:
            Kee Wang

    Hi,
    Just an addition to the above, when you download the WSDL, you get some data types in the Message TABP of the External Definition.
    You can use these as the Message Type for your mapping. You still have to create the MI for these Message types.
    Regards
    Vijaya

  • Facing incompatibilty in referencing data types

    Hi all,
    Here is the below given example :
    I have a procedure A(which is an WebMethod API) which has empobj as in-parameter object type and call_status as out-parameter object type
    procedure A(emp_id IN empobj,call_st OUT call_status )
    I have to create a new procedure 'B' and within the procedure i have to call procedure 'A'.But the problem lies in mapping of data types.
    As procedure 'A' does not support object type as OUT-parameter we have to refer by refcursor.Is there any suitable process instead of refcursors so that i can map the object type in procedure A(which is an WebMethod API)???
    I need a suggestion as i am confused in relating object types
    please forward an exmaple to relate
    Regards
    Saugata

    hi,
    i have these field:
    *select VBAK~KUNNR VBAK~ERNAM VBAK~AUDAT VBAK~AUFNR VBAP~KWMENG VBAP~MATNR VBAP~MATKL
      up to 10 rows
        from VBAK inner join VBAP on VBAK~VBELN = VBAP~VBELN
        into table IT_VBAKUK.
    endform.*
    I want to add these field in my parameter by using WHERE clause but don't know how to restrict these field using where clause.
    Kindly give me some example related to this.
    Regards

Maybe you are looking for

  • HP 5530 wireless printer shows offline but it is turned on, I use a router

    My printer shows to be offline, sometimes it prints pages at random, which I have no idea why or what they are about, kinda scary, It is turned on and the wirelss light is not blinking, but shows offline when i try to prine from my laptop.Its a HP 55

  • Edited photos not saving correctly

    Sorry about the name. I am new to this program and I tried to join for an hour without success then my hubby took over!!! Now to my serious headache causing problem. After editing photos I saved them to my folder exactly as Adobe Help suggests, in Jp

  • Real Time Job

    Hello Friends,      Can someone send to my email ID all the work details of real time SD implementation. Also, in case if an SD Consultant is stuck anywhere, whose help he can take to go ahead by solving the problem, in case if he is not able to solv

  • How to Fix quality issues with video in Premiere Elements?

    I am uning Premiere Elements 10 on a HP computer with sufficient RAM and an i5 processor.  When I upload footage from my Canon Vixia HF r20, it looks fine using Windows media player to play it back, but after putting it into premiere elements 10 usin

  • SRM workflow set dfault reviewer for haz material one step approval SC

    Good afternoon everyone, is there a way to add default reviewer  always to show up on approval preview for haz materials shopping cart??? I am using standard wf template ws 10000129. do i have to copy it and make some changes or is ther eany way i ca