My Wish List - Please, comment what are in your plans.

Guys, I really liked M7... But, some essentials features are missing...
The first item is really essential to me. There my list comes:
* Multiple Web Directory. For instance, thing on this project layout:
PATH: src/test/java
WHAT: Java test code
OUTPUT: target/test-classes
PATH: src/main/java
WHAT: Valuable Java code
OUTPUT: target/site.war/WEB-INF/classes
PATH: target/generated-source/java
WHAT: Generated java code. Actually I use for xwork and webworks generated
files by xdoclet.
OUTPUT: target/site.war/WEB-INF/classes
PATH: src/main/web
WHAT: Valuable Web files
OUTPUT: Its should be /target/site.war but its not possible now.
PATH: target/generated-source
WHAT: Generated web files, I have a lot of them. From web.xml to images and
javascript. web.xml,
jboss-web.xml and struts xmls files (when I use Struts) generated by
xdoclet. Images and javascripts
are just unzipped from special libraries jar by maven.
OUTPUT: Its should be target/site.war but its now possible now.
When it will be possible, WOW! It will be perfect. Its like IDEA does.
* ${variable.property} insigth... Like when I type ${ plus control+tab a
list of variables and so a list of fields.
* <%-- <nitrox:el-value name="" value=""/> --%> to show printed values on
design time. Like:
<%-- <nitrox:el-value name="custome.name" value="Someone Something Someway
Anything"/> --%>
<%-- <nitrox:el-value name="customer.age + 20" type="56"/> --%>
Hi, ${customer.name}, Do you know if I get your age and add 20 its
${customer.age + 20}
And so, you could show sample values pritend on design time.
* Velocity Support
* Freemaker Support
* Jelly Support
* OGNL support. (http://www.ognl.org/) Every new cool frameworks uses this.
Its will be a killer feature.
* Webworks support. (Okay, its just a dream)

Just for your curious.
The wish number 1 (multiple directory) prevents me for buy NitroX to the
factory. We re planning to acquire a JSP editor but we cant change our
layout now and I believe that all files in the same directory is not a good
pratice. (Even the libaries jars go on what should be source diretory).
Take a look on Maven praticies. They are good.
The other ones are just sugestion and I would buy with or without.
By the way, I just tried to send some feedback. I really liked NitroX, its
fast, stable... Just the project layout is not so good... So I tried to send
some feedback to help you. I tried a lot o tools and I didnt send any
feedback because I didn't like them.
Thanks
Jose Luiz Junior
On Wed, 22 Sep 2004 21:48:18 -0700, Essam Zaky <[email protected]> wrote:
Jose,Just curious: Would the lack of these features prevent you from using
NitroX on daily basis (i.e buy it), or they are good to have?
Thanks,
M7 Support

Similar Messages

  • Please explain what are the various procedures to find user-eixts

    Hi,
    Please explain what are the various procedures to find user-eixts ?
    Ramana

    Hi,
    1. By executing this Program.
    *& Report  ZFIND_EXIT
    REPORT  ZFIND_EXIT.
    *report zbadi_find .
    tables : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
    if not p_tcode is initial.
    select single * from tstc where tcode eq p_tcode.
    elseif not p_pgmna is initial.
    tstc-pgmna = p_pgmna.
    endif.
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object in ('SMOD', 'SXSD')
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(105) sy-uline.
    format color col_heading intensified on.
    Sorting the internal Table
    sort jtab by object.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type c.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    loop at jtab into wa_tadir.
    at first.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    write:/(105) sy-uline.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    format color col_group intensified on.
    write:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    select single modtext into wf_txt
    from modsapt
    where sprsl = sy-langu
    and name = wa_tadir-obj_name.
    format color col_normal intensified off.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single text into wf_txt
    from sxs_attrt
    where sprsl = sy-langu
    and exit_name = wa_tadir-obj_name.
    format color col_normal intensified on.
    endcase.
    write:/1 sy-vline,
    2 wa_tadir-obj_name hotspot on,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    at end of object.
    write : /(105) sy-uline.
    endat.
    endloop.
    write:/(105) sy-uline.
    skip.
    format color col_total intensified on.
    write:/ 'No.of Exits:' , wf_smod.
    write:/ 'No.of BADis:' , wf_badi.
    else.
    format color col_negative intensified on.
    write:/(105) 'No userexits or BADis exist'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(105) 'Transaction does not exist'.
    endif.
    at line-selection.
    data : wf_object type tadir-object.
    clear wf_object.
    get cursor field field1.
    check field1(8) eq 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    when 'SXSD'.
    set parameter id 'EXN' field sy-lisel+1(20).
    call transaction 'SE18' and skip first screen.
    endcase.
    2. . Go to the screen>System>Status-->Program (Double
    click this program. It will take you to the program.
    2. Now, Goto-->Object Directory Entry.
    3. Make a note the package name.
    4. Now run the transactions SMOD, press F4 and enter the
    above noted package, press enter.
    5. It will display list of Exits.
    6. Now go back to the initial screen SMOD.
    7. Specify the exit name here and select the radio button
    Components.
    8. It will display four group boxes one for FM, second
    for Fcodes, thrid for Screen areas and last for
    includes.
    9. Goto transaction CMOD, create a new project, and
    click the button "Enhancement assignments" and
    specify your enhancements that you got in SMOD.
    10. Now bouble clikc the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.
    3. 1. in se11, goto table MODSAP
    View table contents
    in Type field, enter
    'E' (for user exit / Function Exit)
    OR 'S' (for screen exit)
    4. Calling Customer- fucntion in Main Program
    Thanks,
    Anitha

  • Please comment - we are planning to use GG in unconventional way to replica

    Please comment - we are planning to use GG in unconventional way to replicate all changes except the purge on source     
    Hi we have source and target DB. We want GG to replicate all changes on source to target. But we purge monthly data from source but we don’t want that to be replicated to the target because we use target exclusively for reporting. This target will have all the live data from source as well the data that is purged from the source. To accomplish this we are using USER1 to perform all operations on source except the monthly purge, for monthly purge we are planning to use USER2. We want GG to replicate only what USER1 is doing and NOT what USER2 is doing.
    We did a POC and it seemed to work. Before we actually implement this want to run this by the community if anyone had similar requirement and how you achieved it?
    What concerns us is after the first month’s purge the source and target are a bit different, so we may end up writing tons of validation processes to make sure GG wont delete anything from Target.
    Thanks for your time and comments.

    Thanks for all your comments. In theory and POC we were able to gain some understanding. Have you folks implemented scenario like this?
    As a follow up question, what do you recommend I should use to compare my source and target to verify that OGG did not delete what USER2 has done in source is NOT replicated in Target. We dont have Veridata so that option is ruled out. Thanks.

  • Please explain what are form groups and form routines

    Hello ABAP Experts,
    Could you please explain what are form groups and form routines? I would certainly appreciate some examples.
    Thank you in advance, Aleksandra

    Hi,
    I've found the Form Group in transaction J7LE. It is part of Industry Specific solution for hi tech companies, so I'm not sure if you'll be able to access it. In this tcode you define master data of your partner. The first step is to choose the Form Group - they simply group Form Routines. Depending on which one I choose, different entry fields get activated. However there are routines that will enable input to the same fields, so I suppose there must be some additional functionality behind it. Could you please specify what does it mean?
    >>Form ROUTINES, are subroutines for modularizing your code<<
    I'm afraid I have no ABAP experience at all...
    Cheers, A.

  • What area of your IT environment could be in better shape?

    my server room door is a sliding closet door, no lock - also only has building supplied heat/air - good in the summer when air is running, bad in winter when heat is running

    Let's get physical (or virtual)!Hey SpiceHeads, this week's theme forOn the Air (Wed. 10am CT)is "Thin is In!"Ok so we're really talking about thinclients and VDI, but getting in shape is important for everyone, including your IT environment.What area in your IT environment or department could be in better shape? And what exercise program/diet/weight loss gimmick would you prescribe?Does that tangled network cable mess of blue spaghetti in your data closet need to go on a low-carb diet?Does your storage solution need to get off its fat, lazy NAS?Wish you could send angry users to yoga (or boot camp) before they submitted tickets?Let us know below and you could win a swag bundle (below) fromHP! Then don't forget to check us out on7/29 at 10am CTand find out who the winners are.
    This topic first appeared in the Spiceworks Community

  • What are the payment plans Apple has for international buyers

    what are the payment plans Apple has for international buyers

    There are none.  If you want to buy an iPhone, then you'll need to go and buy one from an Apple store in your country or one of the phone carriers in your country that offer iPhones.  If you live in a country that does not have an Apple store, then go to an Apple re-seller.  You may be able to purchase online if there is an Apple store online for your country.
    These are your alternatives.

  • Poor data coverage in Wadsworth, IL What are Verizon standards, what are Verizon's plans.

    Verizon customer since about 1988, ready to blow my top because I am paying for a data plan for years and years and get very spotty coverage at home. I have had big problems since 4gLTE was introduced, been patient for over 2 1/2 years and now just really want to stop hearing the 4G hype, and start actually seeing some bars of signal when I am at home, enough already. I did a speed test today after about 90 minutes of not being able to use LTE or CDMA for data and it's time for some answers. Speed test results:  Download speed:  0.51 Mbps  (yes thats a zero in from of a decimal)  Upload is 0.17 (another 0  leads that number as well).  I ordered a Samsung Galaxy Note 3 to arrive in a few days, and by god I just read in these forums that the phone does not pick up signal well. That is all I need. How about getting real about infrastructure in the Gurnee, IL area and north. I live less than 2 miles from Highway 41, why does nothing work here?

    I have put phone to safe mode and no difference in signal. I am out of safe mode now and at -110dBm 4g. At least it is connected to LTE. Could customer service please open a ticket to check tower (s)  affecting 1 mile south of Wadsworth,IL and I will check back in a day or two, when I also have the Note 3.  I get so mad going to the Verizon store exactly 7.4 miles away, full signal there, just banging.  Bet there isn't another tower any closer to me than that one the store uses to light up all their stuff.But this has been going on for over 2.5 years, just to re-iterate.

  • What are Adobe's plans regarding AIR on Windows Phone?

    Much ink has been spilled during the last years about different controversies regarding Flash on mobile devices and whether it has any future. Some it has while other maintain there isn't.
    Can anyone point out any official information or other tidbits that would shed light on whether Adobe is interested in porting AIR to Windows Phone?

    I can't speak much to Adobe's intent, but I believe I can speak to the
    results of their actions. There is very little market for mobile AIR. In
    fact, I get flat refusals, and often irritation for even having brought
    it up when I just mention it. There is no future for Flash / AIR for
    mobile apps, because Adobe hasn't marketed it that way.
    It may be different for games, but I doubt it, since no one really know
    what AIR is, and everyone "just knows" Flash doesn't work on mobiles.
    Flash evangelists have been pretty much saying Flash is just for games,
    but they've focused even in narrative mostly on leveraging their huge
    desktop install base, rather than a traditional tech platform narrative
    of expansion.
    For myself, I wouldn't use Flash for client's mobile app, because Adobe
    isn't promoting it's use that way, and as a result, it'll be an uphill
    battle to convince anyone to buy that without Adobe's backing, and it'll
    hard to find developers who are capable in that area, because they've
    all moved on to other technology. There are other app platforms out
    there with much more vibrant developer communities.
    I'd also say that if they ever do decide to re-engage, Adobe may want to
    take AIR, stage3d, and AVM3 and call it something completely different.
    The Flash brand is pretty damaged at this point. Better to leave that in
    the browser era, and move on.
    Kevin N.

  • HEY APPLE! What are upgrade policy plans for new systems shipping with 10.4

    I just ordered a brand new Xserver, thinking that there would be some policy in place for brand new computers shipping with 10.4, to get the new version of OSX Leopard Server (without having to buy a retail copy) - however to my surprise, there is nothing currently in place.
    Will there be an upgrade policy soon for users who have just ordered new computers, currently shipping with 10.4??? Or should we return recently ordered items, and stop ordering new systems until they start shipping with 10.5?

    Assumptions such as this one are often a recipe for disappointment and/or for extra expenses; I've certainly learned to be cautious with these.
    In this case, there is a policy that has been in place (AFAIK) since the Leopard announcement.
    For details on and requirements of the Leopard upgrade policy, do read the [Mac OS X Up To Date|http://www.apple.com/macosx/uptodate> web site.
    Those folks outside the Leopard upgrade window that are upgrading to Leopard (and that don't have a separately-purchased Right-to-Upgrade) will be purchasing and ordering the upgrade. You may end up purchasing an iLife upgrade, too — if you're using it, and not already at the current release — as Mac OS X and Mac OS X Server upgrades apparently do not include an iLife upgrade.

  • What are the effects of checking the checkmark box in a list?

    In an iTunes (Mac) list of Music, what are the effects of checking the checkmark box in a list?

    If the box is left unchecked then the music will not sync or play when part of a playlist

  • What are all the certifications should i do?

    Hii friends,
    I introduce myself as a newbie in dis world of oracle plsql.Me having a experience of 2.5yrs in various but with a relevant exp of 6months on oracle10g plsql.And I think its the time for me to concentrate on doing certifications.
    1) Could you folks can list out me what are all the certification should i go for.
    2)And the books should I buy ????
    3)Sites that provide mock exams????
    I desperately need your valuable suggestions.
    Edited by: user13310481 on Jun 23, 2010 10:53 PM

    user13310481 wrote:
    Hii friends,
    I introduce myself as a newbie in dis world of oracle plsql.Me having a experience of 2.5yrs in various but with a relevant exp of 6months on oracle10g plsql.And I think its the time for me to concentrate on doing certifications.
    1) Could you folks can list out me what are all the certification should i go for.
    2)And the books should I buy ????
    3)Sites that provide mock exams????
    I desperately need your valuable suggestions.
    Please start reading the following articles
    http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html
    http://forums.oracle.com/forums/ann.jspa?annID=794
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Movie Rentals added to my wish list no longer have a rent button

    Moives I have added to my wish list to rent later still show in my wish list, but when they are selected the "rent" button is no longer there on some of them.  What would cause a movie that was available for rent to no longer be available?

    I just went through my wishlist and removed several movies that appear to no longer be available for rent. Sorry Apple. You and your studio friends just lost about $50 I was willing to give you, just from my current wishlist. Most of the movies I wanted to rent were definitely not "buy worthy"... but I would have been worth spending $5 to rent. Now that option is gone, and so is the revenue you could have gotten on me for those movies. Seems weird I can't rent movies from your movie rental service, and most new releases seem to disappear within the few weeks it usually takes for me to catch up and have some time to view them. Anyway Apple. Your loss.

  • Why did 350 songs in my wish list disappear with the installation of Yosemite?

    I always keep a large, ongoing list of songs I want to buy in my wish list, so it obviously takes a lot of time to search for music. Just like that with the installation of Yosemite, 350 of them went "POOF!". That doesn't exactly inspire confidence from a customer. I sure hope someone can shed some light on this problem and maybe how to restore the entire wish list. There must be a solution. At this moment, only 32 songs are visible in my wish list. The rest are missing in action.
    APPLE, OR SOMEONE, PLEASE HELP!!!

    FYI, this afternoon I updated to iTunes 12 on my MacBook Pro, an update that was available before Yosemite became available, and the wish list after the update was "32" songs. Luckily I made a copy of my entire wish list from the Pro before the update.
    After that I went ahead and installed Yosemite on the Pro and, sure enough, the wish list in iTunes was still missing.
    For my money, this is an iTunes 12 issue. I don't think it has anything to do with Yosemite. I just hope someone at Apple is paying attention and will fix this problem soon.

  • What are the dependent master data for running MRP

    Hi Experts,
                      My client wants to Run MRP After 8 Months of implementation. Now i want to know
    1) What are the Master Data need to be check. They are Using the Strategy 20.
    2) They have confirmed sales order for few customers. Forecast sales orders for few customers.How to map it in sap.
    3) Where will i get Gross Requirement in SAP. Because  MRP run will generates the net requirements.
    4) Is there any report in SAP displays the Forecast values for the selected material.
    Please help me on the above points.
    Thanks
    Satheesh

    HI Vishwa Upadhyay,
                                     Thank you Once again,
    The first point is cleared. Can you please suggest me on the 2,3& 4 points please. What are the configuration settings needed for the different sales order type( i.e.. confirmed and forecast)
    Thanks
    Satheesh.N

  • What are the SQL server versions those are compatible with XI 3.0.

    Hi All,
    Please suggest,
    what are the SQL server versions those are compatible with XI 3.0.
    or with which SQL server versions XI 3.0 will interact using JDBC Adapter.

    Check in the [Product Availability Matrix |https://websmp201.sap-ag.de/~form/handler?_APP=00200682500000001303&_EVENT=DISP_NEW&00200682500000002804=01200314690900000192]in market place for more information on this
    Thanks
    SaNv...

Maybe you are looking for

  • Plan driven procurement: PO not replicated at backend

    Hi Experts, I am working with extended classic scenario (SRM 7.0 and ECC 6.0).   If I create a shopping cart and then PO at SRM, this PO is transfer to ECC sucessfully. But for external requirements, purchase order is not replicated into ECC.  So, if

  • When will Postgres be released?

    Well, after spending 30 minutes searching on Sun's web site for the download for PostrgresSQL, I have come to the conclusion that it's not out yet. Does anyone know when it will be release? Thanks

  • Pass error cluster from labview dll to teststand

    Hello, I just want to pass an error cluster from a dll compiled in LV7.1 to TestStand 3.1. I never receive the contents of the LV error cluster in TS. I compiled my function with standard calling convention option, this should work. In my VI I genera

  • X-Fi Resource conflict, no luck so far!

    Hi guy's, hopefully someone here can Help me. Having the trouble with my X-fi Elite pro card causing a resource conflict with my nVidia 6600gt. It says the Vid card cant find enough free resources (Code 2). My motherboard is a gigabyte GA-8IPE000 Pro

  • Youtube without sound - Ver 11.1.102.63

    Hi folks, i'm having trouble with the latest version. i can't hear any sound from youtube (or vimeo). already checked the mixer configs and drivers (i CAN hear mp3, sounds in movies at media player, etc). furthermore, i can't see more than about 9 ou