Portability and Comparison between char types

Hi gurus,
I cannot trasport a program.
on SE38 I  went to:
Extended syntax check
Portability ASCII/EBCDIC
And I got the following message:
'Greater than/less than comparisons with character type
operands may not be portable'
on this instruction
if  ( hbsid-kunnr between zfiec-kunnda and zfiec-kunna ).
I also tried with
.    if  ( hbsid-kunnr =>  zfiec-kunnda
                   and hbsid-kunnr <= zfiec-kunna ).
.    if  ( hbsid-kunnr GE zfiec-kunnda ....
it gives me the same error.
Is there a helping hand ?
Thanks,
Christian

Hi,
Its a SLIN error. you can get the exhaustive list on running Extended Program check.
You can use RANGES to avoid the error or you can skip the error using "#EC PORTABLE.
Regards,
Nirmal

Similar Messages

  • Performance end to end testing and comparison between MPLS VPN and VPLS VPN

    Hi,
    I am student of MSc Network Security and as for my project which is " Comparison between MPLS L3 VPN and VPLS VPN, performance monitoring by end to end testing " I have heard a lot of buzz about VPLS as becoming NGN, I wanted to exppore that and produce a comparison report of which technology is better. To accomplish this I am using GNS3, with respect to the MPLS L3 VPN lab setup that is not a problem but I am stuck at the VPLS part how to setup that ? I have searched but unable to find any cost effective mean, even it is not possible in the university lab as we dont have 7600 series
    I would appreciate any support, guidence, advice.
    Thanks
    Shahbaz

    Hi Shahbaz,
    I am not completely sure I understand your request.
    MPLS VPN and VPLS are 2 technologies meant to address to different needs, L3 VPN as opposed as L2 VPN. Not completely sure how you would compare them in terms of performance. Would you compare the performance of a F1 racing car with a Rally racing car?
    From the ISP point of view there is little difference (if we don't want to consider the specific inherent peculiarities of each technology) , as in the very basic scenarios we can boil down to the following basic operations for both:
    Ingress PE impose 2 labels (at least)
    Core Ps swap top most MPLS label
    Egress PE removes last label exposing underlying packet or frame.
    So whether the LSRs deal with underlying L2 frames or L3 IP packets there is no real difference in terms of performance (actually the P routers don't even notice any difference).
    About simulators, I am not aware of anyone able to simulate a L2 VPN (AtoM or VPLS).
    Riccardo

  • Counter KF with 1 & 0 and difference between data type NUMBER (DEC) and INTEGER (INT4)

    Hi,
    I need to create a counter kf which should populate 1 and 0 to this counter field. Please let me know is there any difference between data type
    NUMBER (DEC) and INTEGER (INT4).
    Please suggest.
    Thanks & Regards,
    Pavan kumar

    Hi Pavan,
    The basic difference between Number(DEC) and INT4 is its internal storage in system.
    For Number (DEC) - Value internally stored as packed number with 3 decimal places whereas INT 4 as 4 byte integer without decimal places.
    For counter KF, you can go for INT 4.
    Hope this helps.
    Thanks

  • How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit between both.

    How can I exchange my pc created documents on Excel, Word, and PowerPoint with my mac and my Pages, Numbers and Keynote created content with my pc?  I need to create and edit and exchange between both types of operating systems.

    Your Windows system will not open any Pages, Numbers or Keynote documents. No applications exist for Windows that can open those formats. You will need to export your documents in Word, Excel and PowerPoint formats, respectively, before you'll be able to view and edit the documents on your Windows system. The iWork documents can natively open Word, Excel and PP documents, though there are limitations on what can be imported (for instance, Numbers does not support all possible Excel functions). Consult the documentation for the relevant iWork application for details on importing and exporting.
    If you are asking how to get the documents from one system to the other, then there are several ways to do that, including file sharing, using an external drive (hard drive, USB flash drive), or emailing the documents to yourself. Which would be best for your situation I can't say without more details about your usage.
    Regarsd.

  • Comparison between cFP and cDAQ

    Hi,
    I'm looking for (as much details as possible) a comparisons between compact Fieldpoint and compact DAQ hardware.  I'm trying to decide which hardware platforms to use.
    TIA

    Compact Fieldpoint is for installed, industrial type applications.  It has a realtime operating system.  The controller runs code to read inputs and operate outputs.  The application can be distributed on an ethernet network.  There are different modules available for different types of inputs and ouputs.
    Compact DAQ also has numerous input and output modules.  It is more intended for portable applications.  It connects to your PC through a USB port.  So the code would need to run on the PC

  • Difference between char and varchar, also the difference between varchar2

    Hi,
    Can anyone explain me the difference between char and varchar, and also the difference between varchar and varchar2...

    Varchar2 is variable width character data type, so if you define column with width 20 and insert only one character to tis column only, one character will be stored in database. Char is not variable width so when you define column with width 20 and insert one character to this column it will be right padded with 19 spaces to desired length, so you will store 20 characters in the dattabase (follow the example 1). Varchar data type from Oracle 9i is automaticlly promoted to varchar2 (follow example 2)
    Example 1:
    SQL> create table tchar(text1 char(10), text2 varchar2(10))
    2 /
    Table created.
    SQL> insert into tchar values('krystian','krystian')
    2 /
    1 row created.
    SQL> select text1, length(text1), text2, length(text2)
    2 from tchar
    3 /
    TEXT1 LENGTH(TEXT1) TEXT2 LENGTH(TEXT2)
    krystian 10 krystian 8
    Example 2:
    create table tvarchar(text varchar(10))
    SQL> select table_name,column_name,data_type
    2 from user_tab_columns
    3 where table_name = 'TVARCHAR'
    4 /
    TABLE_NAME COLUMN_NAME DATA_TYPE
    TVARCHAR TEXT VARCHAR2
    Best Regards
    Krystian Zieja / mob

  • Difference between CHAR and VARCHAR2 datatype

    Difference between CHAR and VARCHAR2 datatype
    CHAR datatype
    If you have an employee name column with size 10; ename CHAR(10) and If a column value 'JOHN' is inserted, 6 empty spaces will be inserted to the right of the value. If this was a VARCHAR column; ename VARCHAR2(10). How would it handle the column value 'JOHN' ?

    The CHAR datatype stores fixed-length character strings, and Oracle compares CHAR values using blank-padded comparison semantics.
    Where as the VARCHAR2 datatype stores variable-length character strings, and Oracle compares VARCHAR2 values using nonpadded comparison semantics.
    This is important when comparing or joining on the columns having these datatypes;
    SQL*Plus: Release 10.2.0.1.0 - Production on Pzt Au 6 09:16:45 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn hr/hr
    Connected.
    SQL> set serveroutput on
    SQL> DECLARE
    2 last_name1 VARCHAR2(10) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is NOT equal to -TONGUC -
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 last_name1 CHAR(6) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is equal to -TONGUC -
    PL/SQL procedure successfully completed.
    Also you may want to read related asktom thread - "Char Vs Varchar" http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1542606219593
    and http://tahitiviews.blogspot.com/2007/05/less-is-more-more-or-less.html
    Best regards.

  • [AS-CS5] Comparison between text style range and character style

    Hi,
    It's been a while since I'm not coming on this forum ...
    I'm looking to make a comparison between a "text style range" and a character style.
    I have no problems, except for the comparison of "fonts".
    myCurrentText = text for char…
    theStyle = character style id…
    I try:
           if (applied font of myCurrentText ≠ applied font of theStyle) then set theCharDifference to 1 
    The selected text give me:
           font "Minion Pro        Italic" of application "Adobe InDesign CS5.5"
    and the character style:
           "Minion Pro"
    I try "set theTextFont to font of applied font of myCurrentText" -> Error
    This is my script (it's too long to post here) <http://db.tt/BLoGPiN>.
    Loot at the "on CheckCharacterDifference(myCurrentText, theStyle)"
    TIA.
    Oli.

    I've written this, but I do not know if it covers all cases ...
    Someone?
    Thanks.
    Oli.
    set theText to item 1 of selection
    set theStyleChar to properties of character style 2
    -- analysis of the properties of the text
    set myTextFontApplied to applied font of theText
    set myTextFontFamily to font family of applied font of theText
    set myTextFontStyle to font style of theText
    -- analysis of the character style
    set myStyleCharFontStyle to applied font of theStyleChar
    if myStyleCharFontStyle = "" then
         set myStyleCharFontStyle to font style of theStyleChar
         if myStyleCharFontStyle ≠ myTextFontStyle then set theDifference to true
    else
         if myStyleCharFontStyle ≠ myTextFontFamily then set theDifference to true
    end if
    Message was edited by: OlivierBerquin

  • Comparison between Oracle Contracts and Oracle Procurement Contracts?

    Hi All,
    I need some document which give the Comparison between Oracle Contracts and Oracle Procurement Contracts?
    And which of them are suitable for what type of contracts?
    Thanks
    Syed

    Hi,
    Any kind of help plz.
    Regards,
    Subhra

  • Difference between nvarchar2( 10) and varchar2( 10 char)

    Hi ,
    I had to enhance my application's DB to support unicode data entries(Multilingual data entries) and retrieval. I want to know the basic difference between the following data type decalrations:
    nvarchar2( 10) and varchar2( 10 char)
    Can any one suggest me which would be a optimum choice?
    regards,
    Siddarth

    Yes, you are almost correct.
    Can you read Japanese Character ? (There is no need to understand Japanese words meanings).
    Are you ready? Let's go!
    SQL> create table tab_size(col varchar(3));
    Table created.
    SQL> insert into tab_size values ('abc');
    1 row created.
    SQL> insert into tab_size values ('abcd');
    insert into tab_size values ('abcd')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values('アイウ'); /* This is  3 characters (3byte) */
    1 row created.
    SQL> insert into tab_size values('アイウエ'); /* This is  4 characters (4byte) */
    insert into tab_size values('アイウエ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values ('あ'); /* This is 1 character (2bytes) */
    1 row created.
    SQL> insert into tab_size values ('あい'); /* This is 2 characters (4bytes) */
    insert into tab_size values ('あい')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_size values ('aあ'); /* This is 2 characters (3bytes) */
    1 row created.
    SQL> insert into tab_size values ('abあ'); /* This is 3 characters (4bytes) */
    insert into tab_size values ('abあ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_SIZE"."COL" (actual: 4, maximum: 3)
    SQL> drop table tab_size;
    Table dropped.
    SQL> create table tab_char (col varchar2(3 char));
    Table created.
    SQL> insert into tab_char values ('abc');
    1 row created.
    SQL> insert into tab_char values ('abcd');
    insert into tab_char values ('abcd')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4,
    maximum: 3)
    SQL> insert into tab_char values ('あいう');  /* This is 3 characters (6bytes) */
    1 row created.
    SQL> insert into tab_char values ('あいうえ'); /* This is 4 characters (8bytes) */
    insert into tab_char values ('あいうえ')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4, maximum: 3)
    SQL> insert into tab_char values ('aあい'); /* This is 3 characters (5bytes) */
    1 row created.
    SQL> insert into tab_char values ('abあい'); /* This is 4 characters (6bytes) */
    insert into tab_char values ('abあい')
    ERROR at line 1:
    ORA-12899: value too large for column "USHI"."TAB_CHAR"."COL" (actual: 4, maximum: 3)谢谢。
    ありがとう。
    Thank you for reading.

  • Relationship between material type and industry sector

    Hi experts
    when using t-code mm01,there are two fields material type and industry setor in screen.Is there any relationship between material type and industry sector? I want to know if user be able to see the material type related to particular industry sector?
    thanks in advance!

    Hello
    There is no direct relationship between the material type and the industry sector.
    The industry sector is used only for field sttus maintenance (fields in display/optional/requierd entry) in transactions.
    We will assign seperate field reference groups to industry sectors and deopending on how we configure the field references, the fields will appear for the materials created for that industry sector.
    regards

  • There is a mismatch between order type and GL accountu201D.

    Hello
    Can any one help me to know why I am getting this error message.
    Here  I am giving the steps carried out.
    Step1. Using transaction code: FB60 I have posted a vendor invoice to a Machinery account GL account against a internal order.
    Step2. A down payment using transaction code FBA7. using a special indicator M to a bank account.
    Step3. When I am trying to clear the open item  (by selecting above both documents) for the vendor using transaction F-44 system is giving an error message u201CThere is a mismatch between order type and GL accountu201D. System is prompting to correct the down payment entry, where I dint use any Cost centre, internal order.
    Checked the Internal order profile, AUC settlement profile etc and no able to find an error message.
    Can any one explain me why this error is coming and what need to be check in order to rectify it.
    Regards
    RS.

    Hi It looks that the field status of the Order Type and GL Account field status is being mistmatching with each other. You can check the field status group given on GL Account and the fields status in Order Type.

  • What is the difference between Condition Type PB00 and PBXX

    Hallow all,
    Can anybody please explain, What is the Difference between Condition type PB00 and PBXX in Materials Management Pricing?
    And also please explain control or Application of both on Price determination ??
    Thanks in Advance !!!!!

    Hi,
    PB00 condition type is used for automatic pricing in PO
    PBXX condition type is used for manual pricing in PO
    In Pricing  access sequence  play a vital role . If you need pricing automatic in the PO, you have use of Access Sequences and Schema Group of Vendor.You can see the difference in both standard condition type PB00 and PBXX, where as PB00 is assigned to Access sequence(0002)but in case of PBXX no access sequense assigned.
    Regards,
    Biju K

  • Difference between line type and internal table?

    Hi..
    I wanted to know, what is the difference between Line type and Internal Table?

    Hi,
        Before the 4.7 release in SAP if we want to define an internal table we have to write the defination using the occurs statement and we need to define all the fields using INCLUDE STRUCTURE or indidually all the fields ine by one.
    From 4.7 release of R/3 SAP introduced the Line type concept and it's part of the ABAP OOPS concept. for internal table defination we don't need to use the occur statements. Instead INCLUDE structure  we need to create a Line type for that structure in Se11 and then we can define the internal table like :
    DATA : ITAB TYPE TABLE OF <LINE_TYPE>.
    Only thing is this table will be  a table without header. So for internal table processing we need to define a work area structure of type line of line type  . EX:
    DATA: WA_ITAB TYPE LINE OF <LINE_TYPE>.
    Hope this helps.
    Thanks,
    Greetson

  • Functional and technical comparisons between JDE version A 7.3 and A 9.3

    Hi,
    We need to convert the modules already written/designed in JDE v A 7.3 to JDE v 9.3.
    So I need to discuss with you people the functional/technical comparisons between these two versions.
    I have gone through these links to know something:
    http://www.teamcain.com/media-center/blog/oracle%E2%80%99s-jd-edwards-enterpriseone-91-and-jd-edwards-world-a93-%E2%80%93-exciting-news-ora-0
    http://www.oracle.com/us/products/applications/jd-edwards-world/jde-world-a9-3-1596334.html
    Kindly advise on it.
    Thanks,

    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    1. Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    2. Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    3. VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    4. CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    5. VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

Maybe you are looking for

  • How can I remove iCloud from my iTouch

    How can I revert to synching my iTouch ONLY through my iTunes account (on my MacBook Pro)? The synching of podcasts does not work (and/or is VERY slow) and is too confusing with iCloud (oh why did I ever bother with that?!) and keeps repeating old ep

  • New hard drive won't boot!

    I have an iBook, and the hard drive recently broke. First I installed os x on my external firewire hard drive, but the iBook wouldn't boot off of it (it's a maxtor onetouch drive). I got another hard drive, and using the installer (for panther), I fo

  • Metronome click recorded onto audio track , can not separate during playbac

    I set the metronome for "click during recording only" and for some reason the metronome clicks on this audio track during playback as well. I am recording an audio track from a Kurzweil 2500sx keyboard. Please comment ? David

  • Calcutaing Days between to Date Attributes

    I have created the formula variables and the Calculated Key Figure for my two date attributes per the How to Calculate with Attributes guide. The calculation for the days between the dates is correct when the two dates are within the same month. The

  • How do I reorganise individual colums on Pages?

    I am using Numbers 09 version 2.3 (554) The spending report I created does not sort by colum. I can sort one but it always messes up the other ones. Reorganize selected colums does not work. Does it got something to do with the first line beeing a me