How to see ontent of other software component in one software component?

Hi All,
I would like to know, Is there any possibility to know the content of other Software component using the current Software
Component I am in?
If so then please let me know.
Regards,
Soorya

Hi,
have  a look at my blog to see how to achieve it
/people/michal.krawczyk2/blog/2005/08/26/xi-are-you-independentfrom-your-dependencies
Regards,
Michal Krawczyk

Similar Messages

  • How to see the BOM or the comsumption From one PRO. order

    hi,friends,
    i want to see what kind of the material and what quantity of material from one production order, how to do by TO?  if these informations can be known, the warehouse should do the delivery conveiently.if you know how to do,would you please tell me ?
    tks and best regards!

    Hi MG,
    What do you want exactly?
    Generally, when a PrdOrd is released a TR will be generated. You can see this in LB10 - and processing this TR from LB10 a TO will be created and warehouse workers can move the goods to production area.
    You can check the content of this TR by clicking on it in LB10 or you can use LB03+TR no. as well.
    If your production order release doesn't trigger a TR but you use LP10 to create TR for pick part.
    You can also disply your PrdOrd in CO03 and choose menu > Goto > WM pick list. Or you can also use
    the 'Components' icon.
    If you want to get information of consumption concerning a particular PrdOrd please use MB51 (you can use the PrdOrd field as filter criteria within the report) or CO03 (> menu > Goto > Documented goods movements).
    Please clarify your question.
    BR
    Csaba

  • How to see my code drawing a line from one point to another

    hi, im wondering if you could help me.
    i am working on my project which is to visualise travelling salesman heuristics.
    i have managed to make my first heuristic work, but my problem is that when i clicked the run button on my GUI,
    the output is already a complete tour with all the edges already drawn, but what i want is to see how it solves or draw the lines from one vertex to another just by clickin the run button once.
    would be great if you could advice me of what method or technique i need to use to see my application solving the tour or drawing the edges.
    below is my cofe for drawing the edges from one point to another
      void drawLineNNh(Graphics g){
             Graphics2D g2 = (Graphics2D) g;
             g2.setColor(Color.blue);
             int i = 0;
             if (P == null) return;
             else
                 for(i=0; i<P.getSize(); i++)
                 Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    below is my code for calling the above method to draw edges, actionlistererun.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();

    I AM USING SWING.
    HERE IS MY CODE, HOPEFULLY ENOUGH TO UNDERSTAND THE PROBLEM.
    class Plot extends Panel{
         public static int num;
         NNheuristic nnH;
         Closest_insertion CI;
         Points P;
         public static boolean useNNh= false;
         boolean useCI=false;
         boolean triangleDrawn = false;
         boolean CIupdate;
         void drawpoints (Graphics g)
             Graphics2D g2 = (Graphics2D) g;
             Graphics2D g3 = (Graphics2D) g;
             int i=1;
             g2.setColor(Color.red);
                    if (P==null) return;
                    else
                    while (i<P.getSize())
                         Ellipse2D.Double vertices = new Ellipse2D.Double(P.x_coor,P.y_coor[i],10,10);
    g2.fill(vertices);
    i++;
    g3.setColor(Color.MAGENTA);
    Ellipse2D.Double initial = new Ellipse2D.Double(P.x_coor[0],P.y_coor[0],10,10);
    g3.fill(initial);
    System.out.println("No. of Vertices: " + P.getSize());
    for(int k = 0; k < P.getSize(); k++)
    System.out.println("x coordinate: " + P.x_coor[k] + ", " + "y coordinate :" + P.y_coor[k] );
    // System.out.println("next:"+ P.x_coor[k+1]);
    triangleDrawn = false;
    void drawLineNNh(Graphics g){
    Graphics2D g2 = (Graphics2D) g;
    g2.setColor(Color.blue);
    int i = 0;
    if (P == null) return;
    else
    for(i=0; i<P.getSize(); i++)
    Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen[i]]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void set (Points p)
    P=p;
    useNNh = false;
    useCI = false;
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    void frame (Graphics g)
    g.setColor(Color.white);
              g.fillRect(0,0,size().width,size().height);
              g.setColor(Color.green);
              g.drawRect(0,0,579,280);
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    else if(useCI)
    if(!CIupdate)
    drawTriCI(g);
    else
    drawRestCI(g);
    // drawLineNNh(g);
    public void clear ()
         // remove the points and the graph.
    P=null;
    triangleDrawn = false;
    code of my GUIpublic class TSP extends JFrame{
    JButton run;
    ...................codes...........
    TSP() {
    ...............................codes...........
    run = new JButton ("Run");
    run.setPreferredSize(new Dimension(113,30));
    run.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();
    else if(chooseHeur.getSelectedItem()=="Closest-Insertion")
    PlotArea.setC_I(points);
    PlotArea.repaint();
    pane2.add(run);

  • How to see Active customers that are having atleast one Sales Order?

    Dear Friends,
    How can we see all active customers in the system, means customers those are having atleast one sales order.
    How to see

    It depends on which role this customer might have on the sales order. If it's a Sold-to, then you can run a query by VBAK-KUNNR, otherwise VBPA table will have all other partner types (use POSNR = 000000 to see only the header-level partners). Most likely there will be a lot of records. You might want to run the query in batches or limit the selection. Then download the results to Excel and there you can delete the duplicates and get a list of the unique customer numbers.
    MCTE will help only if the corresponding info structure (S003) is being updated correctly. Also it has only sold-to customers.

  • Firefoox will not see my default network printer. it see's all other printers except that one. why not?

    firefox will not see my artisan 810 network printer and allow me to select it from the available printers. why not?
    == This happened ==
    Every time Firefox opened
    == un known

    Thank you. That's what I thought will need to happen.
    One more question. I tried using the Apple install disk that came with the computer. It's an OS 10.5.6 disk. It does not see my 10.6.8 system internal hard drive to repair. All it see's is itself 10.5.6 disk. Do you think I can use a 10.8+ disk utillity since that is a higher system it will see the 10.6.8. Where the 10.5.6 does not?
    I don't want to turn the computer off for fear I'll get the question mark again. P-Ram got me going last time but for how long I don't know?  It would be nice to be able to turn the computer off for the night and startup as usual to give it a rest and try to reset itself.
    Thanks for your help, I know I will eventually need to re-install. But I am in the middle of a project with tight deadlines and all I can do right now is back-up. Trying to migrate to another computer temporarily to finish the job. That's a lot of extra work in the short time also.
    Just trying to put a band-aid on it for another couple weeks.

  • How to use a warehouse other than the default one?

    i need to create a sale order in different warehouse, 
    thanks

    Hi
    U can create a more than one whse. Make sure before creating the New whse whether the Tick mark is there r not in General settings in Admin-GS-Inventory-Auto add all whse to new items.
    Then in sales order go to the whse column and change the whse which u want....
    Giri

  • JDeveloper 10.1.3.2.0 - How to see content of showDetailItem in Design View

    Hello,
    I am new to use the JDeveloper to create JSF Applications and I learn with the tutorials.
    So I have a question:
    I want to find out: How to see the content of the second or third showOneTab component in the WYSIWYG Design View of a page.jspx?
    For example, I am orientating the tutorial: "Introduction to ADF Faces/Trinidad Using JDeveloper" (http://www.oracle.com/technology/obe/obe1013jdev/10131/trinidad/adf_faces_trinidad.htm)
    Page: table.jspx
    There is the showOneTab "Single Row Select" and "Multi Row Select" and I see only the content of "Single Row Select".
    How can I see the content the table2 of "Multi Row Select".
    I have created the table of "Single Row Select" and can see only this one.
    The download of that example show me in the View of structur the component table2, but not in DesignView.
    Can you help me?
    best regards
    Joachim

    Hello Frank,
    many thanks for your answer. It try it and it works!
    For completion, I think the argument "disclosed" of the component "af:ShowDetailItem" with "default" setting is "false".
    So if I will editing one tab in WYSIWYG editor, I set only this tab disclosed = true.
    All others to "false". When my edit is completed, I set only the first tab to "true" and all other "false", because I want to start with the first tab by first request.
    I look again into the "help". Hopefull in answer:
    Which effect has this argument by deployment?
    There is only the desciption: "whether or not to disclose the children This attribute is not supported on the following agent types: pda, phone, voice."
    I think this is for me irrelevant. My application have to support only a client like a personal computer.
    Which effect has this argument by deployment?
    Or is this only for the WYSIWYG editor?
    Joachim

  • How to see video 16:9?

    Hi all, using Flash Player v. 10.1.82.72 on this site: http://http://www.freddynietzsche.com/2009/11/18/quella-stronzata-della-musica-dautore/ I see the second video in a 'compressed' size. How to see it right? Thanks

    http://http://www.freddynietzsche.com/2009/11/18/quella-stronzata-della-musica-dautore/ is the link correctly copied, but actually I can't open it. I don't know how the video was created, but for sure it's compressed at the sides. I'm asking if it's possible to stretch the image in Flah Player so to have the right proportions. I know that, using other player this is possible. May I save the videos on my desktop -and how- and see them with other players? Thank you

  • Calling Inbound Plug of one Window of one Component in another WD Component

    Hi All,
        Can anyone please tell me how to call a Window's Inbound Plug of one WD Component in another WD Component.
    Thanks in advance!
    Best Regards,
    Devyani

    Hi Devyani,
        are you calling the view (embeded in a window ) of a component 1 in component 2. If so,
    1. Define the used component(Component 1) in the using component (Component 2)
    Component Use : Comp1
    Component        : Component 1(Name of the component)
    2. On action: using component usage window, window of component can be called as a pop up window in component 2
    If this is not your requirement, let me know. i will try to help
    Regards,
    Sankar

  • I have the iPhone 4. and when I updated the software to iOS6 My notifications don't make a sound anymore, the only sound that I get are text messages, or Email. I checked to see if the other apps were muted and they weren't. How do I fix this??

    I have the iPhone 4. and when I updated the software to iOS6 My notifications don't make a sound anymore, the only sound that I get are text messages, or Email. I checked to see if the other apps were muted and they weren't. How do I fix this

    You cannot update iPhone 4 to IOS 8.1.2, the highest you can update is IOS 7.1.2.
    Unless you've iPhone 4S (looks similar to iPhone 4)

  • We have 6 ipods and 1 iphone in our house. We have different itunes accounts. We use one computer. How can we share each others music? I moved everybodies itunes media folder to the public folder but when I open itunes I only see that accounts music.

    We have 6 ipods and 1 iphone in our house. We have different itunes accounts. We use one computer. How can we share each others music? I moved everybodies itunes media folder to the public music folder but when I open itunes I only see that accounts music. We need different itunes accounts. We share 1 computer but we have different user accounts on the computer.

    Adding media directly to the media folder does not make it appear in the library.  iTunes doesn't really 'look' at that folder except to go to specific files when you call upon them from a library. You have to drag new content to each user's library, that is assuming each user has their own library.

  • I had 2 games of clash of clans on 1 game centre.  Now I can only see one?  How can I find the other one?

    My kids had 2 games of clash of clans on 1 game centre.  Now I can only see one?  How can I find the other one?
    My daughter set up a game centre on her ipad.  My son, on his ipad used the same game centre log in.  He then set up his own game of clash of clans.  After my son set up his Clash of Clans, my daugher set up her own Clash of Clans using the same game centre log in on her ipad.  Both were using the Clash of Clans successfully on their own ipads using the same game centre log in. 
    One day my son signed into someone elses Clash of Clans, since then he is unable to go back to his Clash of Clans and can only see his sisters.
    Please let me know if this can be resolved.
    We wish to delete my daughters Clash of Clans - as she does not use it at all.  We would like to regain access to my sons. 
    My son can visit his Clash of Clans - his clan name is 'The Big Boys'  He has a shield that is blue with a yellow lightning from top right to bottom left.  His name is Fat Poo (I know ridiculous).
    If you can help us or advise us what to do we would make my son very happy
    thanks

    Thanks for taking a stab at it: that didn't prove to be the problem. That option in the settings for tabbed browsing was not checked.
    I may be a bit behind the times: I am used to tabbed browsing showing all the tabs it possibly can, instead of just the last one. Sometimes it won't even show the last tab: I can have 15 tabs open, and not see a single tab. I've been confused by this into closing a window with lots of tabs open, because it looks like a single page-window.
    My main problem with the tab-bar flashing to the end of the row is that it means a great deal more mouse-clicking around to browse.
    I haven't tried installing the latest beta. Maybe that would fix the problem.
    Toddo

  • My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    Hi Anthony ,
    Here is the link to connect with Adobe Chat Support.
    https://helpx.adobe.com/adobe-connect/kb/connect-chat-support.html
    Hope your query gets resolved .
    Regards
    Sukrit Dhingra

  • How to read URL parameters of one wdp component into other WDP component?

    Dear Experts,
    Can anyone let me know how to read URL parameters of one wdp component into other WDP component?
    My requirement is i have one standard WDP component with 3 URL parameters and i needto
    read that URL parameters along with their values in my Z-WDP component.
    Thanks
    SK

    Hi Santosh,
    You can read parameters send from one WebDynpro Component to another component by adding code in "HANDLEDEFAULT" Event Handler method ( Window )of your target Web Dynpro Component.
    data: lt_parameter             type tihttpnvp,
             ls_parameter             type ihttpnvp.
    lo_api_controller ?= wd_this->wd_get_api( ).
       call method lo_api_controller->get_message_manager
         receiving
           message_manager = lo_message_manager.
       clear : ls_parameter.
       refresh : lt_parameter[].
    * Read all URL parameters
       wdevent->get_data( exporting name = if_wd_application=>all_url_parameters importing value = lt_parameter ).
    if not lt_parameter[] is initial.
         clear : ls_parameter.
         read table lt_parameter into ls_parameter index 1.
         if ls_parameter-name = 'ACTION' and
            ls_parameter-value is initial.
           lv_flag = 'X'.
           clear : lo_msg.
           lo_msg = 'Action Parameter Missing in URL Link !'.
    *         report message
           call method lo_message_manager->report_error_message
             exporting
               message_text = lo_msg.
         else.
         endif.
    Best Regards
    Priyesh Shah

  • How to see the Table Names & Field Names by other than F1 help

    Hi Experts
       How to see the Table Names & Field Names by other than F1 help, & How to see the List of MM Table Names.
    Rgds

    The only option to see the active table/ field name is through F1 --> Technical Information. Apart from this, you can use any 3rd part application like GUIex (INbuilt in SAP ECC 6.0 ... can be activated by clicking on the tri-color button on the top right), but you need technical knowledge to understand the information. As far consolidated list of MM tables is concerned, SAP don;t provide you the same at one place, it experience and knowledge which help you in this regard. For your immediate reference MM tables are as under :
    EBAN  - Purchase Requisition 
    EBKN  - Purchase Requisition Account Assignment 
    EBUB   - Index for Stock Transport Requisitions for Materi
    EINA    - Purchasing Info Record: General Data 
    EINE     - Purchasing Info Record: Purchasing Organization D
    EIPA     - Order Price History: Info Record 
    EKAB   - Release Documentation 
    EKAN   - Vendor Address: Purchasing Document 
    EKBE    - History per Purchasing Document 
    EKBEH - Removed PO History Records 
    EKBZ    - History per Purchasing Document: Delivery Costs 
    EKBZH  - History per Purchasing Document: Delivery Costs 
    EKEH    - Scheduling Agreement Release Documentation 
    EKEK    - Header Data for Scheduling Agreement Releases 
    EKES     - Vendor Confirmations 
    EKET     - Scheduling Agreement Schedule Lines 
    EKETH   - Scheduling Agreement Schedules: History Tables 
    EKKI      - Purchasing Condition Index 
    EKKN    - Account Assignment in Purchasing Document 
    EKKO    - Purchasing Document Header 
    EKPA     - Partner Roles in Purchasing 
    EKPB     - "Material Provided" Item in Purchasing Document 
    EKPO    - Purchasing Document Item 
    EKPV    - Shipping-Specific Data on Stock Tfr. for Purch. D 
    EKRS    - ERS Procedure: Goods (Merchandise) Movements to b 
    EKUB    - Index for Stock Transport Orders for Material 
    EORD    - Purchasing Source List 
    EQUK    - Quota File: Header

Maybe you are looking for

  • Unknown disk2 in Disk Utility

    Hi! There ia an unknown "disk2" in Disk Utility. When I check for Information I see: Name : disk2 Type : Disk Image Disk Identifier : disk2 Media Name : Apple read/write Media Connection Bus : Disk Image Full Path : Not mounted Partition Map Scheme :

  • Best way to watch a movie with stereo headpho

    What is the best experience I can get from watching a movie using standard stereo headphones. I realize I need to test with my ears but I ask because I might need to buy cables. I have the X-fi Platinum with the console. I use a standalone dvd player

  • Server certificate verification failed: issuer is not trusted

    Tried to sign in to a couple of websites lately and got this message: Server certificate verification failed: issuer is not trusted What is going on and how do you fix?

  • FMR-40010: Cannot read form

    I have a unusual error. I have been successful running other forms from the same directory, but I have a new form (the Webutil demo form for 10g). I have configured Webutil to the letter as described in the instructions. When I attempt to run the for

  • I get error message in downloading IOS 7.03

    When I download IOS 7.03 on my Pad 2, it always crashes with an error "download failed."   Has anyone faced similar issue?  What is the solution?  Thanks for help.