Regarding review the environment

Hi All,
I would like to do an overall review the environment .
             Initial analysis of environment
             performance review
             Process chain analysis
             troubleshooting items
Please give Detailed steps how to do?.
I am waiting for your mail.
Thanks
Vasu.

Vasu,
what do you mean by environment ? do you mean review of the current BW environment?
You can start with the extracts --> data model --> masters --> ODS --> Cubes --> multiproviders --> Infosets --> queries --> templates / workbooks.
Arun
Assign points if useful

Similar Messages

  • Error while sourcing the environment file

    Hi,
    Apps 11.5.10.2
    O/S windows 2003 server
    While sourcing the environment file i am getting the following error
    E:\>oracle\prodappl\appsprod_tstoraf.cmd
    ECHO is off.
    ECHO is off.
    Wed 10/06/2010 06:45 AM
    ECHO is off.
    ECHO is off.
    This script requires the following files:
    ECHO is off.
    C:\MicrosoftVisualStudio\bin\vcvars32.bat
    ECHO is off.
    APPSORA.cmd exiting with status 1
    After this command i am running the following (i am including vc98 directory in the path)
    E:\>C:\MicrosoftVisualStudio\VC98\bin\vcvars32.bat
    Setting environment for using Microsoft Visual C++ tools.
    Actually vcvars32.bat file is under C:\MicrosoftVisualStudio\VC98\bin\vcvars32.bat directory structure
    but
    in appsora.cmd it is showing the C:\MicrosoftVisualStudio\bin\vcvars32.bat (VC98 Directory is not present in this path)
    In contextfile.xml i have not seen any path related to vcvars32.bat.
    In which file i have to change this directory structure of C:\MicrosoftVisualStudio\bin\vcvars32.bat to E:\>C:\MicrosoftVisualStudio\VC98\bin\vcvars32.bat
    please advice
    Regards,
    SRK

    Hi Srk;
    That SR was raised by my team only.
    I have gone through the doc id's given but my Visual Studio directory is more than 8 characters.So Could you please advice, instead of re-installing the visual studio? whether there is any file to change the path from If you already opened SR you have to confirm it wiht Oracle Support
    Also,If we have to re-install the Visual Studio .will be there any effect on the existing 11.5.10.2 application?I belive yes it could effect your system until your install process end.
    Please confirm all those wiht oracle support via your SR
    Regard
    Helios

  • External Midi Instruments in the Environment - Can't get things to work....

    I have a MOTU MicroExpressUSB 4INx6OUT MIDI interface that's been defined as follows in my Audio/midi Setup.
    1 - Mackie HUI (I/O)
    2 - Keyboard (I/0)
    3 - Keyboard (I/0)
    4 - Roland Elect Drum Kit TD12 (I/0)
    5 - Sound Module (0 only)
    6 - Sound Module (0 only)
    By itself (outside Logic), the interface triggers and appears to work fine
    However, in Logic it's a different story. I've read the manual backward/forward and the environment subject is very confusing and what's not clear is how the path is connected (or cabled...) I've defined multi-instruments (with actual patch names) in my environment, I have assigned ports and sub-channels accordingly and all this is fine. Patch names come thru in pull downs, but the problem is nothing is talking to the interface thru Logic.
    I've tried putting the "Port IN" object into my MIDI environment which I understand is supposed to emulate the midi interface as configured in your A/M setup. The object I got was a 4-port object that also includes a "sum" port. I'm guessing you're supposed to cable the ports to each multi-instrument assigned a port and I've done this accordingly. However, I see no way to cable the sound modules that are only Midi OUTS of my interface. This makes sense given this is a "Port IN" object, but I see no other object that would allow me to cable the outs and hence I curious how Logic will talk to the sound modules.
    The manual also talks about the "sequence" object that everything has to route thru in order for Logic to process MIDI. Since the manual is not clear on how to cable this object either I took a guess and cabled the "sequence" object to the "sum" port on the "Port In" object.
    This is as far as I've been able to get, but nothing is working and Logic is not talking to the interface because no interface indicator lights (ie: IN,OUT,trigger, etc). Picking a program from a pull down menu also does nothing.
    It can't be that hard to control external instruments, but the manual being clear as mud has not helped. I'm sure it's something to do with this crazy environment, the way things are "cabled" or defined, but I've not been able to figure it out.
    Sorry bout the book, but there's a lot of info here. Any help or insight would be appreciated.
    thanks in advance...

    I think this recent post can help you.. i hope
    http://discussions.apple.com/thread.jspa?threadID=2008908&tstart=50
    in the thread you download a file tha help a lot about environments windows
    feel free to ask for additional question
    regards
    G

  • How to chang the environment of running process in C?

    Hi All,
    I have a application written in C ( OS Solaris 10 ) actually this application runs under some pre defined and standardised environment (specific to my project ).
    Now I have requirement to access API of a library( already existing code ) in my application to perform some operations. I need to enhance my C code.
    This API ( or library ) is not compatible with the standardised environment set for my application.(standardised environment (specific to my project ))
    Can anybody please suggest me how can I set the environment (compatible to the library)while using that API (or library ) and reset to my project specific environment after the result is obtained from the new API (library ).
    To be more specific during execution of my C-Application ( Environment variable LD_PRELOAD=/usr/lib/secure/libmtmalloc.so ). I am enhancing my application to use PAM Modules ( Pluggable Authentication Modules ) PAM APIs exposed performs internally some operation and return some values to me.But inside the PAM my application is crashing during malloc operation.
    I have written a test application when it uses PAM APIs and perform the same operation under normal enviroment (uses libc for memory related function) it works fine.
    So please tell me how can I set this environment variable LD_PRELOAD to libc only during execution of this API and revert this environment variable LD_PRELOAD back to libmtmalloc after it performs this operation is done.
    Please dont tell me about the bug with libmtmalloc.so instead please provide me with some programming solution to achieve this.
    Thanks alot in advance.
    Regards,
    Rahul.

    rahulsingh wrote:
    *What do you mean "linked"? libC is dynamic (run-time) object. So your
    library will be linked with the necessary items at runtime. If mtmalloc
    is preloaded, then it may well use the mtmalloc routines.*
    By linked I mean if I that library(libraryA) during compilations process it is linked to libC ( -lC). No, that doesn't normally happen at compile time. It might check the library to see what functions are in it, but it doesn't actually take sections of libC and place them in the library.
    Instead, the run-time linker places both your library and libC (and the app, and other dynamic libraries) in memory when the app is run. LD_LIBRARY_PATH and LD_PRELOAD both affect the run-time linker in where and how it will look for libraries to load. You can see where it resolves by using 'ldd' on the app.
    This will show dynamic libraries that were required at compilation time. It is also possible for an application to explicitly grab a library via 'dlopen'. Any such files will not appear in 'ldd' output.
    Darren

  • How to identify the environment (database) Apex is running on?

    Hi
    We are going to have 3 environments here: Development, Test and Production (separate databases/servers for each one). As usual, the development process will move applications from Dev -> Test -> Prod.
    On my Apex 3 applications, I would like to visually identify, in some way, to which environment I am currently connected. For instance, displaying the name of the environment on the page header.
    My problem is how to identify what environment Apex is running on. Is there any Apex instance-level property where I can set a string and display it in my applications? Or something like that?
    What is the best way to achieve this? Any suggestions welcome.
    Thanks,
    Luis

    Luis,
    another option is to check the http environment to get this information.
    This is what we use in one of our applications:
       FUNCTION get_environment
          RETURN VARCHAR2
       IS
       BEGIN
          IF LOWER (OWA_UTIL.get_cgi_env ('SERVER_NAME')) IN
                          ('development.opal-consulting.de')
          THEN
             RETURN c_development;
          ELSIF LOWER (OWA_UTIL.get_cgi_env ('SERVER_NAME')) =
                                                       'test.opal-consulting.de'
          THEN
             RETURN c_test;
          ELSE
             RETURN c_production;
          END IF;
       END;Unfortunately, this doesn't work with Oracle XE, thus you might be better off checking the value of: OWA_UTIL.get_cgi_env ('HTTP_HOST')
    Anyway, I would also rather suggest using the table based approach, I use it in most applications now. This way you are more flexible. You can simulate all different settings in the same schema. Also, you can install development and test in the same database.
    Regards,
    ~Dietmar.

  • Am trying to download a plug-in, but am unable to download ANY plugins. I keep getting this: Unexpected installation error Review the Error Console log for more details. -203 What can I do to solve this issue?

    I am not able to download ANY plug-ins. All attempts result in the following:
    Firefox could not install the file at
    https://addons.mozilla.org/en-US/firefox/downloads/latest/10137/addon-10137-latest.xpi?src=addondetail
    because: Unexpected installation error
    Review the Error Console log for more details.
    -203

    Hi slysailr ,
    Please take a look at this article [[Unexpected installation error -203 when installing add-ons ]], it should help you out with your issue.
    Regards,
    Ziggy

  • Daemon thread still alive when the environment is closed

    I'm using the replication framework with the Java API in an OSGi container (equinox). I notice that when I'm closing the environment there is a deamon thread still alive. Each time I start a new replication environment and shut it down, one more daemon thread is added (and still running).
    Is there a way to close the replication framework and all their associated threads?
    I'm using BDB 4.7.25 - windows
    thanks
    dong

    Hi Dong,
    I don't know of a way to force the removal of the daemon thread(s).
    I believe that the thread is actually gone - as long as you are closing down the environment cleanly. The alternative to using daemon threads is to ensure that DetachCurrentThread is called by the JNI layer for each thread. Given the way the Berkeley DB Java API is implemented, that is not feasible.
    Are the additional threads causing issues?
    Regards,
    Alex

  • How to set the environment variable of csh

    Hello expert,
           I set the environment varibale of csh after I upgade the oracle 10.2.0.1 to 10.2.0.5. I added "setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/oracle/client/10x_64/instantclient" to profile ".dbenv_GVSHP101.csh" . But when I run env in my os , it showed LD_LIBRARY_PATH=/usr/sap/IDS/SYS/exe/run:/usr/sap/IDS/SYS/exe/uc/linuxx86_64:/oracle/IDS/102_64/lib:/oracle/client/10x_64/instantclient:/oracle/client/10x_64/instantclient
    . There are two :/oracle/client/10x_64/instantclient in my environment varibale. I do not why. How can I set the environment? Thanks a lot.

    Hallo,
    I don't know which O/S you are using and how your .dbenv-files looks.
    However, as quick work around you could just add the following lines to the end of .dbenv_<hostname>.csh:
    unsetenv LD_LIBRARY_PATH
    setenv LD_LIBRARY_PATH /usr/sap/IDS/SYS/exe/run:/usr/sap/IDS/SYS/exe/uc/linuxx86_64:/oracle/IDS/102_64/lib:/oracle/client/10x_64/instantclient
    Regards,
    Thomas.

  • Error: Ship to/Bill To Address is Invalid. Please review the Address Setup

    After Upgrading to 12.1.3, Orders are failing during Import/Scheduling with "Error: Ship to/Bill To Address is Invalid. Please review the Address Setup" whenever Tax Engine is called. And this is happening for only specific addresses (that are vaild). I will appreciate any experience/suggestion on this regard.
    Thanks,
    Dipanjan

    ---  Here's a skeleton structure of the PLSQL that you should use----
    l_location_rec          APPS.HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
    -----Use this to find a good address from existing TCA in Oracle, by passing only the zip code:
    SELECT hgi.identifier_value,hg.geography_element4_id
                       ,hg.geography_element1 country
                       ,hg.geography_element2 state
                       ,hg.geography_element3 county
                       ,hg.geography_element4 city
                       ,hg.geography_element5 postal_code
                 FROM apps.hz_geographies hg,apps.hz_geography_identifiers hgi
                WHERE hgi.geography_id  = hg.geography_element4_id
                  AND hg.geography_name = :pp_zip_code
                  AND hg.geography_type = 'POSTAL_CODE'
                  AND primary_flag='Y';
    -----The Update the Location
                 l_location_rec.CITY  := rec_get_geo_elements.city;
                 l_location_rec.COUNTY := rec_get_geo_elements.county;
                 l_location_rec.STATE := rec_get_geo_elements.state;
                   hz_location_v2pub.update_location (p_init_msg_list           => FND_API.G_TRUE,
                                           p_location_rec            => l_location_rec,
                                           p_object_version_number   => l_object_version_number,
                                           x_return_status           => l_return_status,
                                           x_msg_count               => l_msg_count,
                                           x_msg_data                => l_msg_data);

  • Windows could not start the Cluster Service on Local computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 2.

    Dear Technet,
    Windows could not start the Cluster Service on Local computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 2.
    My cluster suddenly went disappear. and tried to restart the cluster service. When trying to restart service this above mention error comes up.
    even i tried to remove the cluster through power-shell still couldn't happen because of cluster service not running.
    Help me please.. thank you.
    Regards
    Shamil

    Hi,
    Could you confirm which account when you start the cluster service? The Cluster service is a service that requires a domain user account.
    The server cluster Setup program changes the local security policy for this account by granting a set of user rights to the account. Additionally, this account is made a member
    of the local Administrators group.
    If one or more of these user rights are missing, the Cluster service may stop immediately during startup or later, depending on when the Cluster service requires the particular
    user right.
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Problem in activating the environment in COPA operating concern

    Dear Experts,
    I got the following message when I tried to activate the environment based on client-specific part for my newly created operating concern.
    << Inconsistency in the dictionary for the structure "KOMK_KEY_U" >>
    Does anyone know what happened?
    By the way, the data structure is successfully created.
    Regards,
    Abraham

    Hi Shanbagavali,
    I had the same error today, when I tried to activate a transferrule based on a generic datasource.
    In my case the reason was a field in the extract structure with data type "string" which is not allowed.
    After removing this field from the extract structure I could activate the transfer rules.
    Hope it helps.
    Regards,
    Stefan

  • Connection for Source failed because the environment is not trusted

    Good day all,
    This is the second time I come across this error on two different forms.
    This happens whenever I have a form connected to my database(SQL) and configured my ODBC.
    My form is Reader Extended, when I load it outside LC Designer I get this error : "Connection for Source failed because the environment is not trusted".
    I have searched for solution, one that I saw says one must change bindings from None to Normal, I've done that and didnt solve my problem.
    Can someone please assist me.
    Regards,
    Ace

    Check the two below links and see if they can be of any helpful to resolve your issue.
    In this thread Paul is asking to change the DSN setting.
    "If you set up your DSN as a system DSN instead of a user DSN then that message shoudl disappear."
    http://forums.adobe.com/message/2873482
    In the below blog, Steve is mentioning to clone the connection to get rid of the issue.
    You should be able to get around this by changing this line:
    var oDB = xfa.sourceSet.nodes.item(nIndex);
    to this:
    var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
    http://forms.stefcameron.com/2006/10/12/displaying-all-records-from-an-odbc-data-connectio n/
    Thanks
    Srini

  • How do I prepare the environment for ARD?

    I'm planning to construct the ARD environment for a small company.
    I want to know the environment what is needed for it, especially "hardware" when it will be made by minimum construction.
    The company have 30macPC on several network segments(I estimate it about 10 network segments).
    I hope someone will give me some helpful advices!

    There's no special "environment" needed, though if you plan to be observing multiple workstation screens at once, it's strongly recommended to have at least a 100BaseT Ethernet connection with a gigabit connection preferred. Otherwise any network suitable for other uses will probably be fine for ARD. For technical specifications, features and system requirements, see:
    http://www.apple.com/remotedesktop/specs.html
    You may also want to read the Administrator's Guide:
    http://manuals.info.apple.com/en_US/ARD_3.1_AdminGuide.pdf
    Note that there is no client for Windows systems. You can take control of a Windows system from ARD if you install VNC on the Windows workstation, but there will be no other functionality.
    Regards.

  • Clicking on the plus button in the environment multi-intruments

    Clicking on the plus button in the environment multi-intruments creates aux in unpredictable places..
    This is very annoying, because every way I create an aux strip I have to go around environment to search it, and if you have many many object (as I have) you can waste some time to find it...
    It would be better if any created aux appeared near the main instrument...
    Would it be so difficult for programmers?

    >
    Tim Simon wrote:
    > Which type of report is this? A Crystal Report (not sure what your question means)
    >
    There are some big differences if using say a webi report.
    I just tested on XIR2 SP4 and back forward worked fine with CR drilldown, using the sample reports.
    Could be a report design issue or something wrong with your deployment, maybe even a browser setting (not sure as I don't work reporting issues too often).
    You can wait to see if someone else has run into this or open a message with support to have an engineer take a look.
    Regards,
    Tim

  • Need to understand and review the implications of how consummables are mana

    Need to understand and review the implications of how consummables are managed in SAP - both from a material issue and from a costing perspective

    Hi,
    Consumable materials are materials that are procured directly for an account assignment object. They are not managed on a value basis in Inventory Management.
    Examples of consumable material:
    Office material like paper, pan, pencil, note books etc… assigned to a cost center
    For Procurement Consumable follow these steps........
    1. Create CCtr Std. Hierarchy with T.Code: OKKP,
    2.Create Cost Center with T.Code: KA01,
    3.Create Cost Center with T.Code: KS01,
    4.Assign Cost Element to Cost Center in T.Code: KS02,
    5.Check Field status variant and Pstng period variant in T.Code:OBY6,
    6.Create Purchase Order(ME21N) with account assignment “K” , in material text write paper, pan  and after entering details, you will get small pup up screen and enter your G/L account, what you given in creating Cost Element and ten save your purchase order.
    7. Goods Receipt in : MIGO wrt to Purchase Order
    8. Invoice Verification: MIRO wrt to Purchase Order
    9. F-53, Payment to Vendor
    Hope the above will helpful to you and reward.
    With Regards,
    Bijay

Maybe you are looking for

  • Why do the songs I just downloaded form CD not sync??

    I recently purchased a new CD and downloaded it to iTunes, as I've done numerous times. The songs appear in my library and I can play them, but when I try to sync my iPod, the songs do not show up in my iPod. They are checked, so they should be added

  • Dynamic populating object variable

    Hi Experts! I have object type:create or replace type r_attribs_t is table of varchar2(100); create or replace type r_relations_t is table of varchar2(40); create or replace type r_spatial_t is table of varchar2(100); type recfull_ot is object (    

  • IMac Moving Slower and Slower

    Hi all I have a couple of questions. Lately my iMac has been moving very slowly whereas before it was fast and efficient and I have no idea why. It seems to have started after I allowed my kid sister to download some torrents from friends. That was s

  • Report drilldown in different dimension

    Company hierarchy is split in to 3 regions.( A,B,C) Under each regions there are 10 company each (approx). Reprting requirement is such that on each region client  wants to drilldown uniquely and see the data either by product, or functional area or

  • HP ProBook 4530s AUDIO PROBLEM WIN 8.1

    Hello. I have HP Probook 4530s. After I installed Windows 8.1 update 1 the sound driver stopped working properly. When I want to play some music, video or even system sounds, sound appears after 1-2 minutes. At that time HDD usage is 100% cause of wi