Doubt in type conversions

Hi gurus,
I retrive the vbelv and vbeln values from VBFA table into my internal table.
In that some vbeln values are equal to tanum values in LTAP table.
for this i wrote the select query like below.
  if gt_vbfa is not initial.
    select 
                tanum
                nistm
               from ltap
               into table gt_ltap
              for all entries in gt_vbfa
               where tanum =  gt_vbfa-vbeln.
But is shows error, Why because, the type of the TANUM field is NUMC and the type of the VBELN field is CHAR.
But the values of vbeln are equal to tanum.
   How can i retrive tanum values for corresponding vbeln values.
Please can any one suggest me on this issue.
  Thanks in Advance.
Thanks and Regards
Siri...

Hi siri,
You do one thing declare the another field in your internal table
with refer to  ltap-tanum
like as follows.
data : begin of itab occurs 0,
          f1,
          f2,
          v_tanum like ltap-tanum,
         end of itab.
loop at itab.
itab-v_tanum = itab-vbeln.
modify itab trnsporting v_tanum.
clear itab.
endloop.
then go for the selection....
if gt_vbfa-v_tanum is not initial.
select
tanum
nistm
from ltap
into table gt_ltap
for all entries in gt_vbfa
where tanum = gt_vbfa-v_tanum.
endif.
Hope your problem will be solved.
Regards,
Madan.

Similar Messages

  • Implicit and explicit Type conversion using Type object in heap

    Hi,
    I am surprised how Implicit and explicit Type conversion works using Type object in heap. for example when implicit type conversion occur what pointer it returns to object and similarly with explicit type conversion.

    Hello,
    >> I am surprised how Implicit and explicit Type conversion works using Type object in heap.
    For Implicit conversions: Typical examples are conversions from smaller to larger integral types, and conversions from derived classes to base classes. For the first one, the reference would be different which means it would return a different pointer to
    a new object. For the reference type, it actually points to the same memory location, you could use the object.ReferenceEquals() to check it.
    For Explicit conversions (casts):Typical examples include numeric conversion to a type that has less precision or a smaller range, and conversion of a base-class instance to a derived class. For first one, it would perform the same with implicit conversions.
    While for the conversion of conversion of a base-class instance to a derived class, actually, there's no built-in way to do this conversion.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • The priority of different data type conversion

    Hi All,
    I want to know the priority of data type conversion rule. if in an expression, I have several kind of data type( I, P, F,N..).
    Then finaly, all the data object will convert to which data type?
    I don't know the priority of data conversion.
    E.g.   data a type i. data b type p. data c type f.
             a = b + c.
    or    data d type p, data e type f.
          if ( d > f ).
    Then who will convert to who's type?
    Thanks and Regards.
    Aaron

    For expressions, the right term in SAP is "calculation type", it's explained here : [abap help - determining the calculation type|http://help.sap.com/abapdocu_70/en/ABENARITH_TYPE.htm]. SAP takes the "biggest" type of all variables in the expression. It can be I, P or F (smallest is I, biggest is F).
    Conditions are handled differently, just using data type conversion (see link given above by Abhishek), SAP converts from smallest to biggest type (in your case, it converts P to F and compares the two F variables).

  • Need Help with data type conversion

    Hello People,
    I am new to java, i need some help with data type conversion:
    I have variable(string) storing IP Address
    IPAddr="10.10.103.10"
    I have to call a library function which passes IP Address and does something and returns me a value.
    The problem I have is that external function call in this library excepts IP Address in form of a byte array.
    Here is the syntax for the function I am calling through my program
    int createDevice (byte[] ipAddress).
    now my problem is I don't know how to convert the string  IPAddr variable into a byte[] ipAddress to pass it through method.

    Class InetAddress has a method
    byte[]      getAddress() You can create an instance using the static method getByName() providing the IP address string as argument.

  • Invalid data type conversions

    what are the invalid data type conversions in ABAP ???
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Mar 10, 2012 6:01 PM

    No Amanda,
    The values that I see in message monitor are also those that comes to XSLT programs as input.
    I investigated our problem a little further myself:
    1) XI always converts messages into XML format - this everybody knows.
    2) In XI documentation it is declared that XI uses ISO 8601 for DATE type formatting. That's why you see dates in format YYYY-MM-DD in XML data in message monitoring.
    3) The appearance of those decimal values are not that obvious for me. If XI uses ABAP transformation for message content then applies the rules for converting ABAP data types into XML. For this there is a SAP document 'ABAP - XML mapping' from TechEd2004. This document seems to describe how ABAP data types are handled by XML transformation.
    Anyway, we currently need to play with decimal values in XSLT mapping programs inside XI:
    a) add leading 0 integer if source value < 1
    RFC returns 0.123 -> XI converts to XML '.123' -> XSLT mapper should return '0.123' ->SOAP response returns '0.123'
    b) add decimal point and trailing zeros
    RFC returns 0.000 -> XI converts to XML '0' -> XSLT mapper should return '0.000' ->SOAP response return '0.000'
    With dates, the problem is actually on documenting mapping rules when writing interface specifications. If you would write an EAI-solution-independent conversion rule (RFC/date->SOAP/char) for date field it could sound like: YYYYMMDD -> dd.mm.yyyy. This works semantically between these systems but would not work for XI-developer, because he get YYYY-MM-DD from the RFC.
    Additionally the decimal type conversion requirements in XSLT mapping programs probably only applies XI and are therefore not reusable in other EAI environments.
    I would be glad if somebody would still have further comments for this data type conversion issue.
    br: Kimmo

  • WebDynpro call Returns an exception: Type conversion error

    Hi,
    I'm trying to start some of the standard SAP web dynpro .
    most of then work fine.
    some don't and i get the following error message.
    Root Cause
    The initial exception that caused the request to fail, was:
    +com.sap.aii.proxy.framework.core.DataAccessException: Type conversion error, field TAX_PER_DIEMTAX, complex type class com.sap.xss.tra.tre.model.expenses.Ptrv_Web_General_Data_Int+
    +at com.sap.aii.proxy.framework.core.JcoBaseTypeData.propagateJcoException(JcoBaseTypeData.java:130)+
    +at com.sap.aii.proxy.framework.core.JcoBaseTypeData.setElementValue(JcoBaseTypeData.java:751)+
    +at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValue(DynamicRFCModelClass.java:482)+
    +at com.sap.tc.webdynpro.progmodel.context.GenericModelClassCopyHelper.setAttributeValue(GenericModelClassCopyHelper.java:69)+
    +at com.sap.tc.webdynpro.progmodel.context.CopyService.copyCorresponding(CopyService.java:55)+
    +... 66 more+
    See full exception chain for details.
    could anyone give me an hint.
    jco connetion are made and testet for:
    sap_r3_humanresources
    sap_r3_finacials
    sap_r3_selfservicegenerics
    sap_r3_travel
    analog the *_MetaData
    Thank in advance
    Maximilian

    Hello
    did you solve this problem? I have the same error
    Regards

  • Data type conversion JCO To ABAP( Double to DEC)

    Hi,
      I want to update a field having data type as DEC with length 11 in APO system using JCO.Whatever i give as input is not getting reflected in APO system. Instead i get some different value.
    It seems that there is some data type conversion for that field..
    Thanks
    Archana

    if(tableName.equals("BAPI10001LOCPRDVERS2"))
                                                           table.appendRow();
                                                           //System.out.println("getting inside table "+tableName);
                                                           table.setValue("SOP112","PRODUCT");
                                                           table.setValue("SCMTEST111","LOCATION");
                                                           table.setValue("1001","LOCTYPE");
                                                           table.setValue("SCMTEST111","LOCATION_INT");
                                                           table.setValue("000","PLANNING_VERSION");
                                                           table.setValue("5000","SAFETY_DAYS_SUPPLY");//this is the field having problem
                                                           table.setValue("5","SAFETY_STOCK");
                                                           table.setValue(" ","SAFTY_STOCK_CALC_METHOD");
                                                           table.setValue("5.00","OPENING_PERIOD");
                                                           table.setValue("15","FORECAST_HORIZON");
                                                           table.setValue(("20000"),"VMI_PROM_LEAD_TIME");
                                                           table.setValue("0","MINIMUM_LOT_SIZE");
                                                           table.setValue(bd1,"TARGET_DAYS_SUPPLY");

  • Formula node: type conversion

    Hello guys
    I have LV 5.0 and have to edit a script which has some kind of overflows. For testing I set all variables to the hightest usable range - extended or i32. Now I see, in all formula nodes, there are type conversions. How can I change the type of the inputs/outputs of the formula node?
    Hardware_Tester
    My first language is German, please ignore my faults...

    Hi,
    I forgot that you run Lv5.0. My example refers to Lv7.1.
    As far as I know in Lv7.1 the input variable type changes automatically as you connect a control.
    On the contrary the output is DBL by default but you can change it in the formula node introducing an explicit declaration of that variable (see "h" in the attached picture).
    Here are some useful link:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=12253&requireLogin=False
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/d6bed7d73659c43586256a7300691c26?
     Sorry, I understand that this cannot solve your problem but I don't remember how Lv5.0 works with formula node.
    Regards
    CLD - Labview Certified Developer
    Attachments:
    untitled3.gif ‏42 KB

  • Unicode Type Conversion Error

    Hi Friend,
    I am working in UNICODE project,i need one help,
    I have one error .
    Actually, im using one structure(Z0028) and passing values to internal table.
    At that time i shows one error.
    Actually,this error is due to type conversion problem.
    In that structure,i ve one packed datatype ,so, if i select
    unicode check it shows error.
    I will sent example prg and error also.
    Please give some solution to slove.
    REPORT  YPRG1                                   .
    TABLES: Z0028.
    DATA:I_Z0028 TYPE Z0028 OCCURS 0 WITH HEADER LINE .
    SELECT * FROM Z0028 INTO TABLE I_Z0028 .
    IF SY-SUBRC <> 0 .
      WRITE:/ ' NO DATA'.
    ENDIF.
      LOOP AT I_Z0028.
        WRITE:/ I_Z0028.
      ENDLOOP.
    Regards,
    Kalidas.T

    Hi,
    Display fields
    do like this..
    REPORT YPRG1 .
    TABLES: Z0028.
    DATA:I_Z0028 TYPE Z0028 OCCURS 0 WITH HEADER LINE .
    SELECT * FROM Z0028 INTO TABLE I_Z0028 .
    IF SY-SUBRC 0 .
    WRITE:/ ' NO DATA'.
    ENDIF.
    LOOP AT I_Z0028.
    WRITE:/ I_Z0028-field1,
                  I_Z0028-field2
    I_Z0028-field3.
    ENDLOOP.
    Regards,
    Prashant

  • After Effects CS6 Crashing on Start up - Invalid Type Conversion

    Hi Guys,
    I just installed Adobe After Effects CS6 - along with photoshop, indesign and illustrator, all of which are working fine.
    When I start After Effects up it goes until it gets to Initializing User Interface. There it stops and I get the message - After Effects warning: Invalid type conversion.
    What does this mean? How can I fix it?
    I am running Windows 7, if you need any more system info please let me know. Im a bit of a newbie

    I have Windows 7 64, quad core, 8gb DDR3 ram, nvidia gtx460se card. I found a way to work around it: I had my computer set to 16 bit; when I set it back to 32 bit it worked fine. If AE is up and I set the computer back to 16 bit, sometimes a message pops up that says 'After Effects warning: A problem occurred when processing Open GL commands'. I can get it to happen whenever I switch from the footage window to the composition window.
    Max

  • Data type conversion from packed to numeric

    Hi Experts,
    i have a question on data type conversion. My requirement is:
    i have fields of type packed decimal in my internal table itab. I need to convert the values of packed decimal fields in itab to numeric type.
    Example:
    Data: begin of itab occurs 0,
                ebeln like ekko-ebeln,
                ebelp like ekpo-ebelp,
                menge(15) type p decimals 2,
                netpr(15) type p decimals 2,
              end of itab. 
    if itab-menge has a value of 2.00, i need to convert that value to '         200'.  Right justified.
    if itab-netpr has a value of 1,234.56, i need to convert that to '         123456'.
    The above internal table itab is passed to the Function module GUI_DOWNLOAD and the itab data is downloaded to a text file.
    Please let me know how to acheive this objective.

    Hi ,
    You can use
    SPLIT at '.' into v1 v2
    concatenate v1 v2 into vv1.
    REPORT ZDN_TEST_001 .
    data: lv_var1(15) type p decimals 2 value '123.00'.
    data: lv_var2(15) type p decimals 5 value '123.12121'.
    data: lv_varc1(15) type c.
    data: lv_varc2(15) type c.
    data: lv_varc1d(2) type c.
    data: lv_varc2d(5) type c.
    data: lv_varc11(15) type c.
    data: lv_varc21(15) type c.
    write:/ lv_var1.
    write:/ lv_var2.
    *1)write & REPLACE.
    write lv_var1 to lv_varc1.
    write lv_var2 to lv_varc2.
    REPLACE '.' WITH SPACE INTO lv_varc1.
                 CONDENSE lv_varc1 NO-GAPS.
    REPLACE '.' WITH SPACE INTO lv_varc2.
                 CONDENSE lv_varc2 NO-GAPS.
    write:/ lv_varc1.
    write:/ lv_varc2.
    *2)split & concatinate
    write lv_var1 to lv_varc1.
    write lv_var2 to lv_varc2.
    split lv_varc1 at '.' into lv_varc1 lv_varc1d.
    concatenate lv_varc1 lv_varc1d into lv_varc11.
    split lv_varc2 at '.' into lv_varc2 lv_varc2d.
    concatenate lv_varc2 lv_varc2d into lv_varc21.
    write:/ lv_varc11.
    write:/ lv_varc21.

  • Need help RE: "Type Conversion"...

    Hi, need some urgen help here...
    I had done the following below:
    =====
    import java.awt.*;
    import java.applet.*;
    public class Demo extends Applet
         int ivalue = 3;
         double dvalue = 3.9;
         int a1 = dvalue;
         double a2 = ivalue*2;
         public void paint (Graphics g)
              g.drawString ("inum is " + a1, 25,50);
              g.drawString ("dnum is " + a2, 25,75);
    =====
    I wanted to convert my 'dvalue' to '3' but can't...Why?
    (error: possible loss of precision found :double required: int)
    How to retify it?
    Converting my 'ivalue' to '6.0' is ok.

    Listening to Author: angusedison, problem solved!
    Second problem, I wanted to calculate the volume of sphere...
    =====
    import java.awt.*;
    import java.applet.*;
    public class Sphere extends Applet
         double radius, II, volume;
         public void paint (Graphics g)
              radius = 12.5;
              II = 3.142;
              volume = 4 / 3 * II * radius * radius * radius;
              g.drawString ("Volume is " + volume, 25,50);
    =====
    & ans from this is "6136.71875", but using my calculator it's "8182.291667" (which is suppose to be the correct answer).
    What's the problem & how to solve it???
    Do I use Type Conversion too?

  • DataAccessException Type conversion error complex type class

    Hello,
    We meet some trouble randomly wrbtr field, we have suspected the jco cache, but after a reboot the problem still occurs.
    We currently use this field on others webdynpro applications.
    While execute the message displays :
    DataAccessException : Type conversion error, field wrbtr complex type class dop.model.Zst_Pp_liste
    We have a Z customize structure, which contains a zone "WAERS", used as reference field for wrbtr
    Anyone has an idea to look for ?

    Are you sure you have posted this question in the correct forum?  I don't see how this is Web Dynpro ABAP related. You refer to JCo cache and Java style class names.  I think perhaps you actually should have posted this question in the Web Dynpro Java forum?

  • Porting from win to mac / expected constructor destructor or type conversion before

    I am porting a plugin that works well with CS3/4/5 on Windows to CS3 on Mac.
    I am able to compile the SDK samples with XCode. My plugin also compiles with XCode if i remove one cpp file from the project. If i try to compile it with the file (actioncomponent.cpp) compiling fails with the error:
    expected constructor destructor or type conversion before .....
    I tried to trace the error by commenting out ceveral includes and functions in that file. The error then point's to another place in the file itself or in one included in it, the error is the same.
    I generated the project with dollyx, added my .fr, compiled it, added the .fr.rsrc, added source files and built it.
    Since this is my first Indesign plugin for Mac I am sure that i miss something general.
    Any suggestions?

    I checked my code against every SDK sample where context/session is used and cannot find any difference. I also took a sample project, included my sources what resulted in the same error messages.
    One of them:
    Checking Dependencies
    CompileC build/myPluginName.build/Default/Release.build/Objects-normal/ppc/myPluginNameActionCompo nent.o /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../../../source/sdksa mples/myPluginName/myPluginNameActionComponent.cpp normal ppc c++ com.apple.compilers.gcc.4_0
        cd /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj
        /Developer/usr/bin/gcc-4.0 -x c++ -arch ppc -pipe -Wno-trigraphs -fno-exceptions -fpascal-strings -fasm-blocks -O3 -Werror -Wreturn-type -Wunused-value -DMACINTOSH -DBIB_NO_THROW -fmessage-length=0 -mtune=G5 -fvisibility=hidden -fvisibility-inlines-hidden -fno-threadsafe-statics -Wno-deprecated-declarations -mmacosx-version-min=10.4 -gdwarf-2 -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName. build/Default/Release.build/myPluginName.hmap -Wno-deprecated -F/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../release/sdk -F../../../build/mac/release/packagefolder/contents/macos -F../../../build/mac/release/packagefolder/contents/Frameworks -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../release/sdk/incl ude -I/Developer/SDKs/MacOSX10.4u.sdk/Developer/Headers/FlatCarbon -I../../../external/adobesourcelibrary/third_party/boost_tp/boost -I../../../external/afl/includes -I../../../source/precomp/common -I../../../source/precomp/msvc -I../../../source/public/includes -I../../../source/public/interfaces/architecture -I../../../source/private/includes/architecture -I../../../source/private/interfaces/architecture -I../../../source/public/includes/utils -I../../../source/public/interfaces/utils -I../../../source/precomp/msvc -I../../../source/public/interfaces/xmedia -I../../../source/public/interfaces/ui -I../../../source/public/interfaces/tables -I../../../source/public/interfaces/text -I../../../source/public/interfaces/graphics -I../../../source/public/components/widgetbin/includes -I../../../source/public/interfaces/workgroup -I../../../source/public/interfaces/interactive -I../../../source/public/interfaces/interactive/ui -I../../../source/public/interfaces/colormgmt -I../../../source/public/interfaces/utils -I../../../source/public/interfaces/incopy -I../../../source/public/interfaces/layout -I../../../source/public/interfaces/architecture -I../../../source/public/interfaces/cjk -I../../../source/precomp/common -I../../../source/public/includes -I../../../source/public/components/publiclib/plugins -I../../../source/public/components/publiclib/files -I../../../source/public/components/publiclib/objectmodel -I../../../external/boost -I../../../source/sdksamples/common -I../../../external/afl/includes -I../../../source/sdksamples/myPluginName -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName. build/Default/Release.build/DerivedSources -isysroot /Developer/SDKs/MacOSX10.4u.sdk -include build/SharedPrecompiledHeaders/Release/PluginPrefix-hkopdumatdlxfjbkpugezhwgmujv/PluginPr efix.pch -c /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../../../source/sdksa mples/myPluginName/myPluginNameActionComponent.cpp -o /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName.bu ild/Default/Release.build/Objects-normal/ppc/myPluginNameActionComponent.o
    ../../../source/public/includes/KeyValuePair.h:36: error: expected constructor, destructor, or type conversion before 'template'
    ../../../source/public/includes/KeyValuePair.h:82: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:82: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:82: error: 'bool operator==(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:82: error: 'bool operator==(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator==(int)':
    ../../../source/public/includes/KeyValuePair.h:84: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:84: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:97: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:97: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:97: error: 'bool operator==(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:97: error: 'bool operator==(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h:97: error: redefinition of 'template<class _T1, class _T2> bool operator==(int)'
    ../../../source/public/includes/KeyValuePair.h:82: error: 'template<class _T1, class _T2> bool operator==(int)' previously declared here
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator==(int)':
    ../../../source/public/includes/KeyValuePair.h:99: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:99: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:112: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:112: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator==(const _T1&, int)':
    ../../../source/public/includes/KeyValuePair.h:114: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:124: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:124: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:124: error: 'bool operator<(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:124: error: 'bool operator<(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator<(int)':
    ../../../source/public/includes/KeyValuePair.h:126: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:126: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:135: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:135: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:135: error: 'bool operator<(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:135: error: 'bool operator<(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h:135: error: redefinition of 'template<class _T1, class _T2> bool operator<(int)'
    ../../../source/public/includes/KeyValuePair.h:124: error: 'template<class _T1, class _T2> bool operator<(int)' previously declared here
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator<(int)':
    ../../../source/public/includes/KeyValuePair.h:137: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:137: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:146: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:146: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator<(const _T1&, int)':
    ../../../source/public/includes/KeyValuePair.h:148: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:157: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:157: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:157: error: 'bool operator!=(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:157: error: 'bool operator!=(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator!=(int)':
    ../../../source/public/includes/KeyValuePair.h:158: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:158: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:167: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:167: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:167: error: 'bool operator>(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:167: error: 'bool operator>(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator>(int)':
    ../../../source/public/includes/KeyValuePair.h:168: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:168: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:177: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:177: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:177: error: 'bool operator<=(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:177: error: 'bool operator<=(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator<=(int)':
    ../../../source/public/includes/KeyValuePair.h:178: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:178: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:187: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:187: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h:187: error: 'bool operator>=(int)' must have an argument of class or enumerated type
    ../../../source/public/includes/KeyValuePair.h:187: error: 'bool operator>=(int)' must take exactly two arguments
    ../../../source/public/includes/KeyValuePair.h: In function 'bool operator>=(int)':
    ../../../source/public/includes/KeyValuePair.h:188: error: '__x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:188: error: '__y' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:197: error: expected initializer before '<' token
    ../../../source/public/includes/KeyValuePair.h:225: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:225: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h: In member function 'bool KeyMatchPredicate<Key, Value>::operator()(int)':
    ../../../source/public/includes/KeyValuePair.h:225: error: 'x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: At global scope:
    ../../../source/public/includes/KeyValuePair.h:252: error: expected ',' or '...' before '<' token
    ../../../source/public/includes/KeyValuePair.h:252: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/includes/KeyValuePair.h: In member function 'bool ValueMatchPredicate<Key, Value>::operator()(int)':
    ../../../source/public/includes/KeyValuePair.h:252: error: 'x' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: In function 'void InsertKeyValue(Container&, const Key&, const Value&)':
    ../../../source/public/includes/KeyValuePair.h:282: error: 'KeyValuePair' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:282: error: expected primary-expression before ',' token
    ../../../source/public/includes/KeyValuePair.h:282: error: expected primary-expression before '>' token
    ../../../source/public/includes/KeyValuePair.h: In function 'void InsertOrReplaceKeyValue(Container&, const Key&, const Value&)':
    ../../../source/public/includes/KeyValuePair.h:298: error: 'KeyValuePair' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:298: error: expected primary-expression before ',' token
    ../../../source/public/includes/KeyValuePair.h:298: error: expected primary-expression before '>' token
    ../../../source/public/includes/KeyValuePair.h: In function 'int32 InsertKeyValueInSorted(Container&, const Key&, const Value&)':
    ../../../source/public/includes/KeyValuePair.h:326: error: expected initializer before '<' token
    ../../../source/public/includes/KeyValuePair.h:328: error: 'el' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h: In function 'int32 InsertOrReplaceKeyValueInSorted(Container&, const Key&, const Value&)':
    ../../../source/public/includes/KeyValuePair.h:345: error: 'KeyValuePair' was not declared in this scope
    ../../../source/public/includes/KeyValuePair.h:345: error: expected primary-expression before ',' token
    ../../../source/public/includes/KeyValuePair.h:345: error: expected primary-expression before '>' token
    ../../../source/public/interfaces/architecture/IActiveContext.h: At global scope:
    ../../../source/public/interfaces/architecture/IActiveContext.h:56: error: ISO C++ forbids declaration of 'KeyValuePair' with no type
    ../../../source/public/interfaces/architecture/IActiveContext.h:56: error: expected ';' before '<' token
    ../../../source/public/interfaces/architecture/IActiveContext.h:57: error: 'ContextInfo' was not declared in this scope
    ../../../source/public/interfaces/architecture/IActiveContext.h:57: error: template argument 1 is invalid
    ../../../source/public/interfaces/architecture/IActiveContext.h:57: error: template argument 2 is invalid
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:59: error: 'KeyValuePair' was not declared in this scope
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:59: error: template argument 1 is invalid
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:59: error: expected unqualified-id before '>' token
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:172: error: ISO C++ forbids declaration of 'SuiteBroadcastData' with no type
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:172: error: 'SuiteBroadcastData' declared as a 'virtual' field
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:172: error: expected ';' before '*' token
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:366: error: 'KeyValuePair' was not declared in this scope
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:366: error: template argument 1 is invalid
    ../../../source/public/interfaces/architecture/ISelectionMessages.h:366: error: expected unqualified-id before '>' token
    ../../../source/public/interfaces/architecture/ISelectionManager.h:166: error: 'SuiteBroadcastData' has not been declared
    ../../../source/public/interfaces/architecture/ISelectionManager.h:212: error: 'SuiteBroadcastData' has not been declared
    /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../../../source/sdksam ples/myPluginName/myPluginNameActionComponent.cpp:43: error: definition of implicitly-declared 'virtual myPluginNameActionComponent::~myPluginNameActionComponent()'
    CompileC build/myPluginName.build/Default/Release.build/Objects-normal/i386/myPluginNameDialogObse rver.o /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../../../source/sdksa mples/myPluginName/myPluginNameDialogObserver.cpp normal i386 c++ com.apple.compilers.gcc.4_0
        cd /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj
        /Developer/usr/bin/gcc-4.0 -x c++ -arch i386 -pipe -Wno-trigraphs -fno-exceptions -fpascal-strings -fasm-blocks -O3 -Werror -Wreturn-type -Wunused-value -DMACINTOSH -DBIB_NO_THROW -fmessage-length=0 -fvisibility=hidden -fvisibility-inlines-hidden -fno-threadsafe-statics -Wno-deprecated-declarations -mmacosx-version-min=10.4 -gdwarf-2 -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName. build/Default/Release.build/myPluginName.hmap -DMACTEL_SKIP -Wno-deprecated -F/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../release/sdk -F../../../build/mac/release/packagefolder/contents/macos -F../../../build/mac/release/packagefolder/contents/Frameworks -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../release/sdk/incl ude -I/Developer/SDKs/MacOSX10.4u.sdk/Developer/Headers/FlatCarbon -I../../../external/adobesourcelibrary/third_party/boost_tp/boost -I../../../external/afl/includes -I../../../source/precomp/common -I../../../source/precomp/msvc -I../../../source/public/includes -I../../../source/public/interfaces/architecture -I../../../source/private/includes/architecture -I../../../source/private/interfaces/architecture -I../../../source/public/includes/utils -I../../../source/public/interfaces/utils -I../../../source/precomp/msvc -I../../../source/public/interfaces/xmedia -I../../../source/public/interfaces/ui -I../../../source/public/interfaces/tables -I../../../source/public/interfaces/text -I../../../source/public/interfaces/graphics -I../../../source/public/components/widgetbin/includes -I../../../source/public/interfaces/workgroup -I../../../source/public/interfaces/interactive -I../../../source/public/interfaces/interactive/ui -I../../../source/public/interfaces/colormgmt -I../../../source/public/interfaces/utils -I../../../source/public/interfaces/incopy -I../../../source/public/interfaces/layout -I../../../source/public/interfaces/architecture -I../../../source/public/interfaces/cjk -I../../../source/precomp/common -I../../../source/public/includes -I../../../source/public/components/publiclib/plugins -I../../../source/public/components/publiclib/files -I../../../source/public/components/publiclib/objectmodel -I../../../external/boost -I../../../source/sdksamples/common -I../../../external/afl/includes -I../../../source/sdksamples/myPluginName -I/Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName. build/Default/Release.build/DerivedSources -isysroot /Developer/SDKs/MacOSX10.4u.sdk -include build/SharedPrecompiledHeaders/Release/PluginPrefix-ajenzpjyosjkeodzeqpqmcfnvjiw/PluginPr efix.pch -c /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/../../../source/sdksa mples/myPluginName/myPluginNameDialogObserver.cpp -o /Volumes/daten/adobe_indesign_cs3_products_sdk_504mac/build/mac/prj/build/myPluginName.bu ild/Default/Release.build/Objects-normal/i386/myPluginNameDialogObserver.o
    What am I doing wrong?

  • What are Automatic type conversion rules ?

    Please list out the rules that govern automatic type conversion.

    Hi Albert,
    Check the SAP help at:
    http://help.sap.com/saphelp_47x200/helpdata/EN/fc/eb3427358411d1829f0000e829fbfe/frameset.htm
    Regards,
    Arjan

Maybe you are looking for

  • Using AME in Workflow

    Gurus, I am exhausted trying to find a solution to my problem but with no luck, hope I get some answers here. I want to use AME in my custom workflow. How do I go about it? I am finding articles which says use ame_api2.getnextapprovers.... but which

  • RH_RELATION_MAINTAIN/RH_INSERT_INFTY

    I am trying to insert a new HRP1001 Cost Center record  in a program and have been trying to use the above Function Modules.  The problem I am having is that when they encounter a CONFIG problem, like the Cost Center is not open for posting, instead

  • Default fault in Mediator

    I have a wsdl with 1 sync operation input/output and 2 faults defined i switch off the backend system to which i route in the mediator now i'm wondering how i could influence the default fault the mediator triggers and sends back to the client i chan

  • Iterating shopping cart and extracting a list depending on condition

    Hi I am a newbie to ATG and coding world. Please help to resolve this issue: i need to iterate through my shopping cart and eliminate certain products from the shopping cart and create a new list of remaining items. Below is my code: <%@ page import=

  • Send back an error msg to previous page

    hi all, can anyone tel me hw shud i send back an error to previous page and write tht error msg in the same cell of table where text field was null or empty. hw can i sene addtional info with sendRedirect() using sendRedirect("..url...?add=var1"); as