Report to generate the list of plants and there addresses

Hi,
I have a list of plants uner a particular compnay code.Can I generate a report to that shows all the plants and their addresses?
Regards,
Saurav

HI,
Please discuss with your technical team to develop a report.
Regards
Ram

Similar Messages

  • Query to reterive the list of parameters and there values for scheduling

    I am develeoping a web application using java sdk want to reterive a parameter list for scheduling.
    i want a query that will reterive the list of parameters
    as we see on the parameters screen in CMC when we schedule the report.

                   // Loop through the parameters to get the parameter names and parameter values.
                            for(int i=1;i<=numberPrompts;i++)
                           // Each prompt has the name SI_PROMPT + a digit starting from 1.  For example, if
                           // there are 2 prompts, the first one would be called SI_PROMPT1 and the second
                           // one would be called SI_PROMPT2.
                       IProperties prompt = (IProperties)siPrompts.getProperty("SI_PROMPT"+i).getValue();
                           // Get the parameter name.
                       String promptName = prompt.getProperty("SI_NAME").getValue().toString();
                           // Start displaying a row.
                           out.println("<tr>");
                              // First column in the row is the parameter name.
                       out.println("<td>Parameter Name = "+promptName+"</td><td><table>");
                           // Get the current values property bag.
                       IProperties currentValues = (IProperties)prompt.getProperty("SI_CURRENT_VALUES").getValue();
                           // Get the number of values for this particular parameter.
                           int numberValues = ((Integer)currentValues.getProperty("SI_NUM_VALUES").getValue()).intValue();
                           // Loop through all of the values for this particular parameter.
                           for(int j=1;j<=numberValues;j++)
                               // Print out the values.
                            // Each value has the name SI_VALUE + a digit starting from 1.  For example, if
                            // there are two values, then the first value would be called SI_VALUE1 and the
                            // second value would be called SI_VALUE2.
                        IProperties currentValue = (IProperties)currentValues.getProperty("SI_VALUE"+j).getValue();
                            // Check for the existence of the "SI_MIN" and "SI_MAX" properties.
                            // If it exists, then display the value.
                            if (currentValue.getProperty("SI_MIN") != null && currentValue.getProperty("SI_MAX") != null)
                                     // The SI_MIN and SI_MAX properties exist.
                                if (currentValue.getProperty("SI_MIN").getValue() != null && currentValue.getProperty("SI_MAX").getValue() != null)
                                    // The properties have values.
                                 // Get the SI_MIN property bag.
                                 IProperties minRange = (IProperties)currentValue.getProperty("SI_MIN").getValue();
                                 // To store the minimum and maximum values.
                                 String minValue = "";
                                 String maxValue = "";
                                 // Get the SI_DATA property of the SI_MIN property bag.
                                 // First verify that SI_DATA exists.
                                 if (minRange.getProperty("SI_DATA") != null)
                                                // SI_DATA exists within SI_MIN
                                     if (minRange.getProperty("SI_DATA").getValue() != null)
                                         // SI_DATA has value so set the minValue to this.
                                      minValue = minRange.getProperty("SI_DATA").getValue().toString();
                             // Get the SI_MAX property bag.
                             IProperties maxRange = (IProperties)currentValue.getProperty("SI_MAX").getValue();
                             // Get the SI_DATA property of the SI_MAX property bag.
                             // First verify that SI_DATA exists.
                                 if (maxRange.getProperty("SI_DATA") != null)
                                     // SI_DATA exists within SI_MAX
                                     if (maxRange.getProperty("SI_DATA").getValue() != null)
                                         // SI_DATA has value so set the maxValue to this.
                                      maxValue = maxRange.getProperty("SI_DATA").getValue().toString();
                             // Print out the Minimum and Maximum values for the parameter.
                             out.println("<tr><td>Range " + j + " Min Value " + minValue + " Max Value " + maxValue + "</td></tr>");
                                else
                                    // The SI_MAX and SI_MIN properties exist, but they don't have values.
                                 out.println("<tr><td>The SI_MIN and SI_MAX properties exist, but they don't have any values.</td></tr>");

  • Script needed to generate a list of paragraph and character styles from the Book Level

    Hello,
    I am using FrameMaker 11 in the Adobe Technical Communication Suite 4 and I need to find a script that will generate a list
    of paragraph and character styles from the book level.
    I am working with unstructured FrameMaker books, but will soon be looking at getting a conversion table developed
    that will allow me to migrate all my data over to Dita (1.1 for now).
    Any thoughts, ideas on this is very much appreciated.
    Regards,
    Jim

    Hi Jim,
    I think the problem you are having with getting a response is that you are asking someone to write a script for you. Normally, you would have to pay someone for this, as it is something that folks do for a living.
    Nonetheless, I had a few minutes to spare, so I worked up the following script that I believe does the job. It is very slow, clunky, and totally non-elegant, but I think it works. It leverages the book error log mechanism which is built in and accessible by scripts, but is spendidly unattractive. I hope this gives you a starting point. It could be made much more beautiful, of course, but such would take lots more time.
    Russ
    ListAllFormatsInBook()
    function ListAllFormatsInBook()
        var doc, path, fmt;
        var book = app.ActiveBook;
        if(!book.ObjectValid()) book = app.FirstOpenBook;
        if(!book.ObjectValid())
            alert("No book window is active. Cannot continue.");
            return;
        CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
        CallErrorLog(book, 0, 0, "** Book format report for:");
        CallErrorLog(book, 0, 0, book.Name);
        var comp = book.FirstComponentInBook;
        while(comp.ObjectValid())
            path = comp.Name;
            doc = SimpleOpen (path, false);
            if(doc.ObjectValid())
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, doc, 0, "");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Paragraph formats:");
                fmt = doc.FirstPgfFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextPgfFmtInDoc;
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Character formats:");
                fmt = doc.FirstCharFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextCharFmtInDoc;
            else
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "!!!  Could not open: " + comp.Name + " !!!");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
            comp = comp.NextComponentInBook;
    function CallErrorLog(book, doc, object, text)
        var arg;
        arg = "log ";
        if(book == null || book == 0 || !book.ObjectValid())
            arg += "-b=0 ";
        else arg += "-b=" + book.id + " ";
        if(doc == null || doc == 0 || !doc.ObjectValid())
            arg += "-d=0 ";
        else arg += "-d=" + doc.id + " ";
        if(object == null || object == 0 || !object.ObjectValid())
            arg += "-O=0 ";
        else arg += "-O=" + object.id + " ";
        arg += "--" + text;
        CallClient("BookErrorLog", arg);

  • How do I uninstall iCloud from my Windows 7 PC?  It isn't in the list of programs, but is in the list of Features and Programs.

    I hope someone can help me to remove iCloud from my Windows 7 PC.  For some reason I can't use it, because I can't login.  No matter what I do to reset my info, it won't allow me in.  I want it gone, for it is to much of a hasel.  It isn't listed in Features and Programs, but is in the liste in the Control Panel.

    I installed I cloud on my windows & Pro desktop PC.  I went into Programs and deinstalled the application.  WHen I open Internet Explorer.....Kaspersky opens a green surround window and takes me to www.icloud.com!   I no longer have the applications installed!
    If I close the window Kaspersky opened and go the the web address, and click on a button to download an audio interview, the site wants to ONLY dowload i-tunes version of the audio file.
    I deinstalled i-tunes and still the site only want to send me the i-turnes version of the audio file!!!
    I do not want to be constantly bothered by Kaspersky opening the green surround Internet Explore window and taking me to www.icloud.com.   I do not want to have web sites only offering to send me i-tune audio files.
    For both my I-pad Air and my I-pod Ver 5 I have gone into settings -icloud and gone to the bottom of the list and turned icloud off.
    My problem is in on my desktop PC.   I do not want to have Kaspersky generate the green surround window and take me to www.icloud.com.     
    Will someone PLEASE help me.  I so wish I had never installed Icloud.
    thank you.

  • A report which shows the purchase order MM and the linked vendor invoice

    Hi All,
    I wonder if ther's a SAP standard report which shows the purchase order MM and the linked vendor invoice (the FI document)  with the Net due date.
    Could anyone help me?
    Thanks
    G.Rossi

    Hi,
    ME80FN with PO History View
    ME2N with Scope of List "ALLES"

  • Report on power generation from each plant and shift wise(PP report)

    Hi,
    i got one  Functional spec on pp module. this FS main object is calculate the daily smelter performance.
    Based on this FS  I will make a report on POWER GENERATION FROM EACH PLANT AND  SHIFT WISE.
    so please can  anyone of you  advice to me  , is  there any standard extractors  and standard cubes or ods are there for make this report.
    Regads,
    Suresh.

    Hi,
    here i mentioned tables,fields and logic according to Fspec.
    S.no          Report Field                                      SAP Table-field                                        Logic
       1               Shift                                              AFRU - KAPTPROG                                                                       
        2              Unit                                                MKPF-VERID                                      Pass MATNR and VERID to AFPO and fetch AUFNR for all VERID and pass AUFNR to AFRU and fetch KAPTPROG and GMNGA for that particular BUDAT
      3.            Total Generation                                    -                                         ADD all the unit GMNGA for Individual KAPTPROG
      4.           Total Auxiliary Consumption                   -                                          Pass MATNR and AUFNR to MSEG and fetch the MBLNR and MJAHR. Check MSEG - MBLNR and MSEG u2013 MJAHR = MKPF - MBLNR and MKPF u2013 MJAHR
    and fetch BUDAT for that particular date and pass it those MBLNR and MJAHR to MSEG and check for movement type 201 and fetch MENGE.
    5.            Export to GRIDCO                               -                                            Pass MATNR and AUFNR to MSEG and fetch the MBLNR and MJAHR. Check MSEG - MBLNR and MSEG u2013 MJAHR = MKPF - MBLNR and MKPF u2013 MJAHR
    and fetch BUDAT for that particular date and pass it those MBLNR and MJAHR to MSEG and check for movement type 261 and check for Field SHKZG if H fetch MENGE.
    6.          Import to GRIDCO                               -                                                Pass MATNR and AUFNR to MSEG and fetch the MBLNR and MJAHR. Check MSEG - MBLNR and MSEG u2013 MJAHR = MKPF - MBLNR and MKPF u2013 MJAHR
    and fetch BUDAT for that particular date and pass it those MBLNR and MJAHR to MSEG and check for movement type 101 and check for Field EBELN and fetch the MENGE.
    7.        Smelter Consumption                                -                                            Pass MATNR and AUFNR to MSEG and fetch the MBLNR and MJAHR. Check MSEG - MBLNR and MSEG u2013 MJAHR = MKPF - MBLNR and MKPF u2013 MJAHR
    and fetch BUDAT for that particular date and pass it those MBLNR and MJAHR to MSEG and check for movement type 201 and check for Field WERKS 1400 and display  MENGE.
    8.       Net Export / Import (MW)                                   -                                      Difference between Export to GRIDCO and Import to GRIDCO
    Based on these information ,can please anyone advice to me, is there any standard extractors ,cubes and ods for make this report.
    Thanks,
    Suresh.

  • Pls advise any report to retrieved the list of  STR/ PR  cancellation.

    Hi All,
    Pls advise any report to retrieved the list of  STR/ PR  cancellation via User ID.
    Thanks
    Chandru

    Hi,
    Since the cancellation data of all STRs and PRs is kept in Change document.  Therefore, you should run Transaction S_ALR_87101238 with object class BANF and at the report output, set the filter on the Field name ''LOEKZ''.
    Cheers,
    HT

  • When logging in into yahoo mail after typing in password Firefox is adding something, login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    When logging in into yahoo mail after typing in password Firefox is adding something, probably remembered password and login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

  • Is there a way to find the list of PCs and iDevices connected to my Itunes Match?

    Is there a way to find the list of PCs and iDevices connected to my Itunes Match?

    Is there a way to find the list of PCs and iDevices connected to my Itunes Match?

  • When I unplug my headphones my music pauses. But when I plug them back in the controls won't restart the music and I must go to the list of tracks and select a new one to start again

    I have an iPhone 5 with iOS 7.04
    If I am listening to music using my Apple earphones when I pull the earphones out the music pauses as expected. However, when I go back and plug the earphones in and try to play on with the music nothing happens and I have to go back to the list of tracks and select a new one from the start.
    This also is impacting my listening to music from my iPhone on my motorcuycle audio system. The iPhone is plugged into a USB port on the bike and prior to iOS7 always resumed playing music from wherever it was in a track and displayed the music track name on the bike info panel.
    Since upgrading now the music won't start and again I have to pull the iphone out of the glovebox and go back to the list of tracks and select a new track. But the moment the power interrupts or the nav audio cuts in and switches from iPod the music pauses and doen't restart as it always did.
    Apple, what have you done?? You have basically taken the very first App that made the iPod exist and stop it functioning properly. When are you going to fix this or is there already some obscure setting that needs to be changed but that is not prominently displayed in settings anywhere? How can I make my iPhone function as an iPod properly again for my music needs?

    Nothing wrong, no panic. Some general remarks:
    a. the battery will not be charged when over 95% full; a full battery is not charged
    b. it is good for the battery to have it go down to about 50% before recharging, say once a week at least.
    c. never let the battery go down completely, so that it shuts off on its own: that is very bad for a modern smart Li battery.
    d. sometimes the old "battery calibration" procedure is advised, you should not do that.
    trick: when you click the little battery icon in the top menu bar, you also see if there is a heavy energy user running.

  • I have created a Mail List (25 adds) and it works fine, when I open Thunderbird later the list is gone and I have to create a new one. How do I save lists?

    I have been trying to work out how to use email address lists in the past few months.
    I recently managed to import all my contacts from Windows Mail on the old PC. They are now in "Address Book", there were a few in "Personal Address Book" but most were in collected Addresses.
    When I went into collected addresses and clicked New List it allowed me to create a list of the 25 or so emails required. Then I could send out the email.
    The next day I opened Thunderbird to send another email to the same list and it had disappeared.
    I have since surmised that you cannot save a list created from Collected addresses in your Personal Address book unless the addresses in the list are in your Personal Address Book.
    I will try again now I have completed the import and see if that helps.
    Any other ideas would be most welcome.

    You really should keep your contacts in your Personal Address Book.
    You can drag and drop contacts between address books.
    When sending a message, and the recipient isn't in your address book yet, Thunderbird automatically adds the recipients email address to Collected Addresses. You can turn that off though.
    To create a mailing list:
    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Create_Mailing_List

  • Report to show the list of Equipment with Attachment.

    Hi Experts,
    i have attached a file in Equipment Master IE02. Any report can show the list of equipment with attachments?
    Please advise.
    Thank You
    Best Regards

    If you are using IE02, then i think you are using object services - I have never seen a way to view these in an equipment list.  You can only view these while looking at the equipment.   If you use DMS (tcode CV01N) these will show on IE07 as well as in the notification or work order when you use this equipment.

  • Table that gives the relation between plant and company code

    Hi gurus,
    I actually have plant number and using this plant value i need to get the company code.
    Is there any table that gives the relation between plant and company code. So,that i can get the company code details.
    Thanks in advance.

    Hi Bhanuphani,
    Use  T001K  where BWKEY is the plant
    Reward if useful
    Thanks Arjun

  • Errors/warnings occurred when generating the local proxy dll and VI wrappers for web service

    Hello,
    I'm new to web services - trying to import a WSDL that was created by an outside vendor and placed on a company server.  I imported a previous version successfully.  The error I'm getting doesn't make a lot of sense to me, here it is:
    The following errors/warnings occurred when generating the local proxy dll and VI wrappers for this web service.
    Can't generate files.
    Possible reasons are:
    1. The output file(s) might be read-only.
    Remove the read-only attribute and import the Web service again.
    2. A proxy DLL that LabVIEW created under the same file path exists in memory.
    Restart LabVIEW and import the Web service again.
    I don't see any read-only attributes on the output files and I've tried restarting LabVIEW - no luck.  Any help is greatly appreciated.
    Thanks,
    Al Rauch
    Merck & Co., Inc.

    Aaron,
    I was able to successfully import and run the web services from the WSDL file in question in LV2009 on a different computer than the one on which I had the original problem.  Unfortunately I am still having the original problem on the project computer and will need to get it working there . . . still looking for a solution to that.  Apparently LV2009 is perfectly capable of importing and running this WSDL file, but there is something still in the way on the project PC.
    Thanks,
    Al

  • Query to find the list of workbooks and worksheets assiciated to those book

    Hi Gurus,
    Could you help me with the tables / Query to fetch the list of workbooks and associated worksheets names as welll.
    Thanks in advance!!
    Rgds,
    Santosh

    Hi Santosh
    The whole point of the STATS table is to allow you to query performance, who did what and when. The database itself does not keep such statistics so if you disable Discoverer's method of capturing these you have no way of knowing who did what and when.
    Without this it is impossible to say. I would strongly recommend you enable the capturing of statistics.
    The reason you cannot directly query a WORKBOOK to determine what WORKSHEETS are associated with it is because that information is stored as binary information and not in SQL format.
    Discoverer 10g has the capability of providing detailed information on the EUL. This feature is not offered "out of the box" but can be easily enabled.
    The EUL Administrator can enable the feature by completing the following steps (see also MOS Note 556932.1):
    1. Log on to SQL*Plus as the Discoverer Administrator on the machine where Discoverer Administration Edition is installed.
    2. Execute the EUL5.SQL script found in the *$ORACLE_HOME\discoverer\util* directory. (This script will create the necessary database objects.)
    NOTE: If you are using an Oracle Applications mode EUL, you must also run the eul5_apps.sql file in the $ORACLE_HOME\discoverer\util directory.   This script must be run as the EUL owner, and not the Oracle Applications SYSADMIN user.
    4. Exit SQL*Plus and log on to the Discoverer Administration Edition product (as the EUL Administrator).
    5. From the menu bar, select File | Import.
    6. Import the EUL5.EEX file from the ORACLE_HOME\discoverer directory. Once the EUL import is complete, a new business area will be created and visible called The Discoverer V5 EUL. This is the business area that provides the details on the EUL.
    EUL Management Workbooks for Discoverer Administrators
    The EUL5.EEX file also imports four pre-built Discoverer workbooks. These workbooks are automatically saved to the database during the EEX import and can be executed in Discoverer Plus, Viewer or Desktop:
    EUL Workbook Management - shows which workbooks are shared with which users. Examine worksheets to find the folders, items, joins and conditions they depend upon.
    EUL Access - This Workbook indicates if a current EUL exists in this users schema. It also displays the EUL's in other user schemas that this user can access.
    EUL Query Statistics - Find out which workbooks and worksheets are being used by whom. Examine users ad-hoc queries.
    Lineage - Hyper Drill from Discoverer to find a folder or Items Lineage in Oracle Warehouse Builder. To enable the Hyper drill, you will first need to run the Lineage.sql script.
    The Discoverer Administrator can use the pre-built workbooks or build their own EUL management workbooks by using the Discoverer V5 EUL business area.
    Best wishes
    Michael

Maybe you are looking for

  • Starling lines with the 2LIS_02_SCL extractor.

    Hi expert. I have got a problem with the schedule line purchasing extractor, 2LIS_02_SCL. I noted that the extractor extract many more lines that those present in a purchasing order. In particular, it extracts also deleted items and the corresponding

  • Integration Repository: change XSD type in data types

    Hi, we created data types for our interface where we used the XSD type float and integer. We built on that Message types and Message interfaces and used them as abstract types in a BPM scenario. During our test phase we encountered errors with these

  • Can't fast forward in QuickTime for iPhone 3.0?

    Does anyone know how to get the slider bar that allows you to fast forward a Quicktime on iPhone 3.0? On the previous version, any quicktime apps had the volume slider on the bottom, and the play timer up top, which you could slide to forward to or g

  • Missing Print Settings

    Unable to bring up Print Settings, Printer Color Management , or Copies settings on Mac with Leopard OS X 10.5.6 . I have an Epson Stylus Pro 3800 and am using Photoshop CS3 Extended. Think everything is updated for all programs, so not sure what I a

  • Grand Total with few NULL values in column.

    Hi All, In my requirement, I have few null values in the column and I have to show those null values as it is( can't use IfNull function). Can I able to grand total in such scenerio..? I am using OBIEE 11.1.1.3 Thanks, Archie