Conversion of 1.2 JATO project (non-Forte IDE) to S1AF (JATO) 2.0

JATO Team,
First of all, thank you very much for the Studio integration. It
looks very promising in terms of development time consumption,
deployment to S1AS7, etc., etc. It is impossible to observe all
advantages for so short period of time.
The SOAF (JATO) 2.0 is installed on the top of the Sun ONE Studio 4,
update 1 (EE) with JDK 1.4 along with the Sun One Application Server
7 (W2000). Everything looks okay, at least all basic tasks listed in
the "Getting Started" manual (project/view/model creation, basic db
connection, running of a test application with the usage of the
Studio's default Tomcat container, etc.) work proper.
During the installation of S1AF module on the top of the Sun ONE
Studio 4, update 1 (EE) I've got an invitation to convert the
existing project to the new environment. As I realized the only JATO
project integrated/created with Forte IDE is applicable for this auto-
conversion (please correct me, if I am wrong. It could solve a lot of
my problems).
Since we are using JBuilder5 IDE and our JATO 1.2 project is
integrated with this IDE I manually re-created project in the Studio
with its file structure, adjusted the project web.xml file, etc. This
new project looks like a proper one (Studio recognize all methods,
fields, bean patterns, e.g.) except at least one "small" thing. All
java files (project viewBeans, Models, custom viewBeanHelpers a.k.a.
pure java) came up with the same wizard image:java class. Stutio with
the S1AF module reserves the special images (and appropriate studio
properties, of course!) for View and Model. Namely this allows to see
the following structure for a ViewBean, for example, in the Studio:
Modules
ProjectName.ModuleName
FooViewBean
JavaSource
JSPs
Non-Visual Components
View Components
On the other hand, I could add either new View or Model in my
manually converted project and add any View Component or bind the
Model fields, for example. Also, the ProjectModuleServlet has been
converted proper. I tried to convert each View/Model class inside the
Studio to its proper wizard image and failed. Addition of a View
Components (with an appropriate code fragments) via the Studio or
auto-binding of model fields is an essential part of 2.0 and should
drastically speed up the development process as it is designed.
Questions:
1. What I missed in my manual conversion of 1.2 JATO project to the
SOAF (JATO) 2.0 realm? What should I correct in my JATO 1.2
compatible classes (Views and Models) to be recognizable by Studio
wizard (JATO 2.0)?
To be more specific. Some deltas between JATO 1.2 and JATO 2.0 are as
follows (related to a ViewBean):
====++++++++++++++======
JATO 1.2 viewBean extension upon creation:
public class FooViewBeanViewBean extends ViewBeanBase
implements ViewBean
========================
JATO 2.0 (S1AF) version: viewBean extension upon creation:
public class FooViewBean extends BasicBeanBase
====++++++++++++++======
JATO 1.2 viewBean createChild(...) method for one static looks
like:
protected View createChild(String name)
if (name.equals(CHILD_STATICTEXT1))
StaticTextField child = new StaticTextField
(this,
getDefaultModel(),
CHILD_STATICTEXT1,
CHILD_STATICTEXT1,
CHILD_STATICTEXT1_RESET_VALUE,
null);
return child;
========================
JATO 2.0 (S1AF) version: viewBean createChild(...) is renamed (as
a least) to createChildReserved(...):
protected View createChildReserved(String name) {
if (name.equals(CHILD_STATICTEXT1)) {
com.iplanet.jato.view.BasicDisplayField child =
new com.iplanet.jato.view.BasicDisplayField(this,
STATICTEXT1);
return child;
====++++++++++++++======
JATO 1.2 viewBean registerChildren() method for the basic field
types looks like:
private void registerChildren() {
registerChild(CHILD_STATICTEXT1, StaticTextField.class);
registerChild(CHILD_TEXTFIELD1, TextField.class);
registerChild(CHILD_BUTTON1, Button.class);
========================
JATO 2.0 (S1AF) version: viewBean registerChildren() method:
private void registerChildren() {
registerChild(CHILD_STATICTEXT1,
com.iplanet.jato.view.BasicDisplayField.class);
registerChild(CHILD_TEXTFIELD1,
com.iplanet.jato.view.BasicDisplayField.class);
registerChild(CHILD_BUTTON1,
com.iplanet.jato.view.BasicCommandField.class);
Is it correct to say that all existing custom Views/Models
(compatible with JATO 1.2) should be converted to their JATO 2.0
variants to be visible by the Studio?
On the other hand, fast overview of 2.0 API shows that the JATO 1.2
is a sub-set of the 2.0 (BasicViewBean extends ViewBeanBase, for
example). What exactly (only deprecated methods?) should be adjusted
in the project code (1.2), if necessary, to be visible by Studio as a
View or Model component?
2. Where it is possible to find the list of deprecated methods (from
JATO 1.2 to JATO 2.0 versions). It is difficult sometimes to compare
two versions of API docs (1.2 and 2.0) or compare logs between
versions. Also, JATO 2.0 is significantly larger than 1.2 version. If
the later obviously inherits the ND conversion stage (via the
previous versions), the former obviously has additions incoming from
the integration with the Studio (a.k.a. Forte 4.0).
3. What is the current/future Sun/JATO Team policy with regards to
JATO source code access (version 2.0, at least)? The reason of this
question is as follows: in order to display dates formatted on the
screens we adjusted a couple of JATO 1.2 core classes, for example.
The only minimal, absolutely necessary changes in JATO 1.2 was made,
but anyway...
Sorry for so long multiple question. As Todd wrote in his
announcement mail: "We think you will be very pleased with the new
product...". This is exciting moment, I believe, for JATO Team as
well as for any team involved into the conversion of the full size
application/product from ND to J2EE realm with the JATO as
an application framework (1.0, 1.1.x, 1.2.X, and 2.0 finally). The
last step is left in this spiral process to enjoy the ND_Studio
attractive features in the open source environment.
Thank you very much in advance.
Vladimir Ivanov

I'll get some file templates ASAP and provide them to the group.
As for source code, I'm not sure what the policy is. JATO 1.2 is very
close to what JATO 2.0 is, so that should suffice for now.
The community will be informed when we know more about source availibility.
craig
vivanov4114 wrote:
Craig,
Thank you for the answer. To be honest with you I tried to do exactly
the same: I created the small test project and made an attempt to
adjust the existing *.xml files to the new ones. I got some results,
otherwise I couldn't even see my original 1.2 project in the Studio.
Since I am a newcomer in the Studio, I definitely missed something in
my adjustments. I'll try to observe my changes with the fresh head.
On the other hand, I am afraid that my samples are very pure. If you
could post or send me examples of jatoapp.xml and web.xml files (say
for any of you test project) or excerptions from them with the
appropriate patterns (ViewBean and Model peers, at least), I would be
very appreciated. My mail is: vivanov@b...
In the worst-case scenario I see the workaround: to re-create the
project for one of our releases with the Forte 4.1 IDE and auto-
convert it into the JATO 2.0/Studio world using the Studio
facilities. We must get the current project fully
integrated/converted with/to the Studio (at certain point) because,
first, we expect massive coding with the GUI components involved soon
and, secondly, we have around thousand classes related to JATO only
(and a lot of extras).
Coming back to the question #3 from this post. Now we have full
access to the version 1.2, not only to the JATO 1.2 jar file(I
explained some reasons below). Would we expect the same Sun/JATO Team
policy with JATO 2.0?
Thank you again,
Vlad
--- In SunONE-JATO@y..., "cvconover" <craig.conover@s...> wrote:
It doesn't appear that anyone has responded to this so I am goingto
give you the short answer:
The reason you don't see your ViewBeans and Models showing up with
there "wizard created" icons is because of just that. They weren't
created via the wizards. The wizards create xml formatted filesthat
contain metadata of how/what to generate for the ViewBeans and
Models.
ViewBeans will have a .viewbean fiel, Models will have a .sqlmodel
file (for SQL Models), etc. The content of these files describesthe
code that needs to be generated in the corresponding Java classfile.
So LoginViewBean.java will have a peer LoginViewBean.viewbean file.
The code that is generated is place in protected code blocks thatcan
not be modified in the Studio and should not be modified outsidethe
Studio because the code will likely be regenerated and custom mods
inside the protected blocks will be lost.
Now you can make a JATO 1.2 app appear in the Studio just like aJATO
2.0 app by adding a jatoapp.xml file with the proper content and
adjusting your web.xml properly, but it's much more work to getyour
v1.2 ViewBeans and Models to show up like wizard created versions.
Furthermore, even more work to get the display fields to show up
visually.
The good news is that v1.2 ViewBeans will work with newly wizard
created ViewBeans. And if you do go through the trouble of making
your ViewBeans Studio visible like your wizard created ViewBeans,
adding new display fields visually will work along side yourmanually
created fields.
Try creating a new JATO app using the Studio wizards and then go to
the Filesystems tab and look for the jatoapp.xml file and theweb.xml
file.
I am looking for an email that I have that explains how to do a
partial, manual upgrade.
Also, you will get rid of your JATO 1.2 jar and replace with theJATO
2.0 jar in your lib dir.
Hope this will suffice for now.
craig
--- In SunONE-JATO@y..., "vivanov4114" <vivanov@b...> wrote:
JATO Team,
First of all, thank you very much for the Studio integration. It
looks very promising in terms of development time consumption,
deployment to S1AS7, etc., etc. It is impossible to observe all
advantages for so short period of time.
The SOAF (JATO) 2.0 is installed on the top of the Sun ONE Studio4,
update 1 (EE) with JDK 1.4 along with the Sun One ApplicationServer
7 (W2000). Everything looks okay, at least all basic tasks listedin
the "Getting Started" manual (project/view/model creation, basic
db
connection, running of a test application with the usage of the
Studio's default Tomcat container, etc.) work proper.
During the installation of S1AF module on the top of the Sun ONE
Studio 4, update 1 (EE) I've got an invitation to convert the
existing project to the new environment. As I realized the onlyJATO
project integrated/created with Forte IDE is applicable for thisauto-
conversion (please correct me, if I am wrong. It could solve a
lot
of
my problems).
Since we are using JBuilder5 IDE and our JATO 1.2 project is
integrated with this IDE I manually re-created project in theStudio
with its file structure, adjusted the project web.xml file, etc.This
new project looks like a proper one (Studio recognize all
methods,
fields, bean patterns, e.g.) except at least one "small" thing.All
java files (project viewBeans, Models, custom viewBeanHelpersa.k.a.
pure java) came up with the same wizard image:java class. Stutiowith
the S1AF module reserves the special images (and appropriate
studio
properties, of course!) for View and Model. Namely this allows tosee
the following structure for a ViewBean, for example, in the
Studio:
Modules
ProjectName.ModuleName
FooViewBean
JavaSource
JSPs
Non-Visual Components
View Components
On the other hand, I could add either new View or Model in my
manually converted project and add any View Component or bind the
Model fields, for example. Also, the ProjectModuleServlet hasbeen
converted proper. I tried to convert each View/Model class insidethe
Studio to its proper wizard image and failed. Addition of a View
Components (with an appropriate code fragments) via the Studio or
auto-binding of model fields is an essential part of 2.0 and
should
drastically speed up the development process as it is designed.
Questions:
1. What I missed in my manual conversion of 1.2 JATO project tothe
SOAF (JATO) 2.0 realm? What should I correct in my JATO 1.2
compatible classes (Views and Models) to be recognizable byStudio
wizard (JATO 2.0)?
To be more specific. Some deltas between JATO 1.2 and JATO 2.0are
as
follows (related to a ViewBean):
====++++++++++++++======
JATO 1.2 viewBean extension upon creation:
public class FooViewBeanViewBean extends ViewBeanBase
implements ViewBean
========================
JATO 2.0 (S1AF) version: viewBean extension upon creation:
public class FooViewBean extends BasicBeanBase
====++++++++++++++======
JATO 1.2 viewBean createChild(...) method for one static looks
like:
protected View createChild(String name)
if (name.equals(CHILD_STATICTEXT1))
StaticTextField child = new StaticTextField
(this,
getDefaultModel(),
CHILD_STATICTEXT1,
CHILD_STATICTEXT1,
CHILD_STATICTEXT1_RESET_VALUE,
null);
return child;
========================
JATO 2.0 (S1AF) version: viewBean createChild(...) is renamed(as
a least) to createChildReserved(...):
protected View createChildReserved(String name) {
if (name.equals(CHILD_STATICTEXT1)) {
com.iplanet.jato.view.BasicDisplayField child =
new com.iplanet.jato.view.BasicDisplayField(this,
STATICTEXT1);
return child;
====++++++++++++++======
JATO 1.2 viewBean registerChildren() method for the basic field
types looks like:
private void registerChildren() {
registerChild(CHILD_STATICTEXT1,
StaticTextField.class);
registerChild(CHILD_TEXTFIELD1, TextField.class);
registerChild(CHILD_BUTTON1, Button.class);
========================
JATO 2.0 (S1AF) version: viewBean registerChildren() method:
private void registerChildren() {
registerChild(CHILD_STATICTEXT1,
com.iplanet.jato.view.BasicDisplayField.class);
registerChild(CHILD_TEXTFIELD1,
com.iplanet.jato.view.BasicDisplayField.class);
registerChild(CHILD_BUTTON1,
com.iplanet.jato.view.BasicCommandField.class);
Is it correct to say that all existing custom Views/Models
(compatible with JATO 1.2) should be converted to their JATO 2.0
variants to be visible by the Studio?
On the other hand, fast overview of 2.0 API shows that the JATO1.2
is a sub-set of the 2.0 (BasicViewBean extends ViewBeanBase, for
example). What exactly (only deprecated methods?) should beadjusted
in the project code (1.2), if necessary, to be visible by Studio
as
a
View or Model component?
2. Where it is possible to find the list of deprecated methods(from
JATO 1.2 to JATO 2.0 versions). It is difficult sometimes tocompare
two versions of API docs (1.2 and 2.0) or compare logs between
versions. Also, JATO 2.0 is significantly larger than 1.2
version.
If
the later obviously inherits the ND conversion stage (via the
previous versions), the former obviously has additions incomingfrom
the integration with the Studio (a.k.a. Forte 4.0).
3. What is the current/future Sun/JATO Team policy with regards
to
JATO source code access (version 2.0, at least)? The reason ofthis
question is as follows: in order to display dates formatted onthe
screens we adjusted a couple of JATO 1.2 core classes, forexample.
The only minimal, absolutely necessary changes in JATO 1.2 wasmade,
but anyway...
Sorry for so long multiple question. As Todd wrote in his
announcement mail: "We think you will be very pleased with the
new
product...". This is exciting moment, I believe, for JATO Team as
well as for any team involved into the conversion of the fullsize
application/product from ND to J2EE realm with the JATO as
an application framework (1.0, 1.1.x, 1.2.X, and 2.0 finally).The
last step is left in this spiral process to enjoy the ND_Studio
attractive features in the open source environment.
Thank you very much in advance.
Vladimir IvanovTo download the latest version of JATO, please visit:
http://www.sun.com/software/download/developer/5102.html
For more information about JATO, please visit:
http://developer.iplanet.com/tech/appserver/framework/index.jsp
[Non-text portions of this message have been removed]

Similar Messages

  • How do I connect two workstations to shared storage that allows them to work independently on the same project non-destructively?

    I plan to edit a feature length film using Adobe Premiere CC. I need to know the "Adobe-way" of connecting two workstations to shared storage that allows them to work independently on the same project non-destructively. Is Adobe Anywhere the answer? None of the humans I spoke to seem to know anything about their own product. I also cannot find a price for Adobe Anywhere, anywhere on the Adobe website.

    You need to contact Adobe on this:
    Adobe Anywhere for video

  • I am trying to connect a second monitor on my system so that I have one to work on and the other that I am projecting. Any ideas on how to do that?

    I am trying to connect a second monitor on my system so that I have one to work on and the other that I am projecting. Any ideas on how to do that?

    connect, then in SystemPreferences/Displays you can set the two as you want.

  • Moving existing project to an IDE

    I am considering moving an existing, 12-year old, java [url http://r0k.us/graphics/SIHwheel.html]hobbyist project to an IDE. Up to now, development has been with the Textpad text editor, the msWindows cmd tool, and the CVS version system. Before starting, I'd like to get some opinions on what kinds of things should be considered, and the current strengths and weaknesses of the various IDEs. I've heard good thanks about Netbeans, Eclipse, and Intellij.
    Here are some of the parameters involving the project:
    1) two project directories
    1a) ntc, with 3 java files
    1b) sihwheel, with 5 java files, and some resources (5 properties files, 2 html files, and a PNG image)
    2) 33 classes get created, then jar'red along with the resources of 1b
    3) application normally runs as an applet, but can run as program
    4) open source project
    5) no build support (ant, etc) yet
    Hmm, should I implement build support first, or do at same time? The distributed pieces of the build would be SIHwheel.jar, SIHwheel.html, and SIH_source.zip. Since they can run stand-alone, I also distribute, from the ntc project, NTC.java ColorName.java, and Hilb.java.
    Some of my desires for an IDE are:
    1) not complex to learn or use
    2) easy import of the above "raw" project without forcing major reconfiguration of directory structure, etc.
    3) ability to still make q&d changes with Textpad, javac, and jar
    4) debug support
    5) multi-platform supprt (I normally run Windows 7, but can boot into Ubuntu Linux)
    Consider those to be more of a wish list than requirements. I'm flexible ;) and would like the IDE to be flexible as well.
    -- Rich

    Just focusing on that point (the rest are answered already I think)
    Hmm, should I implement build support first, or do at same time? The distributed pieces of the build would be SIHwheel.jar, SIHwheel.html, and SIH_source.zip.Note that both Eclipse and NB have "single-target" builds by default (htey build a jar, or, in the case of a J2SE app in NetBeans, a 'dist' folder with a main jar and dependencies). Building several targets will require manual configuration on your part.
    In the case of NetBeans, whose build system relies on Ant (generated Ant build files, which you can manually edit afterwards), building several targets (one jar, one HTMl page, one zip) will require to customize the generated build script, so you'll have to learn Ant anyway.
    In the case of Eclipse, I know you can "use" an Ant build script, which you create and edit through the text editor, but it does not natively generates it (there are probably plugins that do that). I think there are wizards to request the creation/copy of so-and-so (Jar file I'm sure, copy too, zip I don't know), which you can customize at least per source folder, but this customization won't propagate automatically to the Ant build script.
    The last time I used that, Jar generation was "manual" (a menu item somewhere trigerred a "generate jar" build), but this may have evolved.
    I can't comment on IDEA, never used it.

  • JSP called database Bean - works in forte ide- not outside ide

    I am obtaining my Connection object from a Java bean so that I can change database connections (like development to production) by just changing the bean out. Inside forte for java 3.0 with its built in tomcat, it works fine. I have the same version of tomcat that I fire up outside of the ide. I used the ide to create a WAR file and I expand it under webapps so the external tomcat can see it. The initial jsp page works fine (so tomcat can see it fine).
    Now when I click a button that performs a form method=get action=\"operation.jsp\"> ... , the operation.jsp executes the following code:
    <jsp:useBean id="db" scope="request" class="dbConnectBean" />
    <%
    Connection adxcon = db.getDbConnection();
    Statement adxstmt = adxcon.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
    ... %>
    The dbConnectBean code looks like:
    public class dbConnectBean extends Object implements java.io.Serializable {
    public class dbConnectBean extends Object implements java.io.Serializable {
    private PropertyChangeSupport propertySupport;
    private Connection dbConnection;
    public dbConnectBean() {
    propertySupport = new PropertyChangeSupport ( this );
    public Connection getDbConnection() {
    setDbConnection();
    return dbConnection;
    public void setDbConnection() {
    this.dbConnection = dbConnection;
    try {
    Class.forName("org.gjt.mm.mysql.Driver");
    catch (Exception e) {
    System.out.println("Can't load JDBC Driver");
    return;
    try {
    dbConnection = DriverManager.getConnection("jdbc:mysql://localhost:3306/cs_dev?user=foo&password=bar");
    catch (Exception e) {
    System.out.println("Can't get connected: " + e.getMessage());
    return;
    return;
    Outside of the ide, when I click to perform the form action above, I get:
    Error: 500
    Location: /AddressBook/operation.jsp
    Internal Servlet Error:
    javax.servlet.ServletException
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)
         at _0002foperation_0002ejspoperation_jsp_3._jspService(_0002foperation_0002ejspoperation_jsp_3.java:140)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:177)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
         at org.apache.tomcat.core.Handler.service(Handler.java:286)
         at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
         at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
         at java.lang.Thread.run(Thread.java:484)
    Any ideas??

    Error 500 signifies the following;
    "500 (Internal Server Error)
    500 (SC_INTERNAL_SERVER_ERROR) is the generic 'server is confused' status code. It often results from CGI programs or (Heaven forbid!) servlets that crash or return improperly fromatted headers."
    Check your headers.
    I wouls suggest that you do not Run your Servlets and JSPs through the Forte IDE. Download and install Tomcat 4 on your desktop (if you havent already) and test them there. You only need to mount the directories for the particular web app.
    You can use this guide on how to install and setup your Tomcat 4 and your development environment. http://www.moreservlets.com/Using-Tomcat-4.html
    Hope this helps

  • Sun's Forte IDE on RedHat Linux:

    Hi,
    Has anyone used Sun's Forte IDE on RedHat Linux? Do you think it's good?I read somewhere on this site that it comes with RH 7.3 & up. How can I install it? Thank you for your feedback in advance.

    I have used Forte on Linux Mandrake (more or less RedHat) quite a bit, and I have no compliants. I don't know anything about it being included in RH 7.3 & up though, sorry. To install, I always started with Linux. Then I got the Java environment going ...and Forte was as easy as running an rpm installer. If it comes with the RH 7.3, then go for it ...just ensure you have some good ram as it seems to consume resources somewhat like an suv. Ok, that's my one complaint.

  • How can I build an existed project into eclipse IDE?

    Hello, all,
    I did not use eclipse IDE before. Someone gave me an completed directory which
    was a project (including all classes and source code) built by eclipse IDE. I
    want to rebuild it into eclipse on my computer. But eclipse only has "new" item
    to generate new project, class, etc. How can I rebuild the exist project in
    eclipse IDE?
    I appreciate your help or any suggestion!
    Thanks
    John

    Easiest way:
    Copy the folder into the Eclipse Workspace folder
    Create the "new" project with the same name as that folder.
    Eclipse should detect an existing project with the same name, inform you of this, and proceed from there.

  • Forte  IDE  help

    Hi,
    I am using Forte IDE first time. Now I am learning how to design th UI with this IDE. It's kind of diffcult to develope the UI with IDE. I might be wroung as I am not used to IDE.
    I checked sun's web site for IDE tutorial. IS there any tutorial through which I can learn, developing UI easily with Forte? I wanted to design UI using Swing and AWT.
    Thanks,
    Padmashree

    Well... obviously... look at the Forte Help menu (like "Help Sets"). And for Swing you can look at the Swing tutorial: http://java.sun.com/docs/books/tutorial/reallybigindex.html
    You'll probably want to install the newest Forte you can- perhaps an early-availability version.

  • Source Browsing/Call Graphing non-Forte Project

    Hi all. I have a quick question. Hopefully the answer is just as quick!
    I have a currently pre-built project that was developed by hand, all Makefiles, source-code etc. It compiles cleanly with Forte but I would like to take advantage of the UI tools such as source browsing and call graphing. Is there a way to do this providing possibly the source code and the Makefiles and have it automatically traverse my source code tree?
    Thanks in advance!
    Brendan Frey

    You have to add "-sb" to your compiler flags.
    See CC -flags
    Enjoy!

  • Restriction of sales order conversion to billing request for projects not r

    Dear all,
    We have SD integrated with Project systems. Each of the sales order is linked to the WBS element of the project which has to be billed. Sometimes a project which is not released is attached to the sales order and while billing it doesnu2019t get posted to accounts because that project/WBS element is not released. Is there a way to restrict conversion of sales order to billing request if the project is not released?
    Looking forward for help.
    Thanks and regards,
    Padmaja

    Define a new condition type and assign it to the pricining procedure
    In the requirement routine have a new routine and put a logic so that it compares the subtotal field A of nett price
    For e.g KOMP-NTPRC
    The condition type should apply when KOMP-NTPRC < =the draft amount
    You have to try this
    I havent done it practically
    Regards
    Raja

  • Is it possible to export a slideshow in 1080p format and then show it on a projection TV in 1080? if so, how - what conversions are necessaryw on a projection TV, if so how

    is it possible to export a slideshow in 1080p format and then show it on a projection TV in 1080? if so, how - what conversions are necessary

    Getting it out of Aperture is not a problem. When you export the slide show select 1080p as the export format.
    What happens then gets tricky. To create a true high def 1080p DVD requires Blu-Ray. So you will need an external Blu-Ray recoreder and software to create the DVD.
    If you're hooking your computer up to the TV then you'll have better luck.

  • Problem compiling a project with FORTE

    Hi, thanks in advance ,
    I've installed FORTE 6 update 2 and all has gone ok .
    I've built two projects without problems.
    But building a big project i've found nexts problems :
    bash-2.03# /opt/SUNWspro/bin/makeprd myproject_file.prd
    ild: (undefined symbol) st_key_create -- referenced in the text segment of output/b.o
    ild: (undefined symbol) st_key_create -- referenced in the text segment of output/a.o
    ild: (undefined symbol) mysql_store_result -- referenced in the text segment of output/a .o
    ild: (undefined symbol) mysql_num_rows -- referenced in the text segment of output/b.o
    *** Error code 5
    dmake: Fatal error: Command failed for target `output/final_file'
    All the files has compiled ok less files makes calls to a MYSQL and ST library .
    I've already tell to my prd where found a library in mysql ( /usr/local/mysql/lib and include ) and ST library ( $HOME/st.h and st.a" ), but i don't understand why ild can't found this symbols ...
    In mysql.h you can find :
    mysql_store_result , mysql_num_rows
    and in the st.h the other functions ...
    I've found declarations( in .h) and functions ( in .a )
    What's the problem ?, anybody can help me ?
    Thanks

    I'm sorry Mike, but I want to be clear on what you are saying.  Are you saying NOT to include it in my project but rather include it in the "always included" box in the application builder? 
    What do you mean by "You shouldn't do it, because your fixed path would be wrong."  What shouldn't I do?  Add it to my project?  I asked a lot of questions and am not sure to what you are referring.
    Thanks again for the reply.
    Reese
    Reese, (former CLAD, future CLD)
    Some people call me the Space Cowboy!
    Some call me the gangster of love.
    Some people call me MoReese!
    ...I'm right here baby, right here, right here, right here at home

  • Transfer material from Valuated project non valuated project

    Hi Experts,
    While i am trying to transfer material from Valuated project stock to Non valuated project with T.Code MB1B movement type 415 'Q', I am getting following error.
    WBS element  has different inventory valuation
    Message no. CN769
    Diagnosis
    The project definition for WBS element  only allows the following stock control:
    No project stock
    No project stock with defined valuation M
    ' ' = non-valuated project stock
    'M' = valuated project stock
    System Response
    Account assignment not possible.
    Procedure
    Change the settings for the project stock in the project definition (Control tab) or use a suitable WBS element.
    Kindly suggest me how to trafer material from Non valued project stock to valuated project stock.
    Regards

    Actually, you sohuld not be transferring stock to non-vlauated proejct directly. In case of non-valuated project, stock is never valuated while in case of valuated project it is valuated. So there is basic difference in valuation method. This will create inconistency if you attempt ot transfer it directly.
    You should rather transfer this stock to general stock and then transfer to non-valuated project stock.
    Regards,
    Mahendra

  • Conversion Error in IDOC  : Unicode to Non-Unicode System

    EBP system (Unicode) posting goods movement to 4.6C (non-Unicode) using message type MBGMCR ( Function module - IDOC_INPUT_MBGMCR).
    **In Non-Unicode System***
    Idoc INBOUND error : Status 51
    An error has occurred assigning data (E1BP2017_GM_ITEM_CREATE ).
    I found in debugging value assigned from EDIDD ( E1BP2017_GM_ITEM_CREATE = IDOC_DATA-SDATA ) for field AMOUNT_LC is "0000            0.00"
    system catch exception with CONVERSION_ERRORS
    **Unicode System**
    Value for Amount_lc is 0.00
    Can anybody help me how to solve above issue?
    regards,

    You can do something like this..
    TABLES E1BP2017_GM_ITEM_CREATE .
    E1BP2017_GM_ITEM_CREATE-AMOUNT_LC = <field value> .
    MOVE E1BP2017_GM_ITEM_CREATE TO IDOC_DATA-SDATA  .
    can u tell me what is the type and value of the variable whose value you are assigning to AMOUNT_LC .
    Reward points to all the helpful answers.
    Thanks.

  • Run Project non functional

    Hi,
    After creating  some simple button states and going to preview in File/Rune Project I get nothing but hang in Firefox 3.53.  Flash 10's installed etc but the page hangs with "waiting for fpdownload.adobe.com.  It worked - really slowly - the first couple of times I tried previewing experiments but now it sends Firefox into "not responding" mode.
    Ideas?
    Thx,
    Sonords

    Hi Sonords,
    I've sometimes seen this when I have a limited internet connection. Is your internet connection fully functional and reasonably high-speed?
    -Adam

Maybe you are looking for

  • Office Web Apps for Hosted Environments

    Hi there, I have a some servers that host two different SharePoint Farms and currently one is connected to an OWA server - http://blogs.technet.com/b/justin_gao/archive/2013/06/30/configuring-office-web-apps-server-communication-using-https.aspx I wa

  • SRM PO Changes Error Status - Error in Process (SRM 4.0 and ECC 5.0)

    Hi All, I created PO in SRM from Sourcing (Shopping Cart) and it is replicated to Back End (ECC 5.0). But I did not post GR or Invoice Verication with reference to PO. When I am trying to change PO in SRM (SRM Webbrowser - Processing PO) like Quantit

  • Java 2D OpenGL pipe performance in JDK1.5

    I've done some tests with OpenGL pipe in JDK1.5 and the results were not that statisfying... I downloaded the the J2DBench source code from the sun site and runned the tests. The results: Summary:   Rendering - Default ppl:     Number of tests:  226

  • NEWBIE: Database vs. Schema

    I'm a student coming from a MS SQL environment. I couldn't figure out how to create a new database in XE. Is an Oracle schema the equivalent of a SQL database? I was not able to locate any documentation discussing the differences. Any help or links w

  • Determine wether JPasswordField is empty

    I have the following code: if (usernameField.getText().equals(""))                     JOptionPane.showMessageDialog(null, "Must enter username & password.","No credentials",JOptionPane.ERROR_MESSAGE);                }I also have a JPasswordField tha