Web Dynpro with JDI

Hello everyone,
i installed and configured the JDI and all went well. So i wanted to give it a try. I setup a Product, added a SC at the SLD. I defined dependencies (SAP_BUILDT, SAP-JEE, SAP_JTECHS). I then created a track for this new SC and imported the needed SCs shown above into this track. So far so good. But after i imported the Development Configuration into the Developer Stuido i get the 3 SC shown though, but they do not include any DCs! They are empty. This results in 1519 errors in my development because non of the standard SAP Components is found...
these are the logfiles at the JTrans/CMS folder of the WAS  Installation: (Using Stack 9!)
<b>Delopy:</b>
Info:Starting Step SDM-deploy
Info:empty list of archives for deployment: nothing done
Info:Step SDM-deploy ended with result 'not needed'
<b>Repository Import:</b>
Info:Starting Step Repository-import
Info:Component:sap.com/SAP_JTECHS
Info:Version  :NIGHTLYBUILD.20041020045900
Info:1. PR is of type TCSSoftwareComponent
Info:Component:sap.com/SAP_BUILDT
Info:Version  :NIGHTLYBUILD.20041020045600
Info:2. PR is of type TCSSoftwareComponent
Info:Component:sap.com/SAP-JEE
Info:Version  :NIGHTLYBUILD.20041020050200
Info:3. PR is of type TCSSoftwareComponent
Info:Step Repository-import ended with result 'not needed'
<b>CBS make (Build):</b>
Info:Starting Step CBS-make
Info:build process already running: waiting for another period of 30000 ms (2)
Info:no new deploy archives resulting from CBS make
Info:look at the <a href="http://XXX:50000/tc.CBS.Appl/servlet/archiveapi?METHOD=GET_REQUESTLOG&BUILDSPACE=ABS_Develop_D&REQUEST=5">CBS log</a> for details.
Info:Step CBS-make ended with result 'success'
What did i wrong? And why says the repository import not needed??
Regards,
Markus

Got it working by myself. I just imported the sca files into the track again and this time the DCs are shown....

Similar Messages

  • SAP Web Dynpro With Java

    Hi Guys
    A situation at work has forced me to learn web dynpro    with java. I already have some experience with the ABAP    web dynpro   . Now the question is how much "java" do i need to learn to learn sap WebDynpro    based on java. Should I first try and get a fair 'hands on' on core java and then shoot for web dynpro    or should I take the other approach, that is just learn as much java as is required for web dynpro   . Any suggestions?
    thanks
    sameer

    Hi Sameer,
    I believe you need not thoroughly know Core Java to begin for Web Dynpro Java but yes, you should have a fair idea about object, class and exceptions that i believe you would already have after working in ABAP. The UI elements can be just inserted into the component by drag and drop and codes correspondly would be auto generated. Only for customization of some functionalities, you will have to write code in Java using APIs.
    Just go through the following tutorials recommended by SAP to start over Web Dynpro Java on NWDS.
    http://help.sap.com/saphelp_nw70/helpdata/en/16/c0d93f5e0f9015e10000000a155106/frameset.htm
    Regards,
    Tushar Sinha,
    Infosys,
    Hyderabad

  • Java Web dynpro with ABAP Clients?

    Morning,
    We have a situation where we would like to use a Java Web dynpro with multiple ABAP backend data sources. This is for autorization as well as data. We are not using Enterprise Portal.
    We've created a pair of system Jcos and mapped them to the Web dynpro via the URL. This works and the correct data from the correct Client is retrieved depending on which pair of Jcos we define in the URL.
    The problem we are having is that we are only able to logon using the ABAP Client defined in the ume....master.client parameter.
    Is there a way to achieve this (again without EP) either in the system configuration or programatically in the web dynpro?
    tia
    Cheers,
    Mitch

    Hello,
    Thanks for the updates. Actually my query is we have a SCM 5.0 system which has a java stack in it. But now we are going to upgrade it  to SCM  7.0. -  Is SCM 7.0 has a java stack ?
    If it doesn't have , can we upgrade SCM 5.0 to  SCM 7.0 without Java Stack ? Is it posssible to upgrade without Java Stack or not ?
    Is it possible that  we can convert Java Stuff into ABAP web dyn pro ? If yes , how shall we can achieve it ? If not, how shall we proceed in an alternate way ?
    Thanks for your help  in advance.
    Madhu

  • How to use a CAS in web dynpro with NWDS 7.0

    Hi, all.
            I implemented a cas project (some entity services and application services). Now I want to use it in a web dynpro project.
    I know how to do that with NWDS 7.1, but it seems  something differernt with NWDS 7.0.
    Can  anyone give me a hand?  Thanks.

    hi
    CAF Core project comes with a sub-project WebDynpro.
    You can implement business logic using CAF Core Service ,integrate it in WebDynpro UI.
    1)Select your CAF project root , right click on it and select u201CCreate Web Dynpro Modelu201D from the context menu.
    2) Switch to the Web Dynpro Perspective
    3)You can find  the CAF Core services have been generated and are available to the WebDynpro component.
        you can find caf services under modelclasses of webdypro project .
    4)Then you proceed with creating component etc..
    Regards
    sowmya.

  • Web dynpro with adobe integration is not working in quality system

    Hi Experts,
       We have developed a web dynpro component with adobe flex integration. In development system everything is ok. Now the object moved to quality. In quality we are not getting the landing page. I checked in debug mode that the control come into SAP and code got executed. Finally the message which is issued from SAP is displaying in the page but the remaining page is blank. What reason might cause for this defect. If any one faced same kind of issue earlier. Respond to my request if you know the answer.
    Cheers,
    Bujji
    Moderator Message: Webdynpro have their own forums. Please post your question there.
    Edited by: kishan P on Sep 13, 2010 5:35 PM

    Hi Romero,
    Ur guess is correct, i have investiagte in the system, the variants saved a  $tmp, thats why it is not migrated.Later i migrated the variants. Now it is perfectly working. Thanks for the inputs.. Sorry for the delay response.
    Thanks
    surendra

  • Download Excel file through Web dynpro with no windows open?

    Can we have a web dynpro application that just returns an Excel file in the response with no open windows? Similar to a java servlet that is used to download a Excel file?
    This basically means that I cannot use wdComponentAPI.getWindowManager().createNonModalExternalWindow()
    Java Servlet Code
    HttpSession session = request.getSession();      // get a handle on the session id
    response.setContentType("application/download");
    response.setHeader("Content-Disposition", "filename=RTIS_Report.xls");
    PrintWriter out = null;
    out = response.getWriter();
    String report = request.getParameter("REPORT");
    JCO.Table lines = download(request, session, report);
    for (int i = 0; i < lines.getNumRows(); i++) {
         lines.setRow(i);
         String content = lines.getString("LINES") + "\n";
         out.write(content);
         out.flush();
    out.flush();
    out.close();

    Hi,
    I think you can use IWD Cached Web Resource to achieve this..
    See the below code FYI..
    public void downloadToExcel( )
        String fileName = "Customer" + ".xls";
         IWDCachedWebResource cachedExcelResource = null;
         try
              File f = new File("Customer.xls");
              WritableWorkbook workbook =   Workbook.createWorkbook(f);
              WritableFont black = new WritableFont(WritableFont.createFont("Trebuchet MS"),WritableFont.DEFAULT_POINT_SIZE,WritableFont.BOLD,false,UnderlineStyle.SINGLE,Colour.BLACK);
              WritableCellFormat blackFormat = new WritableCellFormat(black);
              WritableFont blue = new WritableFont(WritableFont.createFont("Trebuchet MS"),WritableFont.DEFAULT_POINT_SIZE,WritableFont.NO_BOLD,false,UnderlineStyle.NO_UNDERLINE,Colour.BLUE);
              WritableCellFormat blueFormat = new WritableCellFormat(blue);
              WritableSheet sheet = workbook.createSheet("Customer", 0);
                   Label label;
                   String[] header={"Corporate Code","Batch ID"};
                   for (int i=0;i<2;i++)
                        label = new Label(i,0,header<i>.toString(),blackFormat);
                        sheet.addCell(label);
                   WritableCellFormat integerFormat = new WritableCellFormat(NumberFormats.INTEGER);
                   jxl.write.Number number;
                   // Reading the contents
                   for(int i=0;i<wdContext.nodeVn_DownloadToExcel().size();i++)
                        String strCorpName = wdContext.currentContextElement().getVa_CorpCode();
                        String strBatchID =     wdContext.nodeVn_DownloadToExcel().getVn_DownloadToExcelElementAt(i).getVa_BatchID();
                        label = new Label(0,i+1,strCorpName,blueFormat);
                        sheet.addCell(label);
                        label = new Label(1,i+1,strBatchID,blueFormat);
                        sheet.addCell(label);
                   workbook.setColourRGB(Colour.LIME, 0xff, 0, 0);
                   workbook.write();
                   FileInputStream excelCSVFile = new FileInputStream(f);
                   IWDCachedWebResource cachedWebResource = null;
                   if (excelCSVFile!= null)
                        cachedWebResource = WDWebResource.getWebResource(excelCSVFile, WDWebResourceType.getWebResourceType("xls","application/ms-excel"));
                   cachedWebResource.setResourceName(fileName);
              cachedExcelResource = cachedWebResource;
              wdContext.currentContextElement().setVa_DownloadToExcel(cachedExcelResource.getURL());
              workbook.close();
         catch (Exception ex)
              wdComponentAPI.getMessageManager().reportException("Error in Excel Download"+ex.getMessage(),false);
    Regards,
    Vijay

  • Urg : adobe interactive form creation using Web dynpro with ABAP

    <i>Hi Floks,
    Thank you For Your support and view my Quires.
    I need helpful answer Regarding this Question . I need to Create custom ADobe interactive Form with WEB dynpro ABAP .Could please help out and give me what are the step can i followed here (Ex) .
    Good rewards for best Answers.
    Thank You,
    Suresh Duvvuri</i>

    please check this link:-
    step by step it is explained
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3
    All the best,
    Mahesh.gattu

  • Embedding Flex in Web Dynpro with mutual interaction

    Hi all,
    This is a problem which is arisen due to shortcomings/restrictions in Web Dynpro. What all I want is a dynamic, editable, sortable drop_down_by_index UI element which not only lists values from RFC mapped with index but also allows user to type-in the values in the input field of it and the values get sorted with each key press of user so as helping user to search from the list and when user selects something from the list, the onSelect event raises and triggers some other things. I know is not possible in Web Dynpro in NW04s. (Any takers ?)
    For this, I have planned to embed a similar UI element developed in Flex with all above features in an iFrame within the Web Dynpro screen and that iFrame will be as a cell in a column of a table. There will be three web services deployed along with this application, one that supplies all the data from the RFC, second having searching and sorting funtionalitie Is and populates drop_down and the third to take on onSelect event from the Flex component and gets it handled in the Web Dynpro component.
    How far do you feel that it is doable in the way I am talking and what will be severity of deterioration the performance of the overall application is going to get as it's efficiency is somewhat pleasing right now ?
    Regards,
    Aditya

    Hello guys,
    Come on...send-in your thoughts...this is not rocket science. I could have done this by developing my own UI component containing the required UI elements if setting exact position of a pop-up window in Web Dynpro is possible. (Any takers ?)
    I know the solution I have given in combersome but what all I am looking here is a  simpler but effective solution.
    I shall be highly obliged if  someone can provide me the ideas of accomplishing this task.
    Regards,
    Aditya

  • Security Provider for a web dynpro with tool Visual Administrator

    Hello all,
    after deploying successfully my web dynpro on the J2EE 7.0 WAS, I'm trying to set up authentication to it but I cannot find my applicaiton in the list of policy configurations of the Security Provider entry. When I try to add the path to my local web dynpro, the engine doesn't find it.
    I have noticed that all other policy configurations reference a servlet_jsp application. Should I transform my web dynpro into a servlet_jsp? How do I do that?
    Thanks for your input,
    Tanguy Mezzano

    Hello Marcel,
    in fact, I don't succeed to redeploy with another provider name... I have undeployed my webdynpro with SDM on the Java stack, but from NWDS, when I change the application-j2ee-engine.xml and application.xml files, and that I rebuild the webdynpro, when I run and deploy, it always redeploys under the former provider: local.
    When I create the application, I tell to use the existing component, should I select create a new one, but that means that I have to rebuild the whole application.
    Will then the webdynpro be in the Security Provider list, so that I can configure it with http header?
    Thx for your help,
    Tanguy

  • Why not "Web Dynpro *with* ABAP"?

    As a newbie I found "Web Dynpro for ABAP" to be confusing.  Any ideas why its worded that way?  Just curious.

    Hi,
    because it's a programming <u>model</u> created <u>for</u> abap programming.
    If you look at the true content of webdynpro you come out at:
    declarative programming of all the navigation, ui, datadisplay and gathering, without
    writing the code, but letting the code to be generated.
    so it's a concept build for abap,
    not with abap (although the classes and interfaces are)
    grtz,
    Koen

  • Integrate Web Dynpro with Flash Viewer for JasperReports

    Hello,
    I am trying to integrate the Flash Viewer with Web Dynpro in order to render the jasper reports generated in my web dynpro component. I am using a Flash Island within the view which has the SWF file bound to it.
    I need to pass the URL of the XML report to an attribute called FlashVars of the embed tag, where the flashviewer SWF file is embedded.
    What I have done so far is: created a property named "FlashVars" for the flash island, and then pass the file location of the generated report to it. However I am not getting the report rendered in the Flash Viewer.
    Best Regards,
    Baez

    Take a look at these 2 blogs:
    /people/jawed.ali/blog/2009/02/09/part-i-print-web-dynpro-java-applications-using-jasperreports
    and
    /people/jawed.ali/blog/2009/10/21/part-ii-print-web-dynpro-java-applications-using-jasperreports
    Instead I'm interested in Part III (We will be integrating JasperReports into WDJ applications.) just do not find this blog
    Regards
    Banana

  • Web Dynpro with Bapis using Miniwas 6.20 or Sneak Preview 6.40 ABAP

    Does anyone know if I can I use a web Dynpro that uses BAPIs to connect to a Miniwas 6.20 like a Backend system?
    I have the SLD configuration OK, I was able to create the Jco connection, but when I test the Metadata application  with this Technical System (Miniwas 6.20) at the Content Administrator I get an error message: "Group PUBLIC not found" (I also tried with SPACE, like a Logon Group). I have the corresponding settings in the service file on Windows folder (sapmsBSP 3600) and the others settings too.
    I think the problem is to try to define Logon Groups at this kind of R/3 system (Miniwas 6.20) ... It's possible to use Logon Group with Miniwas?
    I want to know if somebody had tried to do this practice (Web Dynpro using BAPIS)against to Miniwas System.
    Please I would like to get a yes or no answer
    Janett

    Hi,
    You have to configure the PUBLIC logon group in SMLG transaction.
    Once configured the SLD and JCO-Destinations in the WebDynpro Content Administrator, we had the same problem with METADATA_DIRECTORY JCO-Connection. When we tested it, we got an error related with the PUBLIC LOGON GROUP. This JCO destination is a metadata directory connection and use the SAP message server to connect to the PUBLIC logon group.
    You can create the PUBLIC logon group easly with SMLG, but it is necesary to add a "Logon Favorite Storage" in "SMLG Transaction - Display control/status Area" called PUBLIC too.
    More information at:
    http://help.sap.com/saphelp_nw04/helpdata/en/28/1c623c44696069e10000000a11405a/content.htm
    After that, all JCO connections and the webdybpro application should run fine.
    Regards.
    Agustin Alvarez

  • Call another Web Dynpro with Configuration

    HI to all
    I have a Web Dynpro Components, and i have made Application configuration.
    So I want call this Web Dynpro Application from an other Web Dynpro Application with the configuration I have made before.
    Is this possible if so what have I to that this works, has some one a code example for me.
    Thanks & Regrets
    Hermann

    Hi Hermann,
    When you run an application with a special configuration, you may notice the additional URL-parameter
    &sap-wd-configId=my_configid
    . Just add this as a parameter to the application URL, and it will work.
    Ciao, Regina

  • Web dynpro with adobe interactive forms and button submit

    Hi,
    I'am new with webdynpro and adobe interactive forms so i just trying some example with an adobe interactive form with a submit button event handler inside the webdynpro. But i can't catch the event handler submit that i creaate on onSubmit property of the interactive form.
    Can anyone help please.
    Thank you very much.

    I think I understand but just to make it clear. I use texts created using function module "SAVE_TEXT". In my Web Dynpro I  select one or more of them and use the button "insert text" (with appropriate functionality behind it) to insert them to specified location in my PDF form opened in this Web Dynpro. Considering what you said it is not possible to replace this "insert text" button by drag and drop functionality. Am I correct?
    Btw great job with the book "Next Generation ABAP Development" Thomas!

  • How can I convert my Web Dynpro Application to Web Dynpro with GP Interface

    Hi experts
    I am trying to make my Web Dynrpo Application implement GP interface.
    I encountered a question .
    when I added GP interface controller, "Window" component also added automatically.
    But I have already had  a "Window" componet which contains alot of View settings.
    Do I have to Use newly added GP "Window" component?
    if  so, do I have to recreate "Window" Componet whenever I convert to my web dynpro application implementing GP interface ?
    Thanks in advance

    Yes you have to use the automatically added window.
    Check <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/50d74ada-0c01-0010-07a8-8c118d408e59">this</a> tutorial on how to implement a GP WD.
    Regards,
    Christophe

Maybe you are looking for

  • After export movies works and then is not working anymore?!

    Hi guys, i am capturing HD movies to my final cut express HD..Edit them, expert as quick time movie (option self contain is OFF). Then i test the movies and they are like they should be. Then i import them into IDVD and IDVD accept some and some not.

  • Box printing in SAP script

    i want to display box in Window in SAP script.. n  in that box i want to habe Amout Rs Printed... please help mi with the same

  • When we drilldown at document level it displays one record for each cube

    Dear Experts . The users want to see the report by status for the order detail report at document level it displays one record for each cube . They want to see the single line for the order quantity , Amount, Billing quantity delivery and amount alon

  • Can I set a conditional format as default in OBIEE 11g?

    Hi, I would like to set all positive number be (green) and negative number be (red) for all tables in Analytics Web (OBIEE 11g). Apart from create conditional format for every tables, is there any way to set once only and apply for all reports?

  • Crystal reports from command line

    Post Author: DrewJ CA Forum: General Hi, I need to run Crystal reports from the command line. Does anyone know how to pass parameter arguments when launching the application? I have tried cr32w.exe c:\reports\report.rpt arg="099909" (which launches t