Can we delete network header and then use it again under a WBS?

Hi All,
I have an issue where user wrongly create network header and activity not under WBS/project. The situation :
There is a project / WBS called ABCD. User require a network header ID called RSKA005100S1 under the WBS. However, user create the master network header RSKA005100S1 not under WBS. How can we assign network RSKA005100S1 to be assigned in the WBS ABCD, coz when i tried to create the same network, it says order already exist.
CHeers,
Nies

Hil,
i hope network header is not released and no cost posting done in your case !!
Select Network Header RSKA005100S1 and goto assignments tab. assign the WBSE ABCD here, then system shifts the network header assignment to ABCD automatically. No need to delete existing one and creating new one under ABCD.
Hope this helps you !
Br
Hari.

Similar Messages

  • Apple address book is not responding -can i delete the application , and then reinstall it

    on my imac apple address book is not responding -can i delete the application and then reinstall it - all contacts are backed up to icloud

    If you have in mind backup, I would not count on iCloud backup, just go to ~/Library/Application Support/Address Book. In Lion, ~/Library is available by pressing Option key when selecting Go while in the finder. Backup that folder.
    Deleting that app will create further troubles. When a basic Apple app bahaves like that, you should better identify why it behaves like that, it may mean a more serious system issue. Is this the only app, which presents this problem? If yes, rather delete its associated plist file in ~/Preferences (the same location, press Option when selecting Go).
    Do regular backups of your data, choose a backup app you consider appropriate and proceed. When you are familiar with its reactions, you may then ‘play’ with deleting the partition and install/reinstall.

  • How can i hide a JFrame and then Show it again in runtime

    How can i hide a JFrame and then Show it again in runtime??
    Please, please help me
    Its URGENT

    Here's even an example:
    import javax.swing.*;
    public class HideAndShow extends JFrame
         public HideAndShow()
              super("Hello");
              setSize(200, 200);
              setVisible(true);
              try
                   Thread.sleep(2000);
              } catch(InterruptedException e) {}
              setVisible(false);
              try
                   Thread.sleep(2000);
              } catch(InterruptedException e) {}
              setVisible(true);
         public static void main(String[] args)
              new HideAndShow();
    The JFrame will show, then hide, then show again. This is at runtime.

  • I downloaded a tv episode but it doesnt have any sound to it.  Any ideas?  can i delete the epipsode and somehow download it again?  i t is a episode of a series thati bought a pass on.

    I downloaded a tv episode but it doesnt have any sound to it.  Any ideas?  can i delete the episode and somehow download it again?  it is a episode of a series that i bought a pass on.

    ... is this an episode of Sons of Anarchy? (Multiple reports that one episode on a season of that is not playing audio.)

  • I am organizing my mom's iPhoto.  Can I delete her albums and then recreate them so they are accurate?  Will I lose all the pics or will they stay in the photo library?

    I am in the process of organizing my mom's iPhoto.  She has so many albums that have incorrect photos in them that I would like to delete the albums and start over.  If I do that and then organize her events accurately, can I then recreate the albums correctly?
    Thanks

    Yes, as long as you're sure it's albums you're deleting and not Events.  lf you delete an Event you're deleting the photos as well.
    OT

  • Can I purchase an iphone3g and then use it with the apple golf app as a golf gps without having to be on a cell plan or data plan?

    If I purchase an iPhone 3g, can I then use it with the apple golf app without having cell or data service?

    You do not need have cell service for the GPS to work.
    If the iphone is new, then you would have to activate it with a carrier in order for it to work at all.
    If it is used, then you can use it without wireless service:
    Using an iPhone without a wireless service plan

  • Why can't I extend Container and then use Canvas/Panel in implementing classes?

    I have several components that I'm dynamically adding to a component by building it from a class name...
    var pmt:Prompt = UiHelper.instantiateUsingClassName([email protected]());
    myLayout.addChild(pmt as DisplayObject);
    I want all my components to extend "Prompt" in a generic way so that in each implementing class I can use Canvas, Panel, etc.
    I thought I could just make Prompt extend Container but they won't show up if I use Container, even if in my implementing Prompt components I use a Panel or Canvas.
    However, if i change the base Prompt class to extend Canvas, then things show up... but that seems annoying to 'have' to use a Canvas as my base class object? Is there another type of object I should be extending?

    If your condo is pre-wired for Ethernet, you may be better situated to configure your AirPorts for a roaming network that a wireless-extended one. The only issue, of course, would be the room that does NOT have an Ethernet jack.
    The issue, as you pointed out, is the combination of the building construction material and the additional nearby Wi-Fis that are providing a "deadly" RF noise mix/obstructions to any of your AirPorts' signal.
    With a roaming network, each AirPort would be connected to Ethernet back to a central router and each AirPort, in turn, would be reconfigured as basic Wireless Access Points to feed wireless at the location ... mostly only within the room the WAP is located in because of the wall material.

  • Free container and then use it again.

    Dear SAP friends!
    I am working on Table Maintenance Program.
    When the program starts - the user see a window with a toolbar on the top. The rest of the window is blank.
    The toolbar on the top  has 2 buttons named "Maintain Table Z1" and "Maintain table Z2".
    When User clicks button "Maintain Table Z1" - then the middle part of the window becomes an ALV grid populated with table Z1.
    When User clicks button "Maintain Table Z2" - then the middle part of the window becomes an ALV grid populated with table Z2.
    The bottom part of the window has another toolbar containing buttons "ok", "Edit", Save" and "cancel". The purpose of this buttons is to allow display or edit of the table.
    In the program the top, middle and bottom areas are container objects "container_top", "container_middle", "container_bottom".
    The containers are created using splitters.
    So what I do in the program:
    1. on click button "Maintain Table Z1" I create alv grid object "grid_z1" in  "container_middle".
      CREATE OBJECT grid_z1
        EXPORTING
          i_parent = container_middle.
    2. on click "ok" button I free  "container_middle" so the middle part of the screen will be blank again:
    CALL METHOD container_middle->free.
    3. on click button "Maintain Table Z2" I create alv grid object "grid_z2" in  the same "container_middle" after the container was freed. I assume that when you free a container - then container becomes empty and you can place into this container another object.
    4. on click "ok" button I free  "container_middle" again so the middle part of the screen will become blank again.
    So the User ( me actually at this point) does 1, 2, 3, 4 - and the program dumps.
    So the 1st free in step 2 is ok. But the 2nd free in step 4  - is not OK.
    Method "Free" raise cntl_error:
    METHOD FREE.
      DATA L_CHILD TYPE REF TO CL_GUI_CONTROL.
      LOOP AT CHILDREN INTO L_CHILD.
        CALL METHOD L_CHILD->FREE
             exceptions others = 1.
      ENDLOOP.
      CLEAR CHILDREN.
      CALL METHOD SUPER->FREE
           exceptions cntl_error        = 1
                      cntl_system_error = 2
                      others            = 3.
      case sy-subrc.
        when 0.
        when 1.
    >>>>>      raise cntl_error.
        when others.
          raise cntl_system_error.
      endcase.
    ENDMETHOD.
    Please help me to understand what is going on...
    Thank you,
    Tatyana

    Hi,
    I tried to repaint ur scenario: I got one screen containing 2 buttons and 1 custom  container: the first one showing Sales data and Delivery data respectively in the Same container. Here is what i wrote..
    *& Report  ZTEST_PRG1
    REPORT  anirban.
    TABLES: vbak, likp.
    TYPES: BEGIN OF types_vbak ,
           vbeln TYPE vbeln,
           vkorg TYPE vkorg,
           netwr TYPE netwr,
           END OF types_vbak,
           BEGIN OF types_likp ,
           vbeln TYPE vbeln_vl,
           vstel TYPE vstel,
           vkorg TYPE vkorg,
           netwr TYPE netwr,
           END OF types_likp.
    DATA: w_cntx_menu TYPE REF TO cl_rsdme_ui_context_menu_gen,
          t_vbak      TYPE STANDARD TABLE OF types_vbak,
          t_likp      TYPE STANDARD TABLE OF types_likp,
          w_sale      TYPE char01.
    CONSTANTS: c_check TYPE c VALUE 'X'.
    ** ALV relavent Data
    DATA: w_grid TYPE REF TO cl_gui_alv_grid,
          wl_ref_container TYPE REF TO cl_gui_custom_container,
          w_container      TYPE scrfname   VALUE 'C_CONTAINER',
          t_fcat TYPE lvc_t_fcat,
          t_sort TYPE lvc_t_sort.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-011.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln,
                    s_delvr FOR likp-vbeln.
    SELECTION-SCREEN: END OF BLOCK b1.
    START-OF-SELECTION.
      SELECT vbeln
             vkorg
             netwr
             FROM vbak INTO TABLE t_vbak
             WHERE vbeln IN s_vbeln.
      IF sy-subrc = 0.
        SORT t_vbak BY vbeln.
      ENDIF.
      SELECT vbeln
             vstel
             vkorg
             netwr
             FROM likp INTO TABLE t_likp
             WHERE vbeln IN s_delvr.
      IF sy-subrc = 0.
        SORT t_likp BY vbeln.
      ENDIF.
      CALL SCREEN '9001'.
    *&      Module  STATUS_9001  OUTPUT
    *       text
    MODULE status_9001 OUTPUT.
      SET PF-STATUS ' '.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_9001  OUTPUT
    *&      Module  USER_COMMAND_9001  INPUT
    *       text
    MODULE user_command_9001 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK' OR
             'CANC' OR
             '%EX'.
          LEAVE TO SCREEN 0.
        WHEN 'SALE'.
          w_sale = c_check.
          PERFORM sub_fill_fcat_sale.
          PERFORM sub_display_grid.
        WHEN 'DELV'.
          PERFORM sub_fill_fcat_delv.
          PERFORM sub_display_grid.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9001  INPUT
    *&      Form  sub_display_grid_sale
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sub_display_grid .
      IF w_grid IS INITIAL.
        PERFORM sub_create_grid.
      ELSE.
        CALL METHOD wl_ref_container->free
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL METHOD w_grid->free
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        FREE: w_grid, wl_ref_container.
        PERFORM sub_create_grid.
      ENDIF.
    ENDFORM.                    " sub_display_grid_sale
    *&      Form  sub_fill_fcat
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sub_fill_fcat_sale .
      DATA: wa_fcat TYPE lvc_s_fcat.
      REFRESH t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 1.
      wa_fcat-fieldname = wa_fcat-rollname = 'VBELN'.
      APPEND wa_fcat TO t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 2.
      wa_fcat-fieldname = wa_fcat-rollname = 'VKORG'.
      APPEND wa_fcat TO t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 3.
      wa_fcat-fieldname = wa_fcat-rollname = 'NETWR'.
      APPEND wa_fcat TO t_fcat.
    ENDFORM.                    " sub_fill_fcat
    *&      Form  sub_fill_fcat_delv
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sub_fill_fcat_delv .
      DATA: wa_fcat TYPE lvc_s_fcat.
      REFRESH t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 1.
      wa_fcat-fieldname = 'VBELN'.
      wa_fcat-rollname  = 'VBELN_VL'.
      APPEND wa_fcat TO t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 2.
      wa_fcat-fieldname = wa_fcat-rollname =  'VKORG'.
      APPEND wa_fcat TO t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 3.
      wa_fcat-fieldname = wa_fcat-rollname =  'VSTEL'.
      APPEND wa_fcat TO t_fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = 4.
      wa_fcat-fieldname = wa_fcat-rollname =  'NETWR'.
      APPEND wa_fcat TO t_fcat.
    ENDFORM.                    " sub_fill_fcat_delv
    *&      Form  sub_create_grid
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM sub_create_grid .
    ** Create the Container
      CREATE OBJECT wl_ref_container
            EXPORTING
              container_name    = w_container.
    ** Create the Grid object
      CREATE OBJECT w_grid
        EXPORTING
          i_parent          = wl_ref_container
        EXCEPTIONS
          error_cntl_create = 1
          error_cntl_init   = 2
          error_cntl_link   = 3
          error_dp_create   = 4
          OTHERS            = 5.
      CHECK sy-subrc = 0.
      IF w_sale = c_check.
        CALL METHOD w_grid->set_table_for_first_display
          CHANGING
            it_outtab                     = t_vbak
            it_fieldcatalog               = t_fcat
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ELSE.
        CALL METHOD w_grid->set_table_for_first_display
          CHANGING
            it_outtab                     = t_likp
            it_fieldcatalog               = t_fcat
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
      CLEAR w_sale.
    ENDFORM.                    " sub_create_grid
    Hope That Helps
    Anirban M.

  • How can I delete all Contact and Calendar entries on my iPhone so I re-sync from my PC

    My Contacts and Calendar are messed-up on my iPhone with literally hundreds of duplicate and erroneous entries.  The data is okay on my PC so I wish to clear the IPhone entries completely and then use Sync again to download from my PC.  How can I clear the iPhone files?

    Hi
    Check the link below and let me know if it helps
    http://www.ehow.com/how_5654980_clear-contacts-iphone.html
    Thanks

  • Can i buy an iphone in US and then use it in India with Indian Networks

    can i buy an iphone in US and then use it in India with Indian Networks

    Asked all the time here. If officially unlocked, yes, the phone will work in India. Officially unlocked iPhones are only sold by Apple in the US...no where else. Currently, the only unlocked model available is the T-Mobile labeled iPhone.
    Your warranty/support will only be valid in the US...they won't touch the phone in India if you have any problems or issues. And, the phone will most likely not support LTE in India.

  • I am new with iMac and I am trying to copy some file from my external HDD but it does not let me also I can't delete anything from this HDD using the finder. Can somebody help me , please?

    I am new with iMac and I am trying to copy some file from my external HDD that a used with my PC but it does not let me also I can't delete anything from this HDD using the finder. Can somebody help me , please?

    No, unfortunately, when you format a drive, it will erase all the contents. So you will need to find a temporary "storage" place to put the stuff using a PC so you have access to it. Then reformat using Disk Utility (Applications > Utilities). If only using with mac, format Mac OS Extended (Journaled) and use GUID Partition scheme under Partitions/Options. After formatting, you can drag the files back.

  • Hi, i wanted to resize my windows partion. I was thinking of using the default backup system for windows. Then switching to mac partion, deleting the bootcamp and then restoring a new enlarged partion from the backup. Is this possible?

    hi,
    i wanted to resize my windows partition. I was thinking of using the default backup system for windows. Then switching to mac partion, deleting the bootcamp and then restoring a new enlarged partition from the backup. Is this possible?

    I see youhave gotten recommendatons for using WinClone or CampTune.  I have used both and they both work well.
    You have asked about using the WIndows 7 utility to backup your drive and restor it onto a larger partition.  I will tell you fro experience that this will probably not do what you want, and may do something that you don't want.  You can use the Windows 7 native backup tool to make a backup of your Windows 7 partition.  It will most liekly end-up making a dive image of the whole drive.  When yourestore that backup, it will try to re-create teh partitions of exactly the same size as they were when the backup was taken, so it won't increase your partition size for you.  Worse, since Windows doesn't natively know how to read./write HFS+ volumes, the backup will make a partition for your MacOS (replacing any you may have now), except that the copy restored by WIndows will be totally worthless, and you will not be able to boot MacOS from it, or even read it under MacOS.
    Now I will tell you that I've also had some fairly good success working with the free tool CloneZilla.  Since it hasn't been mentioned yet, and everything else mentioned does cost you money, I thought I would throw it out.  CloneZilla is not as easy to use as the tools mentioned, but it has worked for me int hte past, so it is something to consider.  I tend to use CampTune myself, but that was because I purchased a bundle deal for them and it was included in that deal.

  • How can I delete the video and keep the Audio  in a few frames using Imovie 11

    How can I delete the video and keep the Audio  in a few frames using Imovie 11?

    I've met the problem too before. but i solved it with  Audio Converter Mac instead of iMovie. If you have similar situation that just want to keep audio but not video, and if your file format is not workable in iMovie, you can use the Audio Converter for help too. it can easily help to extract audio soundtrack from any video format. Or if you need to convert one audio format to another, it is a good choice too, because it supports many common audio output formats.
    <Link Edited By Host>

  • I bought this apple ipad from pawn shop and have receipt. its locked by previous owner and pawn shop had no info on previous owner to contact. how can I delete all content and start fresh so my grandson can use for college?

    i bought this apple ipad from pawn shop and have receipt. its locked by previous owner and pawn shop had no info on previous owner to contact. how can I delete all content and start fresh so my grandson can use for college?

    If it's activation locked, you can't; go back to the shop and ask for a refund.
    (120778)

  • Can I put a SQL query into a bind variable and then use it to output report

    Hi,
    Can I put a SQL query into a bind variable and then use it to output report?
    I want to create a report and an item "text area" (say P1_TEXT) which can let user to input a SQL query(they are all technical users and knows SQL very well). Then, I use a bind variable (that text area) to store the SQL statement. Then, I add a submit button and I want to use the following to output the report:
    select * from (:P1_TEXT);
    Do you think it is possible to do that? Any known limitations for APEX in this area?
    Thanks a lot,
    Angela

    You can, but make sure it's what you really want to do. Make sure you are VERY familiar with SQL Injection. Most people who know what it is, go out of their way to prevent SQL Injection. You're going out of your way to allow it.
    You can try using &P1_TEXT. instead of bind variable syntax. Bind variables are one of the best ways to prevent SQL Injection, which is why it's not working for you.
    Once again, I strongly urge you to consider the implications of your app, but this suggestion should get it working.
    Tyler

Maybe you are looking for

  • FRM - 41219 CANNOT FIND REPORT INVALID ID  - CALLING REPORT FROM FORM

    I am using Developer Suite 10g (forms 9i, reports 9i) . windows XP. I am using the following code in WHEN-BUTTON-PRESSED-PRESSED trigger in form to call report. DECLARE repid REPORT_OBJECT; v_rep VARCHAR2(100); rep_status varchar2(20); BEGIN repid :=

  • Goods picking and Post goods issue in VL02N

    Dear All, Am hving problem in Picking goods and Post goods issue. This is for the Stock Transport Order with Delivery via Shipping Supplying plant is 1000(SAP std,sloc 0001) and Receiving plant 1100(sloc 0001). Sales org:1000 Distrbn Chnnl:10 Divisio

  • White Balance NOT Synchronizing in Bridge CS5

    Instead of LR3 I use Bridge CS5 and the camera raw tool for my edits (it's all the same tools and runs faster.) ANyways, a strange problem i noticed recently after SEVERAL job edits.. I noticed the white balance was not the same on all my files. THIS

  • Template Cell Background Color

    Hi, I'm creating Dreamweaver templates with the pages built from them being edited in Contribute.  There is a need for the Contribute users to be able to change the background color of individual cells in a table (on a page built from a DWT).  I can'

  • Microsoft Wireless Notebook Laser Mouse 6000

    I bought one of these for my Macbook: followed the install steps and nothing. No laser light, no control via the mouse. Any ideas?