BW Objects Translation

Hi All,
I need your suggestions regarding BW object translation.
Suppose we are using normal BW objects translation process, after completing the translation process once for the whole system, if a new object has been created. For this new object translated text will not be available. So we need to maintain it again manually.
Do we have any other approach available in BW to avoid the manual maintenance for object translation (some setting which can allow to maintain the system in two different languages like UNICODE).
It would be great if you can share approaches you might have used for BW system translation.
Regards,
Pravender
Edited by: Pravender on Apr 16, 2010 7:03 PM

Hi
Check the below
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/4075f740-5aa4-2c10-53bc-b1159122e475
Language Translation in BI 7.0
Thanks
Kalyan

Similar Messages

  • Bex objects translated text not displayed for all

    Hi,
    I have an issue in Bex elements language translation in Bex report output,
    Translation of Bex elements to PT language has done successfully and few of the Bex elements are getting displayed in PT language, but the problem i am facing is with the Chars / Key figures objects used in Bex (Like: 0GL_ACCOUNT / 0AMOUNT / 0MATL_GROUP...) which are used directly in report, for these objects text is still getting displayed in EN.
    When checked in backend tables i can able to see texts for objects with both languages maintained, and when i check the info objects short description from RSD1 by logging with PT language; i can able to see description in PT.
    But, in Bex report i am not getting description in PT for these.
    Please let me know whether i am missing any setting in between Bex and Backend objects.
    Your helpful answers are highly appreciated.
    Thanks,
    Praveen.

    Further to my above query,
    We are working on SAP-BW system on 7.3 with SP05.

  • ESS and MSS objects translation and localization

    Hello,
    we are implementing ESS on our ERP system and I have problem with translation of standard objects in ESS (pages, worksets, iviews). If I copy standard objects into new map, change default language on user to english, I can edit and rename objects and it looks fine. But when I change language to Slovenian (localization), I don't see anymore previously edited names but it gives default translation. I have even tried to translate objects in Slovenian language but the filed to chage name is closed and can't be edited.
    Does anybody have the same problem and maybe solution for this?
    Thank you,
    David

    Hi,
    what do you mean with ess?
    are you working on netweaver developer studio with web dynpro or in abap workbench?
    regards.
    roberti

  • Object translation problems

    i'm trying to write a behavior that uses a mouse_drag to move an object on the screen, but can't seem to get the movement to work properly. the object is selected correctly it just seems to move sporatically when i drag the mouse. i can't use the mouseTranslate behavior because ultimately i'm going to add VR glove support and don't want to have to write a new behavior for that. here's the code of the object move behavior. any suggestions?
    public void processStimulus(Enumeration criteria){
    WakeupCriterion wakeup;
    AWTEvent[] event;
    int eventid;
    int buttonmask = MouseEvent.BUTTON3_DOWN_MASK;
    //process wakeup criteria
    while(criteria.hasMoreElements()){
    wakeup = (WakeupCriterion) criteria.nextElement();
    if(wakeup instanceof WakeupOnAWTEvent);{
    event = ((WakeupOnAWTEvent)wakeup).getAWTEvent();
    for(int i=0; i<event.length; i++){
    eventid = event.getID();
    if(eventid == MouseEvent.MOUSE_DRAGGED){
    if((((MouseEvent)event[i]).getModifiersEx() & buttonmask) == buttonmask){
    int x = ((MouseEvent)event[i]).getX();
    int y = ((MouseEvent)event[i]).getY();
    pickCanvas.setShapeLocation(x,y);
    Point3d eyePos = pickCanvas.getStartPosition();
    pickResult = pickCanvas.pickClosest();
    if(pickResult !=null){
    tg = (TransformGroup)pickResult.getNode(PickResult.TRANSFORM_GROUP);
    Sol = (sol) pickResult.getObject();
    int dx = x - Sol.getX();
    int dy = y - Sol.getY();
    Sol.setX(x);
    tg.getTransform(currXform);
    translation.x = dx*.2;
    currXform.mul(transformX, currXform);
    currXform.setTranslation(translation);
    tg.setTransform(currXform);

    multiply th dx and dy values by 100!

  • Translation Manager Business Object XIr3, problem

    Hi,
    I have a problem with the Translation Manager Business Object XIr3.
    If I understood well, it permits multilanguage users to see for example reports with their own language, setting up the preferencies, logging in InfoView.
    Now I have installed it and I choosed two languages: English(UK) and Russian.
    The problem is explained better in the following table:
    user(PVL)        |Source Language         |Substitution Language        |Reports Viewed
    English              English                     English               English
    English             English                                    Russian               Russian
    English             Russian                     English             English (sometimes I can see only Universe Objects translated)
    English               Russian               Russian             Russian
    Russian              Russian               Russian             Russian
    Russian             English                                   Russian               Russian
    Russian              Russian                English            Russian     (sometimes I can see only Universe Objects translated)
    Russian              English                     English            Russian (sometimes I can see only Universe Objects translated)
    I must explain that:
    -user(PVL) is the Preferred Viewing Language selected in the preferencies
    -source language and substitution language are the languages selected in the Translation manager interface
    -Reports viewed is the way I can read reports, after refreshing query.
    Now I ask you if, according to you, Translation manager may has this kind of problem, and, in this case, if you know how to resolve it.
    Please answer me only here in this post.
    Reguards

    Make sure to change your regional settings in the desktop control panel to tell BOE what language you would like to interact with

  • Special characters in XML built using the DOM object

    I am using the DOM object to build xml but I am having problems with special characters. I have a Element object that I create attributes in. Most special characters like the &, ", or ' are translated for me (amp; quot;, acute; put a & in front of those, if I do it here the browser will translate them into the logical character) but I am having a problem with the � character. The DOM object does not translate this. If I do it my self to(eacute; same here add a & in front) before adding the string to the attribute then the DOM object translates it to (amp;eacute; add a & in front of the amp; not in front of the eacute;). As you can see the DOM object translates the & instead of recognizing that it is a HTML character. Can anyone give me a hand?

    I am building this XML in a servlet so ,right, DOM does process XML (even though a valid HTML file can be loaded into a DOM object) but if you build XML using DOM then write the XML out using PrintWriter and Transformer objects this will cause the XML to print out in your browser. If you view source on this XML you will see that the DOM object has translated all special characters to there &xxxx; equivalent. For a example: when the string (I know "cool" java) gets loaded into a attribute using the DOM object then wrote back out it looks like (I know &xxx;cool&xxx; java) if you view the source in your browser. This is what it should do, but the DOM object is not change the � to the "&xxxxx;". This servlet is acting as a gateway between a Java API and a windows asp. The asp will call the servlet expecting to get XML back and load it directly into a DOM object. When the windows DOM object gets the xml that I am returning in this servlet is throws a exception "invalid character" because the � was not translated to &xxxx; like the other characters were. According to the book HTML 4 in 24 hours (and other references) the eacute; or #233; are how you say "�" in HTML or XML. How do you say it?

  • Portal Content Translation - Transport

    Hello
    We created some worklist in Portal Content Translation to translate the texts in roles, worksets and iViews from English (source) to German (end user).
    Now, we need to transport these worklists to the Test Portal and we tried to follow the steps as described in the help below:
    [Performing Language Transports|http://help.sap.com/saphelp_nw70/helpdata/EN/f8/a4c0b28ab7324d835176fdbbb28c3e/frameset.htm]
    It did not work:
    1) We created a Package with "text_only" property, filled it with the worklists and selected the language to be transported in "Language Transport" menu, but the deployment failed.
    2) We created a Package without "text_only" property, filled it with the worklists and did not select any language to be transported. Once imported, the worklists were in the Test Portal, but the translation to german was not in them.
    3) We created a Package similar to the one in step 2, but selected the language to be transported in the "Language Transport" menu. The result was the same we had in step 2.
    So, what must we do to transport not only the worklists, but also the translations created in the Development Portal?
    Thanks in advance, regards!
    Jon

    Hi,
    I'm not sure if I did understand you correctly, but it seems that you want to transport the translation worklist? To transport the translated content, you'll have to do
    1. create a translation worklist and assign the PCD objects (iviews, pages, roles)
    2. translate the content
    3. publish the translated content
    4. create a transport package containing the PCD objects translated and transport this package (eg: text_only).
    br,
    Tobias

  • Object Serialization Question.

    Hello, I'm working on a MUD client and I have a DataHolder class to store settings. I'm having problems getting the serialization process to work properly, could someone please give me an example of how to serialize this class and then restore it again? I would like to save the class as "prefs.ser" Here is an example class to use:
    import java.awt.*;
    import java.net.*;
    import java.io.*;
    public class DataHolder
         public Color foreground = Color.black;
         public Color background = Color.yellow;
    // i dont want to save the socket info since it will change many times during actual operation
    // also i know you have to catch the exception from the socket creation : )
         public transient Socket socket = new Socket("lordsoftherealm.org", 1234);
         public DataHolder()
         public setColors(Color foreground, Color background)
              // set background and foreground colors
              // the actual class include methods to retrieve colors, sockets, and other relevent data
              this.foreground = foreground;
              this.background = background;
         public Socket getSocket()
              return socket;
    }Thank you for your time in helping me,
    Joeyford1

    Try this,
    I am using this method to serializeand deserialize my objects ..
    import java.util.Date;
    import java.math.BigDecimal;
    import java.io.*;
    * This object compliments MyObjectTranslator and provides a method to translate
    * any object into a type the database engine can process.
    public class MyObjectTranslator {
    public static Object translate(Object ob) {
    if (ob == null ||
    ob instanceof NullObject ||
    ob instanceof String ||
    ob instanceof BigDecimal ||
    ob instanceof Date ||
    ob instanceof ByteLongObject ||
    ob instanceof Boolean) {
    return ob;
    else if (ob instanceof Serializable) {
    return serialize(ob);
    else {
    // System.out.println("Ob is: (" + ob.getClass() + ") " + ob);
    System.out.println("Unable to translate object. " +
    "It is not a primitive type or serializable.");
    * Serializes the Java object to a ByteLongObject.
    public static ByteLongObject serialize(Object ob) {
    try {
    ByteArrayOutputStream bout = new ByteArrayOutputStream();
    ObjectOutputStream ob_out = new ObjectOutputStream(bout);
    ob_out.writeObject(ob);
    ob_out.close();
    return new ByteLongObject(bout.toByteArray());
    catch (IOException e) {
    System.out.println("Serialization error: " + e.getMessage());
    * Deserializes a ByteLongObject to a Java object.
    public static Object deserialize(ByteLongObject blob) {
    if (blob == null) {
    return null;
    else {
    try {
    ByteArrayInputStream bin =
    new ByteArrayInputStream(blob.getByteArray());
    ObjectInputStream ob_in = new ObjectInputStream(bin);
    Object ob = ob_in.readObject();
    ob_in.close();
    return ob;
    catch (ClassNotFoundException e) {
    System.out.println("Class not found: " + e.getMessage());
    catch (IOException e) {
    System.out.println("De-serialization error: " + e.getMessage());
    so if you want it to translate it use it something like :
    private Object translateObjectType(Object ob) {
    return MyObjectTranslator.translate(ob);
    and when you wana retrive it use it like :
    Object ds = MyObjectTranslator .deserialize((ByteLongObject) ob);

  • Question on Worklist Translation

    Hello,
    I created a Translation Worklist, added some Portal Content Objects, translated them, and so on. Everything worked fine, the Objects were translated.
    After that I wanted to reset the changes. Therefore I deleted the Translation Worklist.
    But the PCOs are still translated... Is this a bug ore the desired behavior?
    Kind regards,
    dominik

    Hello Adrian,
    thanks for your reply. It's not so important for me to have a backup because it affected only a few PCO and was just for testing. But in future I won't delete the worklist any more.
    I just have one short question... You wrote:
    <i>or remove the translations.... replace with blanks etc.</i>
    Did you mean remove the translation by replacing them with blanks or is there an other way to remove it?
    kind regards,
    dominik

  • Problem with translations

    Hi,
    I'm dealing with translations at the moment using transaction se63.
    When it comes the time of looking at the result, two things happen mainly:
    - The translation doesn't work
    - Or it takes ages to show up
    Does anyone knows a way of activating the translations automatically by means of a report or whatever?
    Thanks and regards,
    Paula

    Hi,
           Go to se63 t-code menu - >Translation->ABaP objects -> translated objects.
    enter the R3TR in one text box , in the second box enter the object name ie if table is been translated then give as TABL, in the third text box give table name.
    click on edit .change the text .
    after that execute the report RS_LXE_RECORD_TORDER, enter the target language as en , then on the application toolbar click on the second push button ie create request cntrl + f1, after creating the request execute the report, the result is that the request which is created by you will have all the translation done by you
    regards,
    Santosh Thorat

  • Shared Public IP to two Servers - ASA 5510 8.3. NAT/PAT

    I have a situation where we have a single DMZ server currently statically forwarded to a single public IP.  TCP ports 80, 443, 8080, 8500, 53, and 21 are open to this server via an access list.
    However, we have added an additional server to the DMZ, and because our web developers did not communicate with me beforehand, we are forced to use the same DNS name (thus, the same piblic IP) for this server.  This server only needs traffic on TCP/8800 forwarded to it.
    I am using ASDM 6.4 for configuration of this, as I am required to take multiple screen shots of the procedure for our change control policy.
    My question lies in the reconfiguration of NAT/ PAT.  Since our current server has a single static NAT to a single public IP, it is simply natted for "any" port.  I understand that I can add the new server as an object, and only PAT it on TCP 8800, but will I then have to go back and reconfigure the first server multiple times for PAT, or will the ASA notice the specific PAT, and forward 8800 to the new server without affecting the existing "old" server?
    It appears ASDM will not allow me to put multiple ports into a single network object.  I am assuming I will need to add 6 separate object translations for the "old" server based on TCP port, and 1 object translation for the "new" server, correct?

    OK, so I beleive I've truncated this down to what you need in order to give me a hand.  Remember that I must configure this using ADSM for screenshot purposes.  There is currently a temporary static one-to-one NAT in place for NCAFTP01 until we resolve the outbound issue, but I realize this must be removed to properly test.  I'll explain the desired topology below the config.:
    : Saved
    ASA Version 8.3(1)
    hostname ASA-SVRRM-5510
    domain-name domain.corp
    names
    name 10.20.1.23 NCASK333
    name 10.20.1.40 Barracuda
    interface Ethernet0/0
    nameif Outside
    security-level 0
    ip address 1.1.1.3 255.255.255.248
    interface Ethernet0/1
    description DMZ
    nameif DMZ
    security-level 20
    ip address 172.16.10.1 255.255.255.0
    interface Ethernet0/2
    shutdown
    no nameif
    no security-level
    no ip address
    interface Ethernet0/3
    nameif Inside
    security-level 100
    ip address 10.20.1.249 255.255.0.0
    object network mail.domain.com
    host 10.20.1.40
    object network NCASK333
    host 10.20.1.23
    object network obj-10.20.1.218
    host 10.20.1.218
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object network NETWORK_OBJ_10.192.0.0_16
    subnet 10.192.0.0 255.255.0.0
    object network NETWORK_OBJ_10.20.0.0_16
    subnet 10.20.0.0 255.255.0.0
    object network Remote Site
    host 10.1.1.1
    object network NCAFTP01:80
    host 172.16.10.10
    object network 1.1.1.5
    host 1.1.1.5
    object network NCASK820
    host 10.20.1.61
    description Exchange Server/ KMS
    object service AS2
    service tcp source eq 8800 destination eq 8800
    object network NCAFTP01:21
    host 172.16.10.10
    object network NCAFTP01:443
    host 172.16.10.10
    object network NCAFTP01:53
    host 172.16.10.10
    object network NCAFTP01:53UDP
    host 172.16.10.10
    object network NCAFTP01:8080
    host 172.16.10.10
    object network NCAFTP01:8500
    host 172.16.10.10
    object network NCAFTP01:5080
    host 172.16.10.10
    object network NCADMZ02:8800
    host 172.16.10.11
    object network NCAFTP01
    host 172.16.10.10
    object-group service DM_INLINE_SERVICE_1
    service-object gre
    service-object tcp destination eq pptp
    object-group service DM_INLINE_TCP_1 tcp
    port-object eq www
    port-object eq https
    port-object eq imap4
    port-object eq pop3
    port-object eq smtp
    port-object eq domain
    object-group service DM_INLINE_SERVICE_2
    service-object icmp
    service-object icmp traceroute
    object-group service DM_INLINE_SERVICE_3
    service-object tcp destination eq 8080
    service-object tcp destination eq 8500
    service-object tcp destination eq domain
    service-object tcp destination eq ftp
    service-object tcp destination eq www
    service-object tcp destination eq https
    service-object udp destination eq domain
    service-object icmp
    service-object tcp destination eq 5080
    service-object object AS2
    object-group service DM_INLINE_TCP_2 tcp
    port-object eq www
    port-object eq https
    object-group service DM_INLINE_TCP_3 tcp
    port-object eq 8080
    port-object eq www
    port-object eq https
    port-object eq echo
    object-group network DM_INLINE_NETWORK_5
    network-object 172.16.10.0 255.255.255.0
    nat (Inside,any) source static any any destination static obj-10.192.0.0 obj-10.192.0.0
    nat (Inside,ATTOutside) source static NETWORK_OBJ_10.20.0.0_16 NETWORK_OBJ_10.20.0.0_16 destination static NETWORK_OBJ_10.192.0.0_16 NETWORK_OBJ_10.192.0.0_16
    nat (Inside,ATTOutside) source static DM_INLINE_NETWORK_1 DM_INLINE_NETWORK_1 destination static NETWORK_OBJ_10.192.0.0_16 NETWORK_OBJ_10.192.0.0_16
    object network mail.domain.com
    nat (Inside,ATTOutside) static 1.1.1.4
    object network NCASK333
    nat (Inside,ATTOutside) static 1.1.1.6
    object network obj-10.20.1.218
    nat (Inside,ATTOutside) static 1.1.1.2
    object network obj_any
    nat (Inside,ATTOutside) dynamic interface
    object network NCAFTP01:80
    nat (any,ATTOutside) static 1.1.1.5 service tcp www www
    object network NCAFTP01:21
    nat (any,ATTOutside) static 1.1.1.5 service tcp ftp ftp
    object network NCAFTP01:443
    nat (any,ATTOutside) static 1.1.1.5 service tcp https https
    object network NCAFTP01:53
    nat (any,ATTOutside) static 1.1.1.5 service tcp domain domain
    object network NCAFTP01:53UDP
    nat (any,ATTOutside) static 1.1.1.5 service udp domain domain
    object network NCAFTP01:8080
    nat (any,ATTOutside) static 1.1.1.5 service tcp 8080 8080
    object network NCAFTP01:8500
    nat (any,ATTOutside) static 1.1.1.5 service tcp 8500 8500
    object network NCAFTP01:5080
    nat (any,ATTOutside) static 1.1.1.5 service tcp 5080 5080
    object network NCADMZ02:8800
    nat (any,ATTOutside) static 1.1.1.5 service tcp 8800 8800
    object network NCAFTP01
    nat (any,ATTOutside) static 1.1.1.5
    nat (DMZ,ATTOutside) after-auto source dynamic obj_any interface
    timeout xlate 3:00:00
    class inspection_default
    inspect dns preset_dns_map
    inspect ftp
    inspect h323 h225
    inspect h323 ras
    inspect rsh
    inspect rtsp
    inspect esmtp
    inspect sqlnet
    inspect skinny
    inspect sunrpc
    inspect xdmcp
    inspect sip
    inspect netbios
    inspect tftp
    inspect ip-options
    inspect pptp
    class class-default
    : end
    Coming from the outside to public IP 1.1.1.5, we want ports 80, 443, 8080, 8500, 21, and 53 to translate to NCAFTP01/ 172.16.10.10.  We want traffic sent to 1.1.1.5 on "AS2" (tcp port 8800) to translate to NCADMZ02/172.16.10.11. 
    This part is functional, as you instructed above, I simply needed to create individual PAT statements. 
    My current issue lies in the outbound translation.  When we send a request out from NCAFTP01/ 172.16.10.10 on any port, we want it to translate to a public IP of 1.1.1.5.  When we send a request out from NCADMZ02/172.16.10.11, we also want it to translate to 1.1.1.5.  So in effect, we want it to NAT both devices outbound to the same public IP, but use PAT inbound.  These are the only two devices in our DMZ, so if I can simply translate all traffic from the DMZ network outbound to 1.1.1.5, I feel it would be the simplest solution.  My question is if we do this, when a request comes inbound from the outside, would the translation fall over to PAT?
    This comes about because the client on the outside requires us to use a specific IP to connect to thier EDI server on port 5080.

  • 9.0.2 - 9.0.3 repository upgrade

    I recently upgraded from OWB 9.0.2 to 9.0.3.0.1. After the upgrade, I tried to use the Repository Assistant to upgrade my old repository but got the following error message:
    "This repository cannot be upgraded to add more languages to support object translations. You must have a version 9.0.3.0.1 repository to upgrade."
    It seems like the upgrade handles the addition of languages to support object translations rather than from one OWB version to another. My questions:
    i) Is there any way to upgrade a 9.0.2 repository to 9.0.3 (I've already uninstalled 9.0.2...)
    ii) When I tried to workaround by creating a new repository owned by a new user, the packages WBPRTI,WBPRTIP,WBPRTIQ and WBPRTIU are still owned by the old owner. This prevents me from deploying as the new user. Should I change the owner of these packages on the Oracle server? Who should own these packages when there are several repositories owned by different users on a database?
    thanks,
    Ulf

    I had the same problem. After many frustrating hours, in my case it appeared to be some old QuickTime files on my PC that were causing the issue.
    Did the following:
    If ITunes 9.0.2 hangs while trying to download or constantly getting errors that QuickTime needs to be updated, try the following:
    1. Uninstall QuickTime via Control Panel (Add or Remove Programs)
    2. After this is complete go to the following website and remove all files accordingly:http://www.codecguide.com/quicktime_removal.htm.
    Details below:
    2a. Go to the folder c:\windows\system32 and delete the files QuickTime.qts and QuicktimeVR.qtx
    2b. Go to the folder c:\windows and delete the files QTFont.for and QTFont.qfn
    2c. Delete the folder c:\program files\quicktime
    3. While in c:\windows\system32, also remove any other QuickTime files (I had a QuickTimeMusicInstrument file from 2001) and make sure there is no QuickTime folder now
    4. If downloading new version of ITunes: Uninstall ITunes v8 or earlier.
    5. Download ITunes 9 + QuickTime. I was successfully able to install both at this point.

  • X11 won't display UTF-8 characters (using Kbabel)

    Hello everyone
    Boy, the discussion lists have changed! Forums are a good idea, though.
    I'm a volunteer open-source translator, and the most effective translation editor for us is Kbabel. (LocFactoryEditor [1] for OSX is very good, though. I use it continually, and BBEdit [2] for CVS/SVN management of translation files.)
    When I installed Kbabel, everything went OK, but when I tried to open a PO (Portable Object, translation file format, basically a text file) file, the translations in my language (Vietnamese) were just gibberish. None of the accented characters displayed correctly. Since my language is pretty much all accented characters, this was a critical problem. Characters entered had the same problem. No readable data in, no readable data out, no translation possible.
    I had set my X11 prefs to inherit my keyboard choice, and had chosen the right keyboard. I have Lucida Grande set as my default font, and it handles Vietnamese very well.
    This was months ago. I reported it as a bug against Kbabel, but with investigation, we found it was an X11 problem. I was told at the time (sorry, I can't remember the reference) that this was a known X11 bug, which Apple had not yet fixed. Judging by the continuing mess when I try to use Kbabel now, it hasn't been fixed.
    How do we track bugs reported to Apple, or continuing problems of this type? Do you think this is really the problem, or is there another way to solve it?
    Any help very much appreciated.
    from Clytie
    [1] http://www.triplespin.com/en/products/locfactoryeditor.html
    [2] http://www.barebones.com/index.shtml

    I would suggest you repeat your query in the unix forum, where the experts on such stuff are more likely found, and where there have been other threads about using accented chars in terminal, etc.
    http://discussions.apple.com/forum.jspa?forumID=735

  • Open ended data structure for retrieving SQL data

    I have a flex project that reads data from a database and
    sends it to my flex app to display in a chart. I need to do this in
    Actionscript since I have to dynamically create different charts
    based on the database definitions. Up til now, I have inserted the
    data for each series into a separate
    ArrayList(java)/ArrayCollection(flex) in this way:
    BindingUtils.bindProperty(lineSeries, "dataProvider", series,
    "pointList");
    lineSeries.xField="point1";
    lineSeries.yField="point2";
    The series variable is a custom Actionscript/Java object
    which contains an ArrayCollection called pointList. And the array
    is made up of custom DataObjects with two fields, point1 &
    point2.
    But in the new paradigm, I'd basically like to create a big
    array of arrays similar to a database table and then just point the
    xField to one column, and the yField to another column. Anyway, it
    seems like the problem is that my point1 and point2 in the current
    implementation are variable names, but with this new dynamic
    structure, I won't be able to create variables on the fly. So how
    do I let flex know to look at column 3, for example for the yField?
    The attached code is from the Flex documentation and is an example
    of what I'd like to emulate (except I need to do it in
    actionscript). I'd like to be able to select "month" or "amount",
    etc. But coming from the Java side, there is no way for me to name
    the array contained in each column.

    I guess I wasn't clear enough. I am actually serializing a
    java object and mapping it to an actionscript object via blazeDS. I
    know about how the objects translate, for example for
    ArrayCollections in flex, I use ArrayLists in java. The problem is
    that I'm not sure how to get the associative aspects of the arrays
    in flex into my java data structures in a way that will translate
    to the way flex can define arrays, such as Month:"January".
    It seems that in flex, you can create an Array and assign it
    an element like {month:"January", amount:"450"} and it will create
    an Object with variables for month and amount. But I don't know how
    to do this on the fly in Java (or in Actionscript for that matter)
    when I have no way of knowing beforehand how many variables my
    object will need. Each series will need an x and y, though usually
    the x will be dates which are the same for each series. So if I had
    10 series sharing an axis, I'd need 11 variables in my object-
    date, series1, series 2...series 10.

  • How can I save controller assignments with a project?

    How can I save controller assignments with a project, so that I can use different controller assignments for the same synth in another project
    Let's say I am controlling a Logic instrument with MIDI and CC data sent from MaxMSP. I have created a composition and would now like to make another one, with new assignments of controllers, in a new project. Is it possible to save the first piece's c.a. with it's project, so that I can switch between projects and have the controller assignments switch accordingly? Is that something that's become possible in Logic X with Smart Control or another workaround?
    Thanks a lot for any hints!

    With standard instruments you can cable transformers before the objects translating incoming cc's to "fader" events.
    With the new plug-ins they've hacked into Logic (ultrabeat, sculpture) this isn't possible, so your stuck with the "controller assignments" window which to me seems to be aimed at dedicated control surfaces and autoloads. My experiences with the controller assignments window aren't good, as i've found it drops incoming messages quite often.
    Knowing how to do this(controller assignments per song) would give me a reason to open the controller assignments window again..Pretty useless to me otherwise.

Maybe you are looking for

  • Drop down list for User ID's and SAP List viewer format

    Couple of quick questions. Any help will be greatly appreciated. 1) I need to put User ID on the selection criteria screen. And also, I need to build a dropdown list for user ID selection by finding all user IDs in the Finance department and put it o

  • Heard this before

    Ok have an old emac with imovie 2 awesome Get this new computer and WHAT THE HEAK IS THIS IMOVIE 08 It does not work and it is the most confusing thing ever can I get back the old format?? There is not even any effects?? P.s not impressed with this m

  • Application Server connectivity logs

    HI All, We have many application servers that uses our exchange 2010 server to send email, is there any logs to check the details about whether application server got connected to our hub servers, when they got connected, any errors in connection etc

  • E71 removal of email account problem

    When I got my E71 I used Sett. Wizard to add an email account. The email account shows up in messaging but there are no options to remove it. Does anyone know how to remove emails accounts. Thanks in advance  

  • HT5704 where to download 6.1.3

    how could i download the original firmware of iPhone 4s. because i upgraded my iPhone 4s to an iOS7 firmware but it oftens turn off and on. i want to restore it.