How to make a complete delete of Webdynpro?

Hello:
I deployed some WD project but now I need to make some transport tests on the same server, so I need to delete that deployed content to have a clean environment as non of the app were deploy once. With the <b>usr/sap/<system ID>/jc00/sdm/program/Remotegui.bat</b>  I UNDEPLOY the WD app. I saw their state at http://host:50000 -> Web Dynpro -> Content Administrator -> Deployed Content ->local  and NON deployed content appears but the app still work at SAP Portal.Why the app keeps working? It seems that the delete action is not complete? What did I miss?
Thanks a lot.
RLS

Undeploy the WD project using SDM. Run the sdm_remotegui.bat available under "usr\sap\<SID>\JC<Inst.Number>\Shortcuts". You may follow <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/239adcca642185e10000000a114cbd/frameset.htm">Undeploying Components</a> to get the steps to be followed to undeploy a DC/Project.
Bala

Similar Messages

  • How to make cell editable alv in WebDynpro for ABAP?

    I make Column editable ALV.(See under source code)
    But I can't make Cell editable ALV.
    How to make Cell editable ALV in WebDynpro for ABAP?
    and..how to get changed data?
    DATA: l_value TYPE REF TO cl_salv_wd_config_table.
      l_value = l_ref_interfacecontroller->get_model( ).
    * { EDITABLE
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_input_field     TYPE REF TO cl_salv_wd_uie_input_field,
            lr_column          TYPE REF TO cl_salv_wd_column.
      lr_column_settings ?= l_value.
      lr_column = lr_column_settings->get_column( 'TOTAL_COUNT' ).
      CREATE OBJECT lr_input_field
        EXPORTING
          value_fieldname = 'TOTAL_COUNT'.
      lr_column->set_cell_editor( lr_input_field ).
      DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.
      lr_table_settings ?= l_value.
      lr_table_settings->set_read_only( abap_false ).

    the code seems to be correct....but where are you writing it?
    put the code in the wddoinit method and it should work.
    have a look at this article..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1

  • How to make a completely transparent button in Flash Builder

    I am making a mobile application, and I am wondering how to make a completely transparent button. I've tried using
    <s:Button x="-5" y="0" width="410" height="1504"
                                    skinClass="spark.skins.mobile.TransparentNavigationButtonSkin" click="navigator.pushView(Sun)"/>
    But it still has one line on the side. I need a way to make it completely transparent.
    Thanks,
         8th grade student

    Try this alpha="0.001"
    Also add useHandCursor="true" and buttonMode="true" if you wish to have the hand cursor appear on hover.
    example  x="10" y="10" width="169" height="54" label="Button" alpha="0.001" useHandCursor="true" buttonMode="true" 
    HTH

  • How to get the complete data from Webdynpro using a RFC

    hi guys,
    A form is created in the webdynpro, when that pdf form is called the user have to provide the key field ie the employee number in the form and then when he press the 'go' button a rfc is called and it gives all the details of the employee in the form. Then the user have to input some fields in the form and he have press the submit button. My problem is here, when the user is going to press the submit button that form will be converted to a stream (binary) of data and it is sent to one of the import parameter used in the RFC.
    I have created a RFC and created a import parameter of data type XSTRING, since i want to see what exactly R3 is receiving from web dynpro i am writing this contant in the sever as a text file. When i saw that text file i cant see the complete data.
    And when i searched in R3 the capacity of xstring is 1024 CHAR, so i dont know how to capture the entire data from webdynpro into my R3.
    I give the code what i worte please tell me am i missing anything in my code, or is there any data type which can hold more than 500kb of data which is coming from webdynpro.
    FUNCTION ZSEND_MAIL_ATTACHMENT.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(OUT_PLACE_LEVEL) TYPE  XSTRING OPTIONAL
    *"     VALUE(BIN_DATA) TYPE  INDX_CLUST OPTIONAL
    *"  TABLES
    *"      IT_MESSAGE STRUCTURE  SOLISTI1
    Data Declaration
      DATA: gd_cnt TYPE i,
          gd_sent_all(1) TYPE c,
          gd_error TYPE sy-subrc,
          tab_lines LIKE sy-tabix.
    Structure Declaration
      DATA : BEGIN OF it_file OCCURS 0,
              row(255),
             END OF it_file.
      DATA : BEGIN OF i_split OCCURS 0,
      row(50),
      END OF i_split.
    Internal Table Declaration
      data : it_receivers like table of SOMLRECI1 with header line."occurs 0.
      DATA : objbin LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE. "sOLIX
      DATA : it_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
      data : wa_receiver like table of SOMLRECI1 with header line.
      data : it_receiver like table of SOMLRECI1 with header line.
      data : v_bin_data like SOLISTI1 occurs 0 with header line.
      DATA : gd_doc_data LIKE sodocchgi1 OCCURS 0 WITH HEADER LINE.
    *data bin_data1 like table of solix with header line.
      REFRESH : objbin, it_packing_list, it_receivers, wa_receiver.
      CLEAR   : objbin, it_packing_list, wa_receiver, it_receivers.
      DATA V_SUBJECT(255) VALUE 'HI'.
      gd_doc_data-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_message ).
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name = 'SENDFILE'.
      gd_doc_data-obj_descr = v_subject.
      gd_doc_data-sensitivty = 'O'.
      APPEND GD_DOC_DATA.
    Appending The Internal Table it_packing_list
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      it_packing_list-doc_type = 'RAW'.
      it_packing_list-body_num = tab_lines.
      APPEND it_packing_list.
    *CALL FUNCTION 'GUI_UPLOAD'
    *EXPORTING
    *filename = V_FILE_PATH
    *filetype = 'BIN'
    *TABLES
    *data_tab = BIN_DATA.
      move bin_data to v_bin_data.
      append v_bin_data.
    *move soli to bin_data.
      LOOP AT V_BIN_DATA into objbin.
    MOVE v_bin_data TO objbin-line.
        APPEND objbin.
      ENDLOOP.
      CLEAR it_packing_list.
      DESCRIBE TABLE objbin LINES tab_lines.
      it_packing_list-transf_bin = 'X'.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 1.
      it_packing_list-body_start = 1.
      it_packing_list-doc_type = 'PDF'.
      it_packing_list-body_num = tab_lines.
      it_packing_list-doc_size = tab_lines * 255.
      APPEND it_packing_list.
    data file(255) value '/tmp/bali.txt'.
    *Appending The Internal Table it_receivers
    close dataset '/tmp/bali.txt'.
    open dataset '/tmp/bali.txt' for output in text mode encoding default.
    if sy-subrc = 0.
    loop at objbin.
    transfer objbin to '/tmp/bali.txt'.
    endloop.
    else.
    write 'hi'.
    close dataset '/tmp/bali.txt'.
    endif.
      it_receiver-receiver = '[email protected]'.
      it_receiver-rec_type = 'U'.
      it_receiver-com_type = 'INT'.
    APPEND wa_receiver.
    move wa_receiver[] to it_receiver[].
      append it_receiver.
    *Move wa_receiver[] to it_receivers[].
    Clear it_receivers.
    if i_OUT_PLACE_LEVEL NE 0.
    loop at it_receivers into wa_receiver.
       loop at it_receivers into wa_receiver.
    **Function Module To Post The Message To Externa Mail
         CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
             document_data              = gd_doc_data
             put_in_outbox              = 'X'
             commit_work                = 'X'
           TABLES
             packing_list               = it_packing_list
             CONTENTS_TXT               = objbin
             receivers                  = it_receivers
           EXCEPTIONS
             too_many_receivers         = 1
             document_not_sent          = 2
             document_type_not_exist    = 3
             operation_no_authorization = 4
             parameter_error            = 5
             x_error                    = 6
             enqueue_error              = 7
             OTHERS                     = 8.
         clear wa_receiver.
    ENDFUNCTION.

    You have to convert your long string to a table of shorter strings.
    There may be other ways, but one possibility is to use a loop to process you string.
    while (there is something left)
       put the next e.g. 1024 characters in a new row of your table
    endwhile
    If you need to reconstruct your string from the table, don't use simple concatenation since it will remove blanks at the end of lines. Believe me (from experience) sooner or later this will happen.
    Instead you need to either set the subsections of your long string, or insert from the end of your table and keep shifting the contents (probably less efficient) right

  • How to make an app deleted from iTunes library be deleted from all the iOS devices synced with this library?

    Hello!
    I have 3 iOS devices synced with iTunes apps library (OS X 10.10.2)
    Can someone tell me how to make not only added but deleted apps be synced also? I mean I want an app deleted in iTunes library be deleted from any iOS devices synced with this library.

    But it was working some time before! What and when has changed?
    There was even a warning popup window something about "this application will be deleted from all the devices synced with this library"
    Now there's opposite message - "This application will not be deleted from any device syncing with this account". Isn't it some kind of clue that there can be conrarily circumstances - when application IS deleted from ANY device synced with this computer?

  • How to make changes to standard UWL WebDynpros?

    Hi,
    We are faced with the problem to make changes to the standard UWL Person Search Dialog. But couldn't find any documentation, blog or anything else how to achieve this. We strongly believe, that we have to create a new track in nwdi, import uwl development components, make changes to them, transport and so on.
    So, how can we make changes to standard uwl WebDynpro components?
    Thanx,
    Gerald

    After investigating hours of hours i have come to the following conclusion concerning uwl customization:
    uwl can be customized following this documenation https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45
    I have tried to check out the sap standard software component (sap.com/UWLJWF), put them into a nwdi track and try to change it. Just the same way as you have to do it using ess/xss.
    But it didn't work out, because source codes are not included. I have also got the info from sap that the uwl webdynpros are not designed for custom changes.
    So, there is no way.

  • How to make a selective deletion in my desktop!

    Hy guys!
    There are any application to make a selective deletions of files and folders?
    Each end of day i need to delete all files present in my Desktop, except the folders setted to be kept.

    You need to use some sort of criterion. Many exist, including:
    tell application "Finder"
    delete (every file of desktop whose name is not in {"file 1 to keep.txt", "file 2 to keep.jpg"})
    end tell
    No folders will be deleted by the script as written.
    (75632)

  • How to make it completely silent (IM still vibrates)

    I need to make my phone go completely silent when I push the switch over. I've changed the messaging and the calls, those work, but I'm still having a problem with Instant Messenger. I've gone into global settings and unchecked the Enable Sound box, but when I'm outside of IM and I get a new one, it vibrates which is really a problem. Do you guys know how I turn this off? I don't want to have to be signed out of IM if possible.  Thank you!
    Post relates to: Centro (AT&T)

    Hello!
    The IM program controls its own volume/vibrate settings which are not found in the Preferences app on your centro.  Unfortunately this application does not have GUI setting to toggle this feature, its a static setting.  I belive that Butler can help you with this though.  Butler lets you control your device in a very detailed way and uses its own preference library which is independent to the os prefs. 
    Post relates to: Treo 650 (Unlocked GSM)

  • How to Make Sent and Deleted Messages Get Saved in the Folders of My Choice

    On my iPhone, under Mailbox Behaviours, I can select specific mailboxes on the server where the Sent, Deleted and Draft messages will be saved. However, I could not find this feature in Mac OS 10.6.2's Mail application; instead, these mails are saved in default folders created by the program. How could I change this behaviour so that these e-mails are saved on the server, in the folders of my choice? Thanks.

    you can do it in in Mail too if your account is IMAP. select a mailbox you want to use for Sent in the IMAP section of your account in the lower section of the sidebar. then go to mailbox menu->use this mailbox for->sent.

  • How to make table column of the webdynpro application scrollable??

    Hi all,
    I want to make some columns of my table to be fixed and some to be scrollable...
    So if anybody know how to do it..
    Please do let me know...
    Thanks and regards..

    Shruti,
    If you are using NW 7.0 (NW04s) then check properties:
    -- Table.scrollableColCount
    -- Column.fixedPosition
    Both let you define number of of "fixed" columns at left/right and number of scrollable columns in between.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • How to make a complete app?

    Hi, I am a newcomer to Java and I have been using Powerbuilder for the last 7 years. I hope I can get some help here.
    In PB, I can basically create a whole application (the GUI, the installable etc..the kind of files you download from www.download.com for instance). I have bought a book on Java called "Complete Guide to Java" and have learnt a few good code snippets.
    But, I am getting impatient and would like to see some book or tutorial that takes me from the scratch and helps me make a whole application (it could be something simple, like a text editor application)....starting from writing the code, to packaging it in such a way that users of UNIX, Windows and Mac can install it in the same way!
    Can someone point me to the right resource on the net, or in a book where I can get such information?
    Thank you!

    anything you create can be made into a java executable
    using the jar tool.
    this is not really like linking object files in C++.
    But really just a packaging thing.
    when you create those .class files that's it.
    the trick to making the .jar file executable lies in the manifest.mf file inside.
    it needs a reference to the class with main.
    so say you write your editor
    then make a manifest.mf file for your .jar that goes
    Manifest-Version: 1.0
    Created-By: 1.3.0 (Sun Microsystems Inc.)
    Main-Class: SimpleEditor
    you put that in the same directory with all your class files.
    cd to that directory
    type
    jar cmf manifest.mf SimpleEditor.jar *.class
    there you will have your portable cross platform executable that in Windows is double click and go
    on unix you have to type java -jar SimpleEditor.jar
    sorry I can't help with a book example
    email me and I can send you a simple editor if you like
    [email protected]
    I was going to paste it in but that leads to the reality of this stupid netscape browser can't seem to see my linux clipboard
    Anybody got a cure for that one ??????????????

  • How to make 2 lines in a webdynpro table cell?

    Hi
    Is it possiable to create a WebDynpro Table Call that can contains 2 lines in 1 cell ?

    Hi Ami,
    There are a limited number of UI elements that you may use for a Table Cell Editor, however, with a TextView, you can display text that includes a line break.
    The line break is achieved by including the carriage-return-line-feed characters in the Table's data source...
    LOOP AT lt_flight_tab ASSIGNING <f>.
         CONCATENATE 'Line One' cl_abap_char_utilities=>cr_lf 'Line Two'  INTO <f>-test.
    ENDLOOP.
    Cheers,
    Amy

  • How to make a complete backup file for Itunes?

    Hi I have a set of "FILES" that make up an old phone back-up that isn't currently working as far as Itunes not recognizing it as a back up at all. What are my options as far as making them compatible?

    If iTunes doesn't recognize a set of iOS device backup folders as valid then the chances of rescuing any data from them are slim. There are various iOS device backup extraction tools that may or may not do something useful, I've not had reason to test them.
    If you want to backup your iTunes library (and you should) see this user tip.
    tt2

  • MPD-How to make it complete

    MPD is really nice and light. But I could not find a client that would give all the functionalities of music manager cum player, like amarok, rhythmbox, and other heavy-weight music player. Madman is great, reads all the id3 tags, but it opens another app xmms which is what I dont like. gmpc seems better than sonata (the 2 that i have tried).
    Please suggest something.

    ravisghosh wrote:
    MPD is really nice and light. But I could not find a client that would give all the functionalities of music manager cum player, like amarok, rhythmbox, and other heavy-weight music player. Madman is great, reads all the id3 tags, but it opens another app xmms which is what I dont like. gmpc seems better than sonata (the 2 that i have tried).
    Please suggest something.
    then I guess you havn't really looked around, there's other frontends.
    a lot of the features that are in amarok, can or are available as plugins for existing mpd frontends. By no means are all of them, but some are. gmpc has a range of plugins, and im sure there was another python based mpd front that had plugins too.
    James

  • How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    Once an app is deleted from an iOs device, you will no longer be prompted for updates. Update alerts only occur for apps curently installed.
    Purchases can be hidden (but not completely deleted) from the purchased list, but only using itunes on a computer.

Maybe you are looking for

  • AT&T - Instore and Online Ordering (Some Questions Answered)

    I ordered (upgraded) 3 existing 3g iphones on a family plan on June 15 around 5:45 EDT, and printed out an order number and receipt. All three show up in "order status" at AT&T if you log in and use the main wireless number on the account and the zip

  • GL Account Search Help Issue

    We want to change the standard search help of GL Account in the Shopping Cart line item. Currently it fetches the value from ECC backend but we need to utilise a custom search help from SRM system. Pease let me know how do we do this. Thanks.

  • Access embedded reader with javascript

    For a project I'm looking for a way to display pdf files within a webbrowser. I have IE8+ with acrobat reader available to me, so i can display any given pdf. But i would like to be able to change pages, jump to bookmarks with javascript functions in

  • New laptop... how do i set up itunes .....

    I am sure this is a simple problem ... My old laptop (not an apple) died unable to it turn on. I have an iPad (the first model)  and  an iPhone 4. How do i set up / sync it with my new laptop with out losing my itunes purchases, apps music, pictures

  • ORA-6512

    I wrote below small function in pl/sql ========================== CREATE OR REPLACE FUNCTION rec_id_chk (record_id IN NUMBER) RETURN CHAR IS dummy NUMBER; l_mesg_data VARCHAR2(1000); BEGIN SELECT NVL(INSTR (record_id, '-'),0) INTO dummy FROM DUAL; IF