Is it possible to un Webdynpro java without SAP EP?

Hi,
I have a unique requirement.
My customer is new to SAP EP / Java Webdynpro.
He requires Webdynpro components to run without SAP EP.
In other words, he wants create an ALIAS for Webdynpro component URL which is displayed when we run the component from NWDS and publish the url in web page.
Even I am not sure whether Webdynpro will work without SAP EP?
He down't want any SAP EP features such as authentication / role assignment etc.
Kindly let me know is it possible to un Webdynpro java without SAP EP? how?
Thanks
Prabhu.M...

Hi,
yes, this should be possible. Nevertheless you need to install WebAs Java. I'll move your thread to WebDynpro Forum.
Anja

Similar Messages

  • Is it possible ? : Webdynpro java without SAP EP

    Hi,
    I have an unique requirement.
    My customer is new to SAP EP / Java Webdynpro.
    He requires Webdynpro components to run without SAP EP.
    In other words, he wants create an ALIAS for Webdynpro component URL which is displayed when we run the component from NWDS and to publish the url in web page.
    Even I am not sure whether Webdynpro will work without SAP EP?
    He don't want any SAP EP features such as authentication / role assignment etc.
    Kindly let me know is it possible to run Webdynpro java without SAP EP? how?
    Thanks
    Prabhu.M...

    Hi Prabu,
      You will get answer for all your question, see through link.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00f7103-6790-2a10-ac9c-fcac7c5b18a3
    Also this might be helpful,
    /docs/DOC-8661#section10 [original link is broken]
    Thanks,
    Arun

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • Passing Value from PDK Java to Webdynpro Java in SAP EP SP18

    Dear Experts
    Please tell me how to call a webdynpro java ivew form a PDK java application and I need to pass a value to webdynpro form my PDK application.
    I am using SP18
    Please help me in this issue
    Regards
    Noel

    Noel,
    From your PDK aplication you will be providing the WD URL along with the parameter.
    Say in your PDK application you redirect to http://portalserver:50000/irj/local/webdynpro/sap.com/test?mypram=1
    In WD you fetch this parameter using WDProtocolAdapter class.
    Check below links for more information.
    [Access WebDynpro URL parameters programaticaly |https://wiki.sdn.sap.com/wiki/display/WDJava/Access%20WebDynpro%20URL%20parameters%20programaticly]
    Page 23 of this [document|https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ba641aa6-0c01-0010-57ac-c21a4ca7b542&overridelayout=true]
    Chintan

  • Break Point in Webdynpro JAVA and SAP

    Good Morning.
    I am creating a development for web dynpro Java using Function Module RFC in ABAP.
    I want know how can put a break point in the system SAP ERP (Backend) and run an application in web dynpro java?
    I did this steps:
    1.) SE37--->name RFC
    2) button Display
    3) Set/Delete external Break point.
    4) In the SAP Netweaver Developer Studio >Name of project>Webdynpro>Applications>Name Appplication-->deploy new archive and run.
    But this not stop.
    The question is :
    How can do this?
    Kind Regards

    Hi,
    Refer this article: [Debugging ABAP Code from within Web Dynpro Application|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/0e9a9d90-0201-0010-478e-991dbea73a30&overridelayout=true].
    I hope it helps.
    Regards
    Arjun

  • Is it possible to run a java program without using the command prompt?

    Hi,
    I was wondering whether it is possible to run a Java program (not an applet) without using a command line in the command prompt?
    Basically I want to run a program that will be continually running in the background and hence I don't want to have a command prompt screen loaded up as well - I just want the program to be running in the task bar.
    I know how to run the program in the task bar - but I still need to launch the program from the command prompt - is there anyway I can get a program running without having to start it from the command prompt?
    Cheers

    Or create a desktop shortcut (in Windows) or an application launcher ( in Linux GUI).

  • ALE-IDoc in WebDynPro Java - Is it possible?

    Hi All,
    As we know we can create RFC function module to access R/3 data from WebDynpro Java, but I would like to know, is there any other way to access R/3 without RFC function module? Because I would like to get data from IDoc directly without using function module, which present in R/3 side.
    Could you please explain me?
    Thanks & Regards,
    Sheik

    Hello
    No need to create a new one.
    There are already lots of standard FM present on the abap side which you can use to read the data of an idoc
    e.g.
    IDOCTYPE_READ_COMPLETE
    IDOCTYPES_LIST_WITH_MESSAGES
    IDOCTYPES_FOR_MESTYPE_READ
    SEGMENT_READ_COMPLETE
    IDOC_RECORD_READ
    Use these standard FMs as RFCs for reading data from afuntion module.
    Thanks
    Sarbjeet Singh

  • Is it possible to use the JS coding in webdynpro java application!!!

    Hi Experts,
    Is it possible to use the JS coding in webdynpro java application by any means?
    If yes, kindly suggest the procedure or any pointers for the same.
    Thanks in advance.
    Regards,
    Anurag

    Hi,
    I'm not an expert in this matter, but I will post here what I know:
    In NW7 releases (at least 7.01.05) it is possible to run JS, also to capture any WD Event and run your own JS code after that, using IFRAME. I have jQuery running here, it would take some time till you create a "framework" to enable some easy usage. I just want to highlight that is possible, thou I think it's a lot of effort.
    Not sure about CE7.1 it seems iFrame is deprecated. Still, being deprecated should not "block" the usage, thou it's not recommended since this functionality can be removed in next releases.
    I've read that CE7.2 has JS support, and I think you should try having a word with Armin maybe..
    Hope it helps,
    Daniel

  • Is it possible to Disable Right Mouse click In WebDynpro Java Application??

    Dear Experts,
    Is it possible to Disable Right Mouse click In WebDynpro Java Application??
    If yes then kindly suggest how.
    Warm Regards,
    Upendra Agrawal

    What is the use-case?
    Armin

  • Is it possible to configure Webdynpro in Netweaver ABAP/JAVA trial version.

    Hai, all
    Can anyone clear me that, is it possible to configure Webdynpro in Netweaver ABAP and Netweaver JAVA trial versions.

    Hello Senthil ,
    It possible to configure Webdynpro in Netweaver ABAP trial version.
    SAP NetWeaver 7.0 ABAP Trial Version (incl. Web Dynpro ABAP) is available on SDN Download .
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6">to Download !</a>
    Regards ,
    Santosh

  • Is it possible to configure Webdynpro in Netweaver ABAP/JAVA trial vers

    Is it possible to configure Webdynpro in Netweaver ABAP/JAVA trial version.

    Hello Senthil ,
    It possible to configure Webdynpro in Netweaver ABAP trial version.
    SAP NetWeaver 7.0 ABAP Trial Version (incl. Web Dynpro ABAP) is available on SDN Download .
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6">to Download !</a>
    Regards ,
    Santosh

  • Is it possible to run the java program without main?

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    Ramya

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    RamyaWhy do you ask? It sounds like an odd question. Your program can be an applet and it doesn't need a main method in that case.
    Kaj

  • Is this possible in Webdynpro JAVA

    Hi All,
    I am wondering if any of the the following are possible to do using webdynpro JAVA.
    The portal version here is EP6.0
    1) To change the headers of standard Search Help Window.
        By default the header at the top is shown as Display Text for value and the header for key is empty.
       Can we change this? I know we can create a Pop up window which contains the custom table  
       accordingly. But is it possible to change in Standard F4 search help
    2) For Dropdown by key,OnSelect event is fired when a user selects any of the item in the dropdown.
       But is it possible to fire an event if the user does selects the item with out using drodown
       Lets say we have dropdown box with the list of countries. User can press letter U on dropdown which
       takes to USA.This time the event does not fire. The event is fired only when USA is selected with the
       mouse
    Could anyone give some ideas on this?
    Thanks
    Santhosh

    Related to the second query,I also would like to share one more thing.
    When the user selects by pressing the Key,that value is not updated in the context and hence when I try to submit to Fucntion module the old value(which is last selected by mouse) is being passed.
    This seems to be weird....
    Please give me some info if any one has an idea on this.

  • Accessing SAP DB(Oracle/Max DB) without using RFC in webdynpro java

    Dear Friends,
    I'm developing an application in Adobe interactive Forms using webdynpro java. To retrive the data from R/3 generally we use RFC / BAPI's.
    But i dont want to use RFC / BAPI's which is written in ABAP.
    I want to write one RFC /BAPI using java to store  / retreive the data from R/3. or how to access the data / store the data using JAVA from R/3.
    Can any one guide me on the same.
    Thanks in Advance.
    Regards,
    Gowripathirao.
    Edited by: Gowripathirao on Nov 30, 2009 7:58 AM

    don't do that ( I always wanted to write this since joining SDN )
    If you want to access database tables in general, check the EJB3 tutorial in SAP Help
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/f72761af4020fde10000000a1553f6/frameset.htm

  • CATS webdynpro Java - working times in weekly view

    Hi Team
    1.  Start & end time in Weekly view : Requirement is to allow shift planning employees to enter their working times in  weekly view itslef. But as I had discovered that it is possible to enter it only in dailuy view of webdynpro Java application in ERP 6.0.
    I came across a better Webdynpro ABAP application which exactly fits the requirement but it is part of EHP5, getting a mini upgrade for one application was also rejected. is it possible to implement in a short period of time without great impact ..anybody experienced on this?
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/30/e67780e37f4f5a90105a9e9205660f/frameset.htm
    So I am again back to finding way to enhance the weekly view.I read all teh therads...didnt find anyone successful
    2. Default Attendance type & target hours & start & end times from Infotypes : CATS0002 exit is called only when we go to next step ,is there any other way to default as soon as CATS screen is loaded ?
    Any help would be greatly appreciated & rewarded.
    Thanks
    Edited by: Nidhi Guglani on Mar 10, 2011 5:17 PM
    Edited by: Nidhi Guglani on Mar 14, 2011 12:10 PM

    Hi Suresh,
    Thanks for your valuable inputs. I went and looked into the java file and found bit different.I dont see how they are getting the column headers like Saturday,Sunday,Monday...
    Basically I need to keep one 'Submit' button on top of my table and on click, it should populate 8 hrs in the correspounding column.For eg. if its monday, it should default 8 hrs in monday column so  that user dont have to manually type it in and also save these working hrs in the backend system without further click on 'Save' or 'Review'.
    I still need to check with the ABAPers regading the user exit.
    Also, Is it possible if I create a custom webdynpro application where I can use a BAPI that takes in the current day from my webdynpro and update the cats database and send an export parameter with success or error message.
    Thanks
    Anjana

Maybe you are looking for

  • Notes Are Cut Off Midway Through - Any Option To Upload Fully?

    I've recently been uploading some of my MSN conversations in text format to my 5th Gen iPod (80GB). But none of them have loaded completely, leaving me with half-finished convos. Is there a limit to the size of a txt file that you can upload? Thank y

  • First screen shot of Preview PDF is inaccurate

    I use cmdshift4 to take a lot of screen shots of pages of pdf files displayed in Preview (to covert to jpegs in Fireworks...for posting on the web) and often, but not always, the first page of a multi page pdf file, when dragged over for the shot, *_

  • Manager's self service

    Hi Can anyone help me in collating some information on communication infotype - IT0105. I am looking to know what is the use of this infotype in MSS.

  • Serious FileVault Issue....  Please Help!!

    Hi, I have found FileVault very useful on my G3 PowerBook, not only for security, but also to save the time and effort of using disk utility to clear up unused space on the hard drive (from time to time when you shut down, filevault prompts you if yo

  • TimeMachine prevents iMac from shutting down?

    I am a proud owner of the new 27" iMac with a new 1TB Time Machine. No problem there. However, when the Time Machine is backing up and I choose shut down (from the shut down menu) TM should stop and resume the interrupted backup next time I start up.