Director converting symbol's case from lower to upper

put symbol("bd") -- BD
any thoughts as to why this would happen?
it only happens every now and then, even though I am running the same .dir file;
furthermore it is not converting every lowercase string to uppercase;

well, this is simply an illustrative example of what is occurring;
what is actually occurring is:
my_prop_A = my_list_A.getPropAt( i )
my_value  = my_list_B[ my_prop_A ] --- error occurrs here
my_list_A is created at runtime from an external text file with ONLY lowercase letters;
my_list_A looks like: [#a : "something" , #aa : "something" , #ab : "something" , ... , #bd : "something" , ... ]
at this point I obviousely wondered if there was in fact an #BD within my_list_A ... maybe some type of anomoly conversion; however, there is nothing;
so if I:
put symbol("aa") -- #aa
put symbol("bd") -- #BD
once this happens it throws an error because there is no my_list_B[ #BD ] ( though there is a #bd );
in order to fix it I do all kinds of stuff, and there is no consistency to achieving the solution; on any given day this might work:
    --    close the 3dpi
    --    delete w3d and text files which have data that is used to build my_list_A
    --    recompile scripts
    --    save and compact
    --    close director
    --    restart my computer
    --    open director
    --    re-import w3d and text files which have data that is used to build my_list_A
but then on any other day that same set of steps might not work; some times I go through this same process 4 or five times, and then all of the sudden it works;
etc. with other solution approaches;

Similar Messages

  • Function Module for Translation of text from Lower to Upper Case

    Hi All,
    Can any one give me function module for translation of text from lower to upper case.
    If we use Translate statement for the program in the Extended Syntax check it is giving error.
    Thanks in advance.
    Regards,
    srinivas

    Hi Srinivas,
    You can use any of the Function Modules below.
    AIPC_CONVERT_TO_UPPERCASE
    2054_TRANSLATE_2_UPPERCASE
    HR_99S_CONV_UPPER_CASE
    Please reward if useful.
    regards,
    Raj

  • HT6162 Way to go Apple - Now the Caps Lock button in iOS 7.1 is even more confusing! Why not finally change the keyboard from lower to upper as needed?

    Way to go Apple - Now the Caps Lock button in iOS 7.1 is even more confusing! Why not finally change the keyboard from lower to upper as needed?
    Or, allow us to change the look of the keyboard as we would like? How simple would that be?
    Thank you!

    You can tell Apple directly at the link below.
    http://www.apple.com/feedback/ipad.html

  • How to convert a string from upper case to lower case in FOX formula

    Hi Experts,
    How to convert a string from upper case to lower case in FOX formula?
    Thanks,
    Cheers!!!
    PANKAJ

    The last result.append( c ) should be:
    result.append( Character.toLowerCase(c) );

  • How to convert a string from lower case to upper case withour using transla

    Hi all,
    how to convert a string from lower case to upper case withour using translate,
    Thanks in Advance,
    Reddy

    Refer to this related thread
    Re: hi guys this very urgent please help

  • I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    Several protocols may be used.
    Here I describe two of them.
    (1) the one which I use : install and use the "Convert to Lowercase" service available in the free WordService
    (2) copy your text, paste in TextEdit and enter the Edit menu.
    I guess that you will recognize the items in your English menu.
    I apologize but I don't know the English items.
    Yvan KOENIG (VALLAURIS, France) jeudi 16 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How to translate the key words in ABAp program from lower case to upper cas

    How to translate the key words in ABAp program from lower case to upper case?

    Hi Kittu,
    You need to set the Pretty Printer settings to achieve key words in ABAP program from lower case to upper case.
    Utilities -> Settings -> Pretty Printer (tab) -> Select third radio button.
    Thats all.
    <b>Reward points if this helps.
    Manish</b>

  • Capitalization doesn't work as described. One can start with lower case and change to upper, but changing from upper case to any of the other options doesn't work. Is there a way around this or is this just a glitch that needs fixing?

    In Pages capitalization doesn't work as described. One can start with lower case and change to upper, but changing from upper case to any of the other options doesn't work. Is there a way around this or is this just a glitch that needs fixing?

    I think it does work as described, but the description is not very complete. Capitalization does not change any of the characters that you type; what it does is allow some of the lower case characters to display as capitals. If you copy the result and paste it as plain text, you'll see that the lower case characters are still there. It doesn't actually say anywhere that it can make capitals display as lower case, and it can't.
    The obvious way around this is to actually type what you want.
    The more powerful way is to install WordService from Devon Technologies which adds the functionality of Pages' capitalization menu as well a lot of other ones. WordService actually changes the character to the one displayed, and it works in most of the applications on your Mac.

  • RE: Converting to mixed case.

    >
    I recall seeing a method that would convert all upper or all lower case to
    mixed case. Does this sound familiar to anyone?
    Hello Everyone
    I've developed a single Domain Class to support this behavior. With this
    Domain Class you can choice to convert to mixed case each word of the
    text or only the initial word and the word after a period by setting the
    value of the ToUpdateEachWord attribute (boolean).
    Here is an example of this domain class.
    I hope this help you.
    Victor Navarro
    [email protected]

    we have a database which I want to use as the source for generating a Java API, and I need/want the Java classes and attributes to be (automatically) created with mixed case names. At the same time we have existing applications and scripts that access the database, and these assume case insensitive table and column names.Not sure if I got you right, but how about creating views as e.g in
    SQL> create or replace view "Dept"
      2  as
      3     select deptno "Deptno", dname "Dname", loc "Loc" from dept
      4  /
    View created.This will allow you to continue to query in case insensitive manner as well as case sensitive:
    SQL>
    SQL> select * from dept
      2  /
             DEPTNO DNAME          LOC
                 10 ACCOUNTING     NEW YORK
                 20 RESEARCH       DALLAS
                 30 SALES          CHICAGO
                 40 OPERATIONS     BOSTON
    SQL> select * from "Dept"
      2  /
             Deptno Dname          Loc
                 10 ACCOUNTING     NEW YORK
                 20 RESEARCH       DALLAS
                 30 SALES          CHICAGO
                 40 OPERATIONS     BOSTON
    SQL>As I understand, you could use the views (instead of the tables) to automatically generate mixed case classes while continuing to have case insensitve queries?!

  • Function Module to convert date to week from Sunday to Saturday

    Hi,
    In BW the convertion date to week always give week from Monday(1) to Sunday(7)
    I'm looking for a function module to convert date to week from Sunday(1) to Saturday(7)
    Thanks
    Sebastien

    Hi,
    I think this SAP standardized. Maybe you need to create custom FM.
    You can copy SAP FM DATE_GET_WEEK. in the FORM FIRSTWEEK, I see below case,
    CASE start_weekday.
        WHEN if_calendar_definition=>c_monday.
          start_weekday_number = 1.
        WHEN if_calendar_definition=>c_tuesday.
          start_weekday_number = 2.
        WHEN if_calendar_definition=>c_wednesday.
          start_weekday_number = 3.
        WHEN if_calendar_definition=>c_thursday.
          start_weekday_number = 4.
        WHEN if_calendar_definition=>c_friday.
          start_weekday_number = 5.
        WHEN if_calendar_definition=>c_saturday.
          start_weekday_number = 6.
        WHEN if_calendar_definition=>c_sunday.
          start_weekday_number = 7.
      ENDCASE.
    Maybe you can play something here.

  • How to write Lower case value to the upper case value in SMARTFORMS

    How to change the from lower case to Upper case in SMARTFORMS
    Ex. india to INDIA

    hi,
    chk this.
    DATA: T(10) VALUE 'AbCdEfGhIj',
    STRING LIKE T,
    RULE(20) VALUE 'AxbXCydYEzfZ'.
    STRING = T.
    WRITE STRING.
    TRANSLATE STRING TO UPPER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING TO LOWER CASE.
    WRITE / STRING.
    STRING = T.
    TRANSLATE STRING USING RULE.
    WRITE / STRING.
    Output:
    AbCdEfGhIj
    ABCDEFGHIJ
    abcdefghij
    xXyYzZGhIj
    reward points if useful...
    -Umesh

  • ICWC case from 4.0 to 5.0, how to find an existing case

    I don't see how to find an existing case in CRM 5.0.  I'm trying to link a service ticket to an existing case
    I know 5.0 required some additional configuration to assign Case profile in CRMC_IC_MAIN and I created the case profile in config ICWC > business transactions > case management > define profile for case management.  I assigned our 4.0 case type to the case profile.
    In the ICWC when I select Cases from the Nav Bar I see three windows
    - Attributes  in upper left
    - Note in upper right
    - linked objects & log lower section
    but none of the hyper links take me to where I can look up past cases.

    SAP help says the search is done in the Inbox which I think is different than 4.0 but I think I figured out the configuration.
    http://help.sap.com/saphelp_crm50/helpdata/en/0b/77c6d05eec445480a919cdcfa6bb30/frameset.htm
    Case search
    You can search for cases in the agent inbox using different selection criteria. If you open a case in the agent inbox, the view set Cases is displayed automatically.
    Alternatively, you can use the separate case search if you have set this up in Customizing.
    Use the text search function in the Knowledge Search to search for case notes, documents and business objects as well as to search for cases based on the long text description of business objects. You can e-mail cases found using the Knowledge Search to internal and external parties. Case header information and attachments are sent.

  • Lower and upper case repair

    I have a macbook air. It felt down from my hand on its corner and has damaged. The up-left corner is chamfered like 0.5 cm on both lower and upper cases. I would like to know what can I do to repair its body since there is not any software problem with it. Does apple fix it and if yes, how much does it cost.
    Thank you.

    Welcome to the Apple discussions.
    Yes, Apple can repair. You'll have to take it to the Apple store to find out the cost, and you should probably be sitting down when they tell you the cost.

  • Help with Converting Already Imported Songs to Lower Quality

    Hello,
    I just bought a new 2GB nano, and before I even thought about it, I just dragged and dropped my songs over to it. However, I had forgotten awhile back that I had upped the quality of my library to import at 320 kpbs. This was obvious after the fact because my estimated 500 song nano is saying its full at 294 songs. How do I convert my library to a lower AAC kpbs? I tried changing the import settings in the advanced menu, but the conversion process stops when it hits a song that I purchased from the iTunes Music Store. Any ideas?
    Thanks!

    Adam, did you change the import settings in ITunes Prefs > Advanced? If you left the settings at 320Kbps, then you've accomplished nothing. If you did change this setting then highlight Library, in the Source list, pull down Edit > View Options and click Bit Rate. Click the OK button then sort your Library by Bit Rate to find the new songs.

  • Upgrading MRS Tools and Services from lower releases to 2007

    Hi,
    We have upgraded our CRM Mobile Repository Server to CRM 2007 (see
    details below) and we are trying to upgrade the MRS Tools and Services
    from lower releases to 2007 SP02 as per "SAP CRM Mobile 2007 SP02 -
    Component Upgrade Guide. However, the setup.exe is not upgrading the
    Mobile Repository tools as mentioned in the guide (page 34), but it is
    giving option to install Mobile client. As per the guide, the setup.exe
    program should perform the operations automatically, but it not doing
    the same.
    Any idea why it is trying to install Mobile Client instead of MRS Tools & Services?
    Source:
    CRM 4.0 SP08
    Windows 2000
    SQL Server 2000
    Target:
    CRM 2007 SP02
    Windows 2000
    SQL Server 2000
    Regards
    Chandu
    P.S : I have also opened OSS message, but any thoughts in this regard would be appreciated.

    Hello Chandu
    There are 2 scenarios post MAR upgrdae
    1. When an MDW is installed on the same host that contains the MAR,
    2. When an MDW is not installed on the same host that contains the MAR,
    In both the scenarios, you would run setup.exe present in \Mobile_Client_Upgrade\UpgradePurposeOnly
    folder.
    If the machine is of scenario 1, setup.exe would upgrade MDW along with MRS tools and services. So it will give options to install Mobile client as well.
    If the machine is of scenario 2, It would setup.exe would upgrade MRS tools and services only.
    In your case, I am sure you have 4.0 MDW machine which you are upgrading to CRM 2007 SP 02. So It comes under scenario 1 which i have explained above. There is nothing worng happening with setup.exe
    Best Regards
    Shankar

Maybe you are looking for

  • J1Ih error for return sales

    Dear All, I have done a return sales and returns delivery. Out of 10 items 5 items got returned. While doing J1IH (adjustment entry) the BED value is automatically getting captured by system for full 10 items. Can anyone pls solve this error? if iam

  • X79A GD65 (8D) Sub Zero cooling issue getting 91c ??

    Hi All Been on phase for years just a fyi Issue is on this board using phase shows 91c and locks the settings to stock speeds?? on air or water no issues I can get 5.0 seems as soon as I go on my SS which goes -50c I cant OC as the cpu temps shoot ri

  • I want to downgrade. What versions are available. Or else I will switch to a different browser.

    My university IT staff and software programmers can not keep up with new Firefox versions. The last one that is compatible is 7.0. I can not find a link for a downgrade to that version. The latest versions do not work with any of their PeopleSoft sof

  • Ipod is not showing up on itunes.. HELP!!

    I recently downloaded the newest version of itunes because a pop up came up and indicated I should. So I did, but now when I plug in my ipod to the USB port, the ipod starts charging, but now the ipod icon sign is not showing up under "source" and I

  • Oracle database 10g connectivity problem with Report Builder

    Hi, I need to amend a .rdf report and am using the dev10g. I can't connect the test database from report builder. It is getting the error like : "ORA-12154 : TNS: could not resolve service name". I can connect the database from sql*plus, Toad etc. Al