How to get Functional Location of a Workcenter?

Hi there,
I am looking for a function that brings me the functional location to a given workcenter of an operation (production order).
In our case this is a one-to-one relation. In transaction IL03 I can see the workcenter on Location-tab. But how to get this functional location only with a work center that I know?
How is this possible?
Kind regards
JetGum

check if this [works>>>|http://www.sap-img.com/abap/customized-work-center-list.htm]

Similar Messages

  • How to get the location of the browser?(pt_BR, en_US, es_ES...)

    How to get the location of the browser?
    example: pt_BR, en_US, es_ES...

    Hi Eduardo Cordeiro,
    Sorry in reaching you late...I was out on a trip...
    You need to put the javascript in your Flex application html wrapper file ...in which your  Flex application SWF is embedded.
    Write the Javascript function in your html file as below :
    function getBrowserLanguage()
      var browserLanguage = navigator.browserLanguage;
      return browserLanguage;
    //In your mxml File you can access the JavaScript function in your MXML as below:
    var browserLang:String  = ExternalInterface.call('getBrowserType');
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • Using Personnel number how to find functional location

    Hi All,
    Using personnel number how to find functional location.
    Regards,
    Maheedhar

    Hi,
        Please check in HRP1001 with OTYPE = 'P' objid = pernr and sclas = 'IE' ... get SOBID and get the description for this
        SOBID from HRP1000.
    Regards,
    Srini.

  • How to create functional location for IE02

    hi all,
    can anyone please tell me that how to create functional location for IE02?
    Regards saurabh.

    To attach a functional location to an equipment, please make sure the following settings,
    1- You have defined the installation allowed at functional location for the following equipment category.
    2- Make sure status of your equipment is AVLB not ESTO.
    then Goto IE02 in the structure tab ---> click change installation location and install the functional location.
    Regards,
    EJ

  • How to get function code of enter button in bdc manually

    hi
    i need to know how to get function code of enter button in bdc manually like in screen i want to capture techincal infor of enter buttion and itd fucntion cod ehow can i get it i mean what is the key in keyboard to display that
    i want to capture enter button and for eg status button etc funtion code
    pls suggest
    arora

    Hi,
    Want you need to do is go to transaction SHDB and record the bdc for the transaction you want, during transaction press the buttons for which you want the bdc code. And after this go press the back button and check the list of all the things recorded in Recorder.
    And for SHDB help check this link:
    http://abaplovers.blogspot.com/2008/02/recording-bdc-using-transaction-shdb.html
    Hope this helps.
    Regards,
    Qamar.

  • How to get the location of the JMenuItem on the screen in actionPerformed

    How can I get the location of the JMenuItem on the screen in actionPerformed.
    When I use the function getLocationOnScreen() on JMenuItem or the object retruned by getComponent() I get IllegalComponentStateException.
    I have figured out that inside actionPerformed the parent of the JMenuItem which is JPopupMenu (that contains the JMenuItem) is not visible anymore (its isVisble() function returns false).
    Then how can I get the location on the screen of the JMenuItem or it�s popup menu such that I can use it in subsequent call to SwingUtilities.convertPoint(JMenuItem, int x, int y,frame), as I need to display a modal dialog box relative to the position of the popup menu in it�s frame.
    Regards,
    Janusz

    Thanks for reply.
    Unfortunately I have to figure out the location of the menu from within actionPerformed handler. At that point of time it is too late to overwrite JMenuItem. I probably could do some severe surgery in the code to implement my own JMenuItem derived class & overwrite processMouseEvent and pass the location attribute somehow to actionPerformed handler � but I am looking for some solution that would not require changes to the code outside actionPerformed handler.

  • How to get the location of a jarfile in the java 1.6 cache

    In 1.5 i am using getResource() to get the location of the jarfile i need, but in 1.6 this does not work anymore. I found a webpage with a workaround for this, but unfortunately i did not bookmark it and i can't find it again. Does anybody know how to get a file url instead of an http url to the jar file?
    I need the location to this jarfile. There is no other workaround and please DO NOT respond and tell me, that i don't need the location in the cache! I read all threads on the java forums to this issue and i didn't find a good answer.

    java.io.File class can be used.
    File f = new File("filename");
    S.O.P(f.canRead());
    S.O.P(f.canWrite());You can set the attribute using Runtime class.
    Runtime r = Runtime.getRuntime();
    Process p =r.exec("attrib -r file");If you are working with unix,
    r.exec("chmod -permissionoptions file");

  • How to get the location of a pageitem when there are pageitems with same UID?

    There are two text frames with same UID but on different pages( also defferent spreads ). What I want to know is how I can get the location of them both.
    The following code can only get the location of the first frame because the second frame has the same UIDRef with the first one(because they are in one document with same UID) .
        InterfacePtr<IGeometry> splineGeo(ItemRef, IID_IGEOMETRY);
        PMMatrix itemPMMatrix = ::InnerToPasteboardMatrix( splineGeo );
        PMRect  itemPMRect = itemGeo->GetStrokeBoundingBox( itemPMMatrix );
    Is there any way I can get the second frame location?
    Thanks a lot.

    No.
    Just copy the pageitems from master page to document page.

  • How to get the location of the last click.

    What I can't seem to figure out how to do is get the location of the last click. I'm not setting anything by using the click im using the click to test boundaries. Basically if I click within this area this happens if i click within this other area something
    happens, etc. Thanks for your help! Also feel free to say an easier way to do this if you know one.

    Your description about your issue is very vague but you could for example handle the MouseLeftButtonDown event for the "area" and then use the MouseEventArgs.GetPosition method to determine the coordinates of the mouse click relative to some element,
    e.g.:
    private void Canvas_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    Canvas canvas = sender as Canvas;
    Point p = e.GetPosition(canvas);
    double x = p.X;
    double y = p.Y;
    <Canvas Height="100" Width="100" Background="Red" MouseLeftButtonDown="Canvas_MouseLeftButtonDown">
    </Canvas>
    Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

  • How to get the location of the caret?

    Hello
    I want to get the location of the caret. Not the offset of the document.
    I have tried the Caret.getMagicCaretPosition(), but I think it gives me a point in viewport.
    How can I get the absoult location of the caret(the location on screen ,not in viewport)?
    Thank you very much.
    Best wishes

    Thankyou ,You reply seems to help me ,but I am still confused that this method returns void ,how can I get the result of the point on screen?
    When I want the caret location (the caret belongs to a JTextPane) on screen, I invoke :
    SwingUtilities.convertPointToScreen(textPane.getCaret().getMagicCaretPositon(),textPane);
    but how can I get the result of the convertion?
    Thank you!

  • How to get Function Area (or Cost Center) from COSP ?

    Dear experts,
    I am new to FICO and here is one question need your help:
    Now I have table COSP, can anybody let me know how can I get Function Area through joining some other table?
    Or how to get the cost center from COSP, since I know then I can go to CSKS to find the function area.
    Any post would be appreciated and thank you all in advance!
    Tim
    Edited by: ctsiszidane on Feb 12, 2011 4:07 AM

    Ajay,
    Thanks for your reply.
    Actually this is a requirement for our BW system. I checked all the records to find their OBJNR start with "OR", but we need to get the function area information. Do you know how can I get that?
    The link below listed all the fields we have on BW side, actually it has function area, but it returns blank, we tried to apply one OSS note in the source ECC system, but still no value returned for this field. So we have to find another way to get the function area.
    http://help.sap.com/saphelp_em70/helpdata/en/29/5f4cf98c9141488cda37e173549834/content.htm
    Point has been assigned to you and thanks for your time in advance!
    Tim
    Edited by: ctsiszidane on Feb 12, 2011 6:39 AM

  • CallableStatement,  how to get function result ?

    Hello all,
    I know that this issue more relevant to JDBC, but it seems that their forum is more "sleepy" than that one therefor i trying my luck here with you...
    I've a pl/sql function which get 2 int arguments, and return float result
    I use CallableStatement in order to execute pl/sql function.
    with CallableStatement.setInt i transfer argument to the function,
    but i dont know how to "catch" function result (as i said earlier, function results is float)
    any help here...
    Thanks
    Edited by: igalep132 on Nov 21, 2009 4:47 AM

    igalep132 wrote:
    If you do have a PL/SQL function (specific syntax in PL/SQL) then you use the following form from the javadocs.
    {?= call <procedure-name>[(<arg1>,<arg2>, ...)]}
    [http://java.sun.com/javase/6/docs/api/java/sql/CallableStatement.html]
    that's exactly what i did, but my teacher assistant told me that it's wrong, because CallableStatement uses for stored Procedures, but I have here a function (because it returns a value...) therefor i need to use PrepareStatment/Statement...Third person accounts are always hard to judge, but what you are claiming is wrong (whether the TA said it or not.)
    First a prepared statement can in fact be used to run either a proc or function. So can statement for that matter.
    However callable statement is provided as a convenience to run procs and functions.
    There can however be reasons why a driver doesn't allow that - I have used a driver that didn't support callable statements at all (procs or functions.)
    That said the the format I gave you is specifically modeled for functions.

  • How to get Folder Location by just providing folder name ?

    Hi,
    I want to get folder location by providing its name.
    I created one folder on "E:\" drive and when I used following code in netbeans it giving me the current loaction of java file.
    File directory = new File("SVN");
            boolean isDirectory = directory.isDirectory();
            if (isDirectory) {
                // It returns true if directory is a directory.
                System.out.println("the name you have entered is a directory  : "  +    directory); 
                //It returns the absolutepath of a directory.
                System.out.println("the path is "  + directory.getAbsolutePath());
            else {
                // It returns false if directory is a file.
                System.out.println("the name you have entered is a file  : " +   directory);
                //It returns the absolute path of a file.
                System.out.println("the path is "  +  directory.getAbsolutePath());
        }And i got following output
    the name you have entered is a file  : SVN
    the path is C:\Users\AjayS\Documents\NetBeansProjects\TestCodes\SVNBut my folder is located on "E:\" drive.
    Regards,
    Ajay

    You will have to search for them. But that indicates something seriously wrong with the requirement. In effect you're using the local filename as a secondary key but there is no index on it. You should consider a database.

  • How to get the Location of the Device

    hi all,
    I want to find out the Location of the MObile device.
    I am trying to find out with the help of the Location API which was available in the CLDC 1.1.I am using the following code to get the Location
    try{
         Criteria cr = new Criteria();
         cr.setHorizontalAccuracy(500);
         LocationProvider lp = LocationProvider.getInstance(cr);
         Location l = lp.getLocation(60);
         Coordinates c = l.getQualifiedCoordinates();
         if(c!=null)
         double lat = c.getLatitude();
         double alt = c.getAltitude();
         double lon = c.getLongitude();
         locate = c.convert(alt,1);
    }catch(Exception e){System.out.println(e);}
    I used a seperate thread to get the Location.The thread was running it was not diaplying any value(in the Emulator).Can anybody tell me the possible output when we use the Emulator.
    Please help me,Thanks in advance
    Lakshman

    hi,
    Even though the Nokia was the leaders of the JSR 179.but the Specification were developed by the sun.So to my knowledge the device which will support CLDC 1.1 will support my code.
    at present i had a Blackberry 7100t,I have to check whether the device support the CLDC 1.1
    can anybody please tell me what are the mobile devices that support the CLDC1.1?
    lakshman

  • How to activate functional location replication

    Hello all,
    I have activate user exit and equipment replication.  This is working fine except that I have all my equipment linked to a functional location and that this one is not replicated so in CRM I have one installed base by equipment instead of having one Installed base for my functional location and component object below this one...
    Can anyone help on this??
    Thanks
    Monica

    Hi Monica,
    Unfortunatelly, these fields are not mapped in the standard system. 
    According to standard design while downloading equipments from   
    R/3 to CRM the atributes of three set types namely COM_TA_R3_ID, 
    COM_TA_MANUFAC and COMM_PR_SHTEXT will be filled. Since functional
    location in not an attribute of above settypes, it will not be   
    mapped and so you cannot view it in Ibase component details.                                                                               
    For downloading additonal data you can use the BAdI call trx. SPRO                                                                               
    => Customer Relationship Management                                    
    => Master Data                                                         
    => Installed Base                                                      
    => Replication of Equipment from SAP ECC Customer Service (CS)                                                                               
    Escpecially the  IMG activity will guide you and also you can find a   
    example implementation in class CL_EXM_IM_CRM_EQUI_LOAD.                                                                               
    To bring the missing fields to CRM the method "ENLARGE_SET_TYPES" should
    be used.             
    Hope this helps to solve your issue.
    best regards,
    Johannes

Maybe you are looking for

  • Unable to check the PDS in transaction /sapapo/curto_simu

    Hello Experts, I am using BAPI 'BAPI_PDSSRVAPS_SAVEMULTI' to create the PDS, i can see the pds getting created in /sapapo/trprod and as well i am able to get the PDS details through 'BAPI_PDSSRVAPS_GETLIST', But using Transaction '/sapapo/curto_simu'

  • Photoshop Album and Controls

    I recently upgraded my photo editing capabilities  from Adobe Elements (ADE) 2 and Adobe Photoshop Album (ADA), Version 1.5 to ADE  9 with my recent purchase of a new PC with Windows 7. I recently made my first  slide album with ADE 9. I have one que

  • Problem registering jdbc driver in jar

    My java oracle program runs fine as a class. (java myclass) But when I run the program as an executable jar (java -jar myclass.jar), a statement like Class.forName("oracle.jdbc.driver. OracleDriver"); throws the ClassDefNotFound exception, in other w

  • Date selection

    I need to create a start/end date selection area with the following radio buttons o last week o last month o last quarter o last year o custom dates start date: mm/dd/yyyy end date: mm/dd/yyyy Depending on which radio button is selected, the 2 start/

  • How to use flex 4 component inside Flex 3 custom component

    <?xml version="1.0" encoding="utf-8"?> <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"   > // I would like to use the namespaces below so that I can use some of the Flex 4 components in this mx:VBox component. // Note that this is a custom compone