How to unlink equipment from its superior structure

Hi Team
How to unlink equipment from its superior structure.
Br, Kiran Unde

Click on this icon, You'd see Dismantle  button in the pop-up.

Similar Messages

  • How to read data from a CLUSTER STRUCTURE not cluster table.

    Hi,
    how to read data from a CLUSTER STRUCTURE not cluster table.
    regards,
    Usha.

    Hello,
    A structre doesnt contain data.. so u cannot read from it. U need to find out table of that structure and read data from it.
    Regards,
    Mansi.

  • How to get XML from its XSD?

    Hi
    I need to get the XML template from its XSD. Please help me understand how do I do this using a java code. Based on XSD I have to generate the XML template, which I am going to fill later.
    In case there is no standard API available; then please suggest how effective will it be to parse the XDS and generate XML myself. What all consideration must be taken care of?
    Regards
    Vijendra

    Indeed, the best choice is to use an XML editor that has support for this kind of operation.
    In case you want to generate sample XML files with more complex conditions, oXygen (http://www.oxygenxml.com/) has such a feature : Tools->Generate Sample XML Files. ( http://www.oxygenxml.com/xml_schema_editor.html#xml_schema_instance_generator )
    StylusStudio has an XML generator too:(http://www.stylusstudio.com/xml_generator.html)
    But if you want to write your own generator in Java , I suggest to look at http://www.sun.com/software/xml/developers/instancegenerator/

  • How to read data from the Deep structure.

    Hi
    How to get from the deep structure. Means i have one table in that having onother structure. i need to read data from that inner structure.
    Regards
    Reddy

    Hi,
    you can access in the way u use for the normal structure, u should only consider a deep structure is a table without headerline.
    TABLES: BKPF, BSEG.
    TYPES: TY_ITEM TYPE TABLE OF BSEG.
    DATA:   BEGIN OF W_DOCUMENT,
                    HEADER TYPE BKPF,
                    ITEM       TYPE BSEG,
                 END    OF W_DOCUMENT.
    DATA: T_DOCUMENTS LIKE STANDARD TABLE OF W_DOCUMENT.
    Insert the data:
    SELECT * FROM BKPF WHERE ....
       W_DOCUMENT-HEADER = BKPF.
       SELECT * FROM BSEG INTO TABLE W_DOCUMENT-ITEM
                                       WHERE BUKRS = BKPF-BUKRS
                                            AND BELNR  = BKPF-BELNR
                                            AND GJAHR  = BKPF-GJAHR.
       APPEND W_DOCUMENT TO T_DOCUMENTS.
    ENDSELECT.
    Read the data:
    LOOP AT T_DOCUMENTS INTO W_DOCMENT.
    Header data
        WRITE: / W_DOCUMENT-HEADER-BUKRS,
                      W_DOCUMENT-HEADER-BELNR,
                      W_DOCUMENT-HEADER-GJAHR.
    Item data
        LOOP AT W_DOCUMENT-ITEM INTO BSEG.
             WRITE: / BSEG-BUZEI,
                           BSEG-WRBTR CURRENCY W_DOCUMENT-HEADER-WAERS.
        ENDLOOP.
    ENDLOOP.
    Regards,
    Padmam.

  • How to Create Hierarchy From Flat file Structure

    Hi Gurus,
    There is a scenario for me regarding the Hierarchy.
    Required Hierarchy structure - Region>Director>Manager-->Sales id
    I have flat file which gives the info like user id , sales id , manager id, director id.
    But the transaction data Flat file has structure with sales id, region id, sales amt, sales qty.
    Note : Region id is another Master Data.
    How i can create hierarchy from the first flat file which doesnot have region info in that but it is available in the transaction data Flat file.
    Is there anyway we can create hierarchy based on the first Flat file structure which contains more that 1,00,000 records.
    Try to Suggest me in this regard .
    This is urgent.
    Regards,
    Mano

    Hi Mano,
                    Defining the source system from which to load data
    Choose the source system tree File  ® Create.
           2.      Defining the InfoSource for which you want to load data
    Optional: choose InfoSource Tree ® Root (InfoSources) ® Create Application Components.
    Choose InfoSource Tree ® Your Application Component ® Other Functions  ® Create InfoSource 3.x ® Direct Update.
    Choose an InfoObject from the proposal list, and specify a name and a description.
           3.      Assigning the source system to the InfoSource
    Choose InfoSource Tree ® Your Application Component ® Your InfoSource ® Assign Source System. The transfer structure maintenance screen appears.
    The system automatically generates DataSources for the three different data types to which you can load data.
    ○       Attributes
    ○       Texts
    ○       Hierarchies (if the InfoObject has access to hierarchies)
    The system automatically generates the transfer structure, the transfer rules, and the communication structure (for attributes and texts).
           4.      Maintaining the transfer structure / transfer rules
    Select the DataSource for uploading hierarchies.
    IDoc transfer method: The system automatically generates a proposal for the DataSource and the transfer structure. This consists of an entry for the InfoObject for which hierarchies are loaded. With this transfer method, the structure is converted to the structure of the PSA during loading, which affects performance.
    PSA transfer method: The transfer methods and the communication structure are also generated here.
           5.      Maintaining the hierarchy
    Choose Hierarchy Maintenance, and specify a technical name and a description of the hierarchy
    Hope this helps
    Regards
    Karthik
    Assign points if Helpful

  • How to unlink facebook from Contact

    I've accidentally linked the wrong Facebook profile to the wrong contact via the Social app. How do I unlink it? As far as I know, there is a chain icon for the Lumia and HTC phones. I'm on Belle but it seems that there is no such option from the latest OS from Nokia. The lack of full social integration (and I mean being able to not only add but remove contacts from social networks to/from my personal contact list) is kind of surprising. Other modern OS out there can do it, I don't see why Belle has to be the odd one out, again.

    I just get Nokia Social app updated to v1.5.215 in firmware Symbian Belle 111.030.0609 in my Nokia N8.It looks like after Social app updated, it will auto link facebook profile to contact in N8
    when first time click refresh at the Social main menu.
    It's able to remove facebook link from contact.
    First enable your internet connection first, either WiFi / mobile data.
    Open contact & search the particular contract to display it.
    Click option>Manage links, this will auto lauch Nokia Social app.
    Now you can click option (right bottom button)> Remove profile.
    Hope this helps you.
    If you find this post helpful, please show your appreciation by clicking the Kudos star at the left. If it provides you the solution, please click on the GREEN Accept as Solution button at below

  • How to prevent developers from modifying the structure of DB

    We are developing an application and using Oracle 8i as DB server. I don't want the developers to modify the structure of tables. They should only be able to insert/update/delete rows of the tables.
    How can I make it?
    Any suggestions will be appreciated.

    A good rule is that no one logs in as the schema owner. You could give the schema owner a strong password, and not share it with the developers. Then create a role. Every time you make a table in this schema, be sure you're logged in as the schema owner, then grant select,insert,update,delete on the table to the role. Better yet, make two roles. Grant select on all tables to one role, which will be a readonly role. Grant select,insert,update,delete to the other role.
    Then, you can grant one of the roles to your developers -- the readonly role or the read/write role, as you choose. As you add tables, grant access to them to the roles and the users with the role automatically get DML access -- but not DDL access.
    Be sure to check which system privileges and roles your users already have. If you've made them all DBAs, all bets are off! 8)

  • How to unlink iMessage from phone number?

    I recently switched over from iPhone 4 to a Samsung Galaxy S4. I used the iPhone for 2 years with iMessage on. I no longer use the iPhone. I turned off iMessage on my iPhone, I unregistered the iPhone from my Apple account. However my friends and family that own an iPhone with iMessage turned on, everytime they text my number...my new phone doesn't receive the text message. It still shows that my number is iMessage capable with the blue bubbles. And that is weird because I own an Android device now. How do I fix this issue? It's really annoying and I can't receive any texts from those people with iPhones.

    i just changed from iphone to android as well and dont' get iphone users messages as they still 'see' me as a imsg'er..my husband is still an iphone user and we both would sync our phones into the icloud..apple service got me to delete my account from itunes but it still doesn't work. i am dumbfounded as what to do now. everything is deleted on phone, mac but still no msg's..any ideas?

  • How to read data from ITS to Web Dynpro

    Dear Experts ,
    I have requirement where User clicks on specific Shopping cart .On click of it
    Web Dynpro Application containing Shopping cart details should open .
    Can any one please tell me how can I do so ? If I can pass some data appended to my web Dynpro URL , How can I read URL ? Is this correct way ? If possible please provide with sample code ?
    I feel there are other ways as well like memory id filling in ITS and reading it in Web dynpro ? Is that fair practice ?
    Point I want make is I need code to read Application URL .
    (eg. cl_wd_utilities->CONSTRUCT_WD_URL). How to use this ?
    Points will be awarded surely.
    Cheers
    Parry

    data  lo_cmp_api             TYPE REF TO if_wd_component,
              lo_window_manager      TYPE REF TO if_wd_window_manager,
              lo_ext_win             TYPE REF TO if_wd_window.
    CALL METHOD cl_wd_utilities=>construct_wd_url
       EXPORTING
          application_name = '<Your WD application name >'
       IMPORTING
          out_absolute_url = lv_root.
    This will give you the root URL , then you need append taht with teh parametres like following
    concatenate lv_root '?sap_boid=' lv_boid '&sap_publ=' ls_header-bid_type   into lv_root.
    and then you can fire an external window with the values
      lo_cmp_api = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_cmp_api->get_window_manager( ).
      lo_ext_win = lo_window_manager->create_external_window(
                                       url = lv_root
                                       title = 'MyApplication' ).
    Thanks
    Anzy
    (Award points for useful answers )

  • How to read data from versc flat structure

    I get  result table from FM in that table  flat structure is included (i.e. VERSC) , so i have to read data from versc
    so please guide me.
    Thanks,
    Regards.
    Subodh G.

    hi,
    can u be clear.
    if possible .  paste the code. it vil be very useful to understand.
    Regards,
    Sabari

  • [JS CS5] unlink story from its inCopy file

    How do I accomplish with a script the equivalent of clicking on a story in the assignments panel and going to "Unlink content" in the assignment panel's options menu?
    What I want to do is
    myStory.lockState = LockStateValues.NONE;
    but this is not the way to do it because lockState is a Read-only value. I could not find a method of the story object that allowed me to set the lockState.
    Any ideas?

    myStory.itemLink.unlink()
    Harbs

  • How to unlink email from contact?

    I am trying to unlink a friend's email from her contact that is on my phone and cant seem to get it right

    Okay, that is a completely different issue. You mentioned email to start with, not iMessage. Have your friend follow the instructions in this support document. http://support.apple.com/kb/TS5185  This has nothing to do with you. You do not need to make any changes on your end, they do.

  • How to copy documents from SOLAR02 configuration structure into Solution

    Hi,
    in SOLOA02 we have stored our cross scenario configuration in the solution structure on top level node 'configuration' as described in the help 'Implementation and Upgrade Projects'->'projects'->'configuration'->'Edit cross scenario configuration'.
    During hand-over from project to support I want to copy the information stored under configuration into our solution directory (TC SOLUTION_DIRECTORY). In the solution structure there is no top level node 'configuration'. Only 'Org Unkits, Master Dtaa, Business Scenarios, Interface Scenarios, Systems, Servers.
    Can I customize the default solution structure and add the missing node? Is there another way to copy the documents?
    Best regards,
    Peter

    Hi Peter,
    the only way to relate the configuration structure from a project to a solution is via a maintenance project. You need to assign a maintenance project to your solution (on the solution settings tab). This will create a solution node in the maintenance project. You can now copy the configuration structure from your implementation project to the configuration structure underneath the solution node of the maintenance project.
    Best regards,
    Michael

  • How to wake ipod from its funk?  only shows start screen then dies

    MY ipod won't turn on, charge up, or show up on my G4 laptop or in itunes. I try resetting it, but as soon as the start screen comes up it dies. If I plug it in, it lights up brightly and shows the start screen, then won't do a darn thing but show the start screen. When I disconnect it, it still has no battery no matter how long it was plugged in. I have the latest updates in itunes and osx. What's the deal?
    Any help would be great.
    Thanks

    If you have had your ipod for a long time or maybe even if it is new, you may need a new battery!
    I recommend calling apple or maybe this link might help:
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=40A 4EF0E&nplm=TL193LL/A
    [email protected]
    ravensfan3jt

  • Mac died, how to unlink iPhone from it?

    Hi,
    My iPhone was syncing with my old Mac, but the old Mac died.
    I plugged the iPhone into my new Mac and it won't let me drag anything onto it without setting up syncing with the new computer.  But it wants to wipe out everything and start over.
    Is there a way to make the iPhone independent of any Mac?
    Thanks

    Thanks for the reply roaminggnome, that helps.
    If I wipe it out, I'll lose all my app settings, text message history, etc etc.
    I would like to make the iphone independent of any Mac, like if you bought a new phone and set it up without Mac/iTunes.
    Is that possible?
    NOTE:  I did a "restore from iCloud backup" the other day, it worked great BUT when I plugged it into another Mac it still is linked to that dead iMac.  bummer!

Maybe you are looking for