Design Patterns: Do you have a good STRATEGY?

1. Context: Create a XML file. And since there
are many ways: DOM, WAY1, OTHERWAYS, ETC...
2. Question: As a Design Patterns application purpose,
can we use the Strategy Pattern? Is it appropriate one?
If not, what are the alternatives?
CLIENT
--CREATEXML (CONTEXT)
----CREATEXMLSTRATEGY (STRATEGY)
------CREATEXMLSTRATEGY_DOM (CONCRETE STRATEGY)
------CREATEXMLSTRATEGY_WAY1 (CONCRETE STRATEGY)
------CREATEXMLSTRATEGY_OTHERWAYS (CONCRETE STRATEGY)

Hi Paul,
I have myself recently started doing the Design Patterns and believe me after understanding the Patterns OOD have become more clear. >>1. Context: Create a XML file. And since there are many ways: DOM, >>WAY1, OTHERWAYS, ETC...
My understanding regarding the Strategy and Tempelate method Pattern has become stronger after reading the "Thinking in Patterns in Java" , the author is mentioning there these Behavioural Patterns are used for Framework development , infact there he has used example of Framework development.
Now regarding your question it seems to me that your entire applicaiotn can use the Creational Pattern , like Abstract Factory.You can use the DOM,WAY1,OTHERWAYS as the concrete Prodcuts and all will be extracted from the Factory XMLGeneratorFactory.
Strategy Pattern is changing the algorthims at the run time , the temlate can work for your applicaiton but then what you are trying to achieve.Currently this much I can say ..
Let us see for more opinions
Regards
Vicky

Similar Messages

  • Do you have a good handle on Copy Data?

    How about a better question such as assuming you know what copy data is, do you have a handle on it?
    Otoh how about an even better better question such as do you know what copy data is?
    To all those who don't know what copy data is, ask what's copy data ;)

    This is an informative post on what Copy Data is and why you should be concerned about it: http://community.spiceworks.com/topic/605668-what-is-copy-data
    This topic first appeared in the Spiceworks Community

  • How much design control can you have with FormsCentral?

    Hi there,
    Our company's forms have a defined look, initially created in LiveCycle.  I am willing to remake every last one of our many forms in order to get them online and mobile-compatible, but I'm concerned about maintaining our look.  It isn't complicated, but I'd like to use our colors, logo, etc.
    Can someone recommend documentation or a set of samples that will show me what the design parameters are for FormsCentral?
    Many thanks,
    Laura

    You can check out our templates here to get an idea: https://www.acrobat.com/formscentral/en/templates/web-forms-builder.html
    Also, try out our free account to see if it works for you before purchasing.
    Randy

  • Plz chime in on this if you have a good answer...

    My good friend who has little love for the Mac and I have been debating on the power of the G4 as it relates to Centrino and Turion, or even Pentium for that matter.
    I'm curious if anyone has a good, reasonable hypothesis of what a 1.5 or 1.67Ghz G4 would compare in Centrino/Turion speed? I know it's not clock-4-clock but I've always looked to PowerPC and AMD silicon as highly efficient processors.
    Thanks again
    John
    PS: I also happened to notice that my G4 1.5 runs Doom 3 'better' (at the same quality settings..1024x768 @ med. quality) than my HP Athlon 2.0Ghz... I'm guess that I'm both pleased for my Powerbook and butt-hurt at the same time since my HP has a 128MB Radeon xpress 200M and 1.25GB of RAM. :'( I only wish they made Sniper Elite for Mac...great game!

    Hi,
    I ran some c code (number crunching) on my old 12" PB 1.33 Ghz and on a 2 GHz Athlon.
    PB to athlon = 1 : 3 time for solving the problem. Of course I can not say that the PB was 3 times faster, since there are different things affecting the speed like the system BUS etc. as well as the different compilers I have used. But I was quite impressed.
    The problem is more complex so, than just clock or time to accomplish one task!
    Volker

  • Class design question: Can you have an enum of class objects?

    Hi, thank you for reading this post!
    We all know that an enum represents a set of constants, but sometimes a class has a restricted set of values as
    well. My question is can we have an enum of objects.
    Example:
    We have a class named Coin
       A coin with a monetary value.
    public class Coin implements Measurable
       private double value;
       private String name;
       public Coin(double aValue, String aName)
          value = aValue;
          name = aName;
       public double getValue()
          return value;
       public String getName()
          return name;
       public double getMeasure()
          return value;
    }We all know that a coin has a set of values "Dollar" = 1.00, "Quarter" = 0.25, "Dime" = 0.10, "Nickel" = 0.05, and
    "Penny" = 0.01.
    Can we have an enum of Coins with Coin as a class at the same time?
    If yes, how do we do this?
    Thank you in advance for your help!
    Eric

    Maybe you want something like this:
    public enum Coin implements Measurable {
         DOLLAR(1.00, "Dollar"),
         QUARTER(0.25, "Quarter"),
         DIME(0.10, "Dime"),
         NICKEL(0.05, "Nickel"),
         PENNY(0.01, "Penny")
         private double value;
         private String name;
         Coin(double aValue, String aName)
              value = aValue;
              name = aName;
         public double getValue()
              return value;
         public String getName()
              return name;
         public double getMeasure()
              return value;
    }

  • Is this a good design pattern?

    Hi,
    I am working with a team to create an application that can acquire data from up to 24 thermcouple channels.  We plan to create a wizard to assist the user in setting up the test (specifiying stop conditions, sample rate, channels to sample, output file, and email/text notifications).  After the setup, if the user does not cancel out, then the program continues.  We have defined parallel loops and their roles, trying to fit into a producer/consumer design pattern.  I have attached the main file which shows the structure of the program.  We are trying to keep it clean and modular.  Before diving into development, we are finalizing a detailed design specification so that different people can work on each of the loops' subvis.  I was hoping that people could review the block diagram and offer suggestions for improvement or validate that we have chosen a good method of implementation.
    Notes about the block diagram
    The plan is for data driven stop conditions to be detected by Event Notifier, handled by the Main UI event, and then the Data Collector is instructed to stop (as well as the Main UI loop).  When Data Collector stops, it releases queues, the queue reference becomes invalid, and then the loops with the Dequeue will be stopped.
    I am not sure if an additonal event structure should be in the DataCollector to specifically handle the Stop button on the UI because if it is in the Main UI event structure, the DataCollector would not be stopped immediately.  This is important to stop quickly because the sample rate could be VERY long.  I understand about using an event structure instead of WAIT, but didn't know if there is an efficient way leaving it down in the Main UI event structure....????
    Data Collector is the producer, it currently only collects data and passes it on.  If the program is going to contain a start collection button, or pause/resume, I need to figure out how to handle this with the Main UI event structure.
    Event Notifier consumes data from the Data Collector.  It looks at all data and should set a flag if a stop condition is met.  The flag will be handled by the Main UI event structure to tell Data Collector to stop.  The event notifier also sends a notification to the Email/Text Caller when thresholds have been exceeded warranting a reason for the user to be notified via text or email.
    Email/Text Caller waits for notification and then calls a subVI to send an email or text with certain data and channel information.  The subVI call is lengthy, so we decided to put this in its own loop instead of a case structure inside the Event Notifier.
    Report Generator logs all collected data to a file.  A second queue was used, but uses the same data as the first.  Is this the correct implementation since two consumers need the same data?
    Main UI - handles changing of sample rate, possibly the stop button, possibly start/pause/resume of data collection.  Also handles when Event Notifier sets flag for a data driven stop condition, which then should provide a mechanism to stop the Data Collector.
    A big question that i have is.... Should the Main UI event structure just be in the Data Collector so that the loop can be stopped immediately?  All of the UI events (stop button, start/pause/resume data collection) directly effect the Data Collector.  Should the data Collector have a state machine instead?
    I feel that the 3 consumer loops (Event notifier, Email/Text Caller, and Report Generator) seem like a good implementation, but i am not confident about the Data Collector and Main UI loops.  Should they be combined?
    Solved!
    Go to Solution.
    Attachments:
    updatedMain.vi ‏13 KB

    A couple of thoughts:
    Overall it looks workable- remember to name your queus and notifiers- then you can depop the BD and launch each loop in its own sub-vi without wiring all those queues between loops- Just obtain ref to named queue.
    "Data collector" needs a supervisor to control how often the data is collected- I'm thinking a QSM with "init- collect- stop" states.  A simple timed loop could produce the "time to acq ticks" under control of the sample rate control. This puts both the DAQ init and cleanup functions within the Data Collector's perview so it aids coehesion and solves the exit without waiting for the loop to iterate.
    I'm not a fan of duplicating data- I assume analisys is pretty much just some comparisons- so it is pretty quick- Why not append summary data to the same queue? And make it a single element queue- the report loop can then inspect the queue and look for a summary data "index" - if its greater than the last index written append the darn data to the report?  Preview queue works great for these situations.
    Do not combine the UI handeler with anything else! Do you see the snag?- hint: here thar be spaghetti.  keep the functions seperated for solid scalable and maintainable code.
    One last thought:  Its getting less popular to stop loops on the error out of a dequeue.  First it returns a default element that can cause your listeners some headaches.  Second it doesn't let you run cleanup code.  Use a stop command <enum> built into the element data as an executive to determine when to stop.  We'll try to get the examples updated to show current best practices.
    Jeff

  • JDBC Design Patterns

    Hi All,
    I am new to patterns and have started understanding them using the Head First Series.
    I would like to know what all design patterns are there in JDBC?
    Can i say that JDBC uses a Facade design patterns as it hides the database specific details and provides us a interface which helps us to connect to a database. What other design patterns exist as part of the JDBC?
    Request you to clarify my doubts.
    Many thanks in advance

    I would really appreciate a good discussion on it
    rather than any spoon feeding.
    A typical JDBC code will appear as follows:
    try
    /* Load the jdbc-odbc driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    // Open a connection to data source
    con
    =DriverManager.getConnection("jdbc:odbc:DBName","","")
    // Get a statement from the connection
    Statement stmt = conn.createStatement() ;
    // Execute the query
    ResultSet rs = stmt.executeQuery( "select * from
    table_name" ) ;
    1. Is it ok to look into each statement of the above
    code snippet in terms of Design Patterns.it's ok, yes. not necessarily appropriate or worthwhile, though
    2. How can one dissect each line of the code in terms
    of various design patterns?you can't. design patterns exist at a higher level of abstraction than code. 'in terms of' is also disconcertingly vague.
    3. Is it correct to conclude that java.sql package
    overall uses Abstract Factory Pattern.
    As it uses lot of interfaces and implemetation is
    provided by the Vendors. yep. that sounds fair enough. not very useful, though
    4. Consider a particular package like
    java.sql.Statement,java.sql.Blob,java.sql.Connection
    etc. is is correct to conclude that
    its an example of a Factory Method Pattern as any
    client would instantiate. Here the client would be
    Statement object,
    Creator is Connection Interface and createStatement()
    is the factory method.possibly. there's little value in trying to define everything as a "design pattern", though. rather than thinking "oh, they must be using PATTERN X here", think "if I were writing this code, I think PATTERN X would be appropriate". or, more usefully, "is there a pattern that solves this problem?". there isn't, necessarily
    5. I am not able to understand if a statement like
    Class.forName() should be viewed only in terms of a
    programming instruction or
    any design patternit's a line of code, nothing more. stop trying to make everything into a pattern. until you realise where patterns are and aren't applicable, you'll never understand them
    6. Can "stmt.executeQuery()" can be viewed as A
    Strategy Pattern? nope. what makes you think that?
    I would really welcome a good discussion on the above
    questions.does the discussion have to involve design patterns? you know, of course, that design patterns aren't magic beans, right? I know you've just discovered patterns, and are all excited by them, but seriously, they're only ideas, not Infallible Solutions To All Software Problems &#8482;. the most common mistake people make using design patterns is to see them everywhere, and try to bend every problem to fit a particular pattern
    for the record, nobody really views JDBC in terms of patterns. there's little value in viewing existing technologies in those terms, since the most you can "gain" is to have guessed what some other developer did, before.

  • ABAP Object X Design Patterns X Extreme Program

    Hi Evebody,
    I’m postgraduate in Object Oriented Analysis and Programming.
    I’ve been working with ABAP procedural development for two years and I’ve started to work with ABAP Objects has few months.
    I’d like to get deeply knowledge in my development’s skills, could someone tell me if <b>ABAP Object X Designer Patterns X Extreme Program</b> is a good path to follow?
    I’d like to share material and guides about this topic.
    I’ve already bought these books to help me.
    <b>ABAP Objects</b> - H. Keller; Hardcover <i>(Pre-Order)</i>
    <b>Design Patterns Explained</b> - Alan Shalloway
    I’ll be very grateful with any help.

    > And do you think these themes are a great combination
    > for ABAP development?
    Design pattern are very abstract and can be used with any OO programming language. The implementations will differ but the core concepts are always the same.
    XP is an agile development process and can also be used with any programming language.
    Learning what design pattern are and how to use them is very important in my opinion. Most companies expect that you are familiar and have experience with them.
    Extreme Programming (XP) on the other side is different. When I began to explore XP it got me started on how software should be developed in general. Since the concepts behind XP are quite different, it should at least stimulate you to start thinking about how you develop software at the moment and if there might be better ways of doing it.
    If you have only time to study one subject go for the design pattern. You might also consider reading the following books if you want to improve your OO coding skills:
    <a href="http://www.amazon.com/Refactoring-Improving-Design-Existing-Code/dp/0201485672/ref=pd_bbs_sr_1/102-4989641-7820932?ie=UTF8&s=books&qid=1173448197&sr=8-1">Refactoring: Improving the Design of Existing Code (a true classic)</a>
    <a href="http://www.amazon.com/Refactoring-Patterns-Addison-Wesley-Signature-Kerievsky/dp/0321213351/ref=pd_bbs_sr_2/102-4989641-7820932?ie=UTF8&s=books&qid=1173448197&sr=8-2">Refactoring to Patterns (Shows how to improve code by introducing design pattern)</a>
    cheers
    Thomas

  • Design patterns in portlet development

    Hello,
    I am a student at the Technical University in Munich, Germany and I am working on a university project on design patterns for portlets.
    The focus of my work is researching the best practices when developing a web portlet, especially which design patterns are the most suitable for portlets development.
    For example, the MVC pattern is one of the most popular design patterns for portlets.
    I am writing to you to ask which design patterns are used in the development of your portlets from the SAP Enterprise Portal.
    - What design patterns do you use for your portlets?
    - Do you use MVC among others?
    - Do you have your own design patterns?
    - Do you use any templates or guidelines for portlet development that involve design patterns?
    I am looking forward to your answer. Any answer would help with the research, as experts’ interviews are part of my work in the project.
    I appreciate any references you consider to be related to my search.
    Thank you,
    Julia Alexandrescu
    Department of Informatics
    Technical University Munich
    Email: [email protected]

    Hi raaj,
    I have a query related to this.
    I am a beginner to portlets.
    Say I have an existing struts application.What all do i need to modify or add to make a .portlet file out of it so as to make it deployable in Weblogic 8.1 SP3?
    Is adding a portlet.xml enough?
    if yes, what would the portlet.xml look like?
    Do i need to add a separate class as well?
    I couldnt get any sufficient answers from other forums.
    Can you please help?
    Thanks & Regards,
    Nishant

  • A beginner to design pattern(Struct,Spring & Hibernate framework)

    Actually I am beginner to MVC2 Approach of complex application incorporated by design pattern as Struct,Spring & Hibernate framework.
    Currently I am learning JSP Concepts,I have one doubt.
    (1)What are the things I should grasp even before taking off to Design pattern?
    Help me anyone plz?
    With Regards,
    Stalin.G

    [email protected] wrote:
    Actually I am beginner to MVC2 Approach of complex application incorporated by design pattern as Struct,Spring & Hibernate framework.
    Currently I am learning JSP Concepts,I have one doubt.Just one?
    >
    (1)What are the things I should grasp even before taking off to Design pattern?You should understand core Java very, very well.
    You should know JSPs using JSTL without scriptlets.
    You should understand relational databases and SQL.
    You should understand HTML and HTTP.
    Personally I think Struts, Spring, and Hibernate all at once are well beyond any beginner.
    It's hard to advise you on what to do without knowing your capabilities and the problem you're trying to solve, but I think you should try it first using just JSPs, servlets, and JDBC. Get that to work and then refactor it to use the frameworks. You'll understand and appreciate them more that way.
    %

  • FIRST Robotics FRC - LabVIEW design pattern

    Can someone share his/her experience in the design pattern used in the FIRST Robotics FRC competition? Will the "producer-consumer" structure work on CRIO with LabVIEW real-time? or are there any advantages of teaching kids the design patterns (knowing we have only six and a half weeks to complete the project)?
    I have been using LabVIEW at work for a while, but never used CRIO and LabVIEW realtime. This year is my first year of being a mentor of a local high school robotics team. Thanks for your help.

    Hi Ian, 
    In LabVIEW Real-Time, the producer-consumer structure is useful if you are trying to pass data from a high-speed, deterministic loop to a slow loop (i.e. one that is writing the data to a file). However, the design pattern is slightly different in Real-Time, as you will want to use FIFOs to transfer the data instead of queues. This design pattern may or may not be advantageous depending on your application. More information on this design pattern can be found here. 
    Julianne K
    Systems Engineer, Embedded Systems
    Certified LabVIEW Architect, Certified LabVIEW Embedded Systems Developer
    National Instruments

  • Real structures for this design pattern

    Hello , this is my first time posting and I hope to be doing it in the right section. I have a school assignment that says the following: Identify real or abstract structures that could be modeled by the class diagrams represented below: [http://img704.imageshack.us/img704/3523/diagrams.png]
    Upon searching I found out that this is a composite design pattern. I have to implement 2 scenarios for this class system. I was thinking of taking class A (from the uploaded image) to be the Software ( more like a program oriented towards a certain domain like multimedia ), B1,B2 could be an Application/Compiler, and the composite class (D) is an Operating System( because is is usually compiled out of many software (program) pieces) . I want to ask for your opinions on this example because I'm not sure whether this is correct or not. If it isn't could you please give me a real-life example of a correct model ?.

    Roronoa_Zorro wrote:
    Hello , this is my first time posting and I hope to be doing it in the right section. I have a school assignment that says the following: Identify real or abstract structures that could be modeled by the class diagrams represented below: [http://img704.imageshack.us/img704/3523/diagrams.png]
    Upon searching I found out that this is a composite design pattern. I have to implement 2 scenarios for this class system. I was thinking of taking class A (from the uploaded image) to be the Software ( more like a program oriented towards a certain domain like multimedia ), B1,B2 could be an Application/Compiler, and the composite class (D) is an Operating System( because is is usually compiled out of many software (program) pieces) . I want to ask for your opinions on this example because I'm not sure whether this is correct or not. If it isn't could you please give me a real-life example of a correct model ?.Unless your assignment specifically required you to use a computer analogy I would use something else, and even then, I'd still use something else first to understand it better.Since OperatingSystem objects aren't composed with other OperatingSystem objects this doesn't really fit the pattern. Now of course you may be able to run several virtual operating systems inside one but that stretches the example too much for my taste. A directory tree may be seen as an example of the composite pattern -- class A can be a Node, different types of files are specializations of a Node (B1, B2, ...) and are not composable (can't put one file inside another), and a Directory (D) is a Composable specialization of a Node -- it can contain other Nodes. [Edit: I see Saish beat me to the file system analogy]
    With real-world examples you have to be careful as some obvious examples that seem to correspond to computer world, such as containers, boxes, etc, don't actually work, e.g. boxes aren't composable because if box1 fits into box2, then box2 won't fit into box1. Power extension cords and surge protectors are composable extensions of Pluggable class, though not recommended that you take advantage of that feature too much lest you burn your house down. Bags are composable in the real world since they aren't rigid and can be folded up -- class A would just be Object, class B1, B2, etc would be stuff that isn't composable like Apple and Orange, and D would be Bag. You can put Apple, Orange, and Bag instances inside another Bag instance.
    Maybe we should have a contest here -- who can come up with the most creative real-world analogy to the Composite pattern? I know mine are pretty lame.
    Edited by: fromrussiawithjava on Mar 30, 2010 5:36 AM

  • I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    You have a "good WiFi connection". What does that mean exactly? Can you send and receive email and are other internet related activities working OK for you? Have you tried restarting or rebooting your iPad? Sometimes that helps. If nothing else, it's a good place to start.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • JavaBean Models, Command Bean and J2EE Design Pattern

    Hello,
    I have read the available "How To", “Using EJBs in Web Dynpro Applications” where the author mentions that one should use a Command Bean (according to J2EE Design Patterns) so that one can invoke business methods in a Session Bean from our Web Dynpro Application. Well, although, I have read some available articles in the internet about J2EE design patterns, I still have some questions about command beans and its usage in Web Dynpro applications.
    I have developed a WD App which uses EJBs to read data from the DB.
    Let's suppose I only have two tables: BOOKS and AUTHORS.
    Let’s also suppose I have to Entity Beans (one for each table) and a Session Bean with two methods: Book[] getAllBooks() and Author[] getAllAuthors();
    I also have a Command Bean which I imported in my WD App.
    My questions are:
    How should I design my Command Bean?
    Can I have only one Command Bean with two methods each calling one of the methods of the Session Bean?
    Or instead should I design two Command Beans, one for each call?
    In the last case do the methods must be named <b>execute</b> or can I name them whatever I want?
    Furthermore, how should I store the data in my command bean? In instance variables?
    If so, can I use array of a class representing a record in the database table (for instance, classes Book and Author) or do I have to store the data in a generic collection (such as ArrayList for instance)?
    I ask this last question because if I try to store the data in an array when I am importing the Command Bean as a JavaBean model I always get an error.
    One last question: Can the Command Bean execute method directly return the data or should I always store the data in an instance variable an then get it using getter methods?
    I know this questions are more about J2EE Design Patterns and JavaBeans specification than they are about Web Dynpro but I also have doubts about the rules that the command bean must obey in order to accomplish a successful JavaBean model import in WD.
    Some guidance or tips would be highly appreciated.
    King Regards

    I have the same problem.
    Does anyone know the solution?
    Thanks
    Davide

  • Transaction Problem in Session Facade Design Pattern

    Hi
    Well Sorry for giving wrang title to the topic, coz of which I have not received and reply.
    I am using session facade design pattern.
    I have Action class calling session facade method "getData" . This method calls "findByPrimaryKey" method in BMP.
    Method "getData" has transaction attribute as "RequiresNew" and "findByPrimaryKey" has "Required".
    This combination does not assign identity to BMP hence I can not use setter getter method for retriving data(throws nullpointer exception when getter method accessed) I have made sure that I am accessing table and getting data in to BMP but as BMP is not ablle to hoild any identity its not allowing me to use BMP's getter method in session facade.
    I have Used Same transaction attribute for create method called by "addNew" method of session facade bean.
    Transaction method for "addNew" is "RequiresNew" and for "create" is "Required".
    It works fine and gives identity toBMP hense I can use Setter getter method defined in BMP bean.
    How can I avoid this and get BMP an identity?
    Thanking in Advance,
    Chintan.

    Sorry, how is this related to JSF?
    There's an OO/patterns forum out. Consider reposting the question over there with formatted code.

Maybe you are looking for

  • How do you remove TV shows from ITunes,

    I have removed them from my iPad and it says there are no videos but they are still in my iTunes on my iPad and I want to load another show and it is telling me that I do not have the space on my iPad

  • Error in loading shared libraries

    Hi there, I installed Oracle 8.1.5 on RH 6.1 and I'm getting the following error when trying to run 'dbstart' svgmgrl: error in loading shared libraries: /opt/oracle/8i/u01/app/oracle/product/8.1.5/lib/libclntsh.so.8.o: undefined symbol: nnflboot I c

  • Problem while publishing the service

    Hi, I have installed the SAP netweaver Trail sP1 Preview JAVA EE server. I have also installed the Preview _Dev Studio. The Application server is up and running fine http://<hostname>:50100/ I followed the "Web Services Testing and SAP NetWeaver Appl

  • Missing fonts OTF cs4 mac/win .eps

    .eps created with Windows CS4 on windows OTF -On OSX 10.5 CS4 .eps says Fonts are missing (Happens whether or not Font Reserve is active or not active) -On OSX 10.4 CS4 .eps opens fine without any fonts in fonts folders (and NO Font Reserve running)

  • Datasource fore the classification data

    Hi, I am not able to understand, in which ECC client i should be generating datasource for classification data? We have following landscape : For ECC -     Development Environment           100 - Config Client / Golden Master            110 - ABAP de