Few queries regarding J3RFLVMOBVED Report

Hi all,
I have a few queries regarding the J3RFLVMOBVED Report.
First and most inconsequential, the report reads Stock Overview (Russia). So why Russia?
Second, there are two checkboxes in the selection selection screen namely,
Read List from Database
Save List to Database
When I run this report once, it takes about 10 mins to fetch the output. But if I select Read List from Database, I get the result in a matter of few seconds to a couple of minutes.
So obviously I would like to know the secret behind this magic trick.
Also, what does Save List to Database do? Im a little apprehensive of trying this option. Just dont understand what it means. Hence did not try it yet. Does it mean that it is saving to a buffer or to the database as suggested(which I feel is highly unlikely).
I did debug the program. But found it too much to comprehend - pardon my n00biness for that.
If anybody has looked at this report or a similar one, with the above checkboxes, please help me out.
pk
PS: Logging out for the day. Will respond to replies on the morrow.

Hi Amit,
The Documentation for this report can be found either in Tcode J3RFLVMOBVED by clicking on the Blue i button or by going to the report J_3RMOBVED and checking the documentation there.
This part of the documentation is pretty useful:
Options to keep / receive the report from a database.
If the option "Keep report in database" is active our report is kept in the databases table "INDX"  with the key "IM". That report can be used operatively for the further analysis.
The storing is possible on two vevels:
on a plant level
on  a company code + GL account level
In both cases storing is possible only for one period (month).
Will check out the Notes. Actually services.sap.com has problems opening in my browser. Will have to get that rectified first.
Thanks for the info.
pk
PS: Im on ECC6
Edited by: kishan P on Feb 4, 2009 4:22 PM

Similar Messages

  • A few queries regarding the beauty that is Nokia 5...

    I got this beautiful lil machine a lil over a week back. It looks lovely, and sounds even better. And even though, being a student/intern, it cost me more than my monthly salary, I am mighty pleased I got it. And despite the opposition before, it's a great hit, both at home and work. 
    Just a few queries regarding the usage from my experience so far, the answers to which I could not find in this forum and a few other review sites. [Apologies if I'd missed something.]
     1- First, the battery. It only lasts for a little over a day on full charge. From what I'd heard and read, it looked like it should last quite a bit a more, atleast 2 full days. The phone even hung up a couple of times, while recording/playing video. Upon which I had to remove and reinsert the battery. How seriously wrong is this ?
    2- How do you forcefully exit an application, if need be ? It suggests in the guide, and from the reviews I read, there's supposed to be an exit and a start button with the applications when you bring up the task manager. Where're they?
    3- There's this option where you can insert a Slideshow as your Wallpaper. But when I go to it, select the desired images, [ Tried various random images, yes ]it only shows Options and Back button, when select Back, it just goes, well, back. Nothing really happens to the wallpaper. How does that work ?
    4- This might seem like a petty issue, but it can be pretty annoying. Once you go to Options and tell it you are marking, e.g. in the Inbox or the File Manager, how do you mark multiple items, WITHOUT having to go to Options >Mark >Mark/Unmark for each item ? What's the point of having a seperate Marking option in the first place then, when I could just Move or Delete each item seperately anyway. 
    5- And last, any news on a free full version of a document viewer ? From what I looked up, it costs around US$70, which is about a quarter of the phone's purchase price itself. And that's not a modest sum, that too for a basic application such as this, for a anyone with my status.
    Just so any prospective buyer or amateur user such as myself doesn't get scared off by the seemingly long list of inquiries, the phone's an absolute pleasure to use. Specially, for someone with their first Touchscreen/Symbian experience. I got this phone after a LOT of research, both online and in the field. And it's bloody well worth it so far. 
    I know, it's a huge post, but you'd have my utmost gratitude for an accurately detailed response. Thankyou. =)
    Solved!
    Go to Solution.

    Why of course. Something happening to your phone during the process would brick it, not to mention that the attempt would install something in your phone that voids the warranty, meaning that you just made yourself a very expensive paperweight. ^_^. We're not really allowed to talk about it, other than the fact that with the above possibility, I strongly advise you not to do so. There is a way to do it without hacking it. I know of people who have managed to do it without hacking, but it was on the 5800. Hmm, ok, maybe they'll work for you too though.
    http://forum.dailymobile.se/index.php/topic,4254.0.html 
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Few queries regarding content/web content migration

    Hi All,
    i have few queries regarding migration of web site and contents (from development to test )which are not clarified after reading oracle docs.
    --> When we do site replication will the content be migrated (data files).
    --> when we migrate content will all ED and RD etc.(all web site object type be migrated).
    --> are both the step necessary for migration when we have to migrate web site.
    thanks
    -somesh

    --> When we do site replication will the content be migrated (data files).It depends how you do it. The "Site Studio Replicator" tool will not move any content, only the site structure. The "Manage Site Replication" page can be used to migrate content with the site structure but I don't recommend it for large sites, I use separate Archiver tasks for moving content. The "Backup and Restore" page stores the entire site in a ZIP file, not advisable for large sites.
    --> when we migrate content will all ED and RD etc.(all web site object type be migrated).Yes. It uses the xWebsites metadata field to identify items that belong to the site.
    --> are both the step necessary for migration when we have to migrate web site.Depends how you do it, but yes, all bits are required.

  • Few queries regarding auditing

    Hi All ,
    Greetings. I have some queries regarding auditing.
    1.How to enable auditing for create table and truncate table by a user ?
    SQL> audit table by schema_name;
    Audit succeeded.Got to know the above from :http://psoug.org/reference/auditing.html
    This got succeeded. But when i actually created a table , it did not reflect in the dba_audit_trail;
    Do i need to use the action number from here and then combine it with some other table to obtain the create table/truncate table information ?
    2. How do i check what all auditing has been enabled so far ?
    Please suggest me . I am unable to track auditing for create and truncate.
    Regards
    Kk

    In the above article that I have quoted previously it says to check the dba_audit_trail table.
    COLUMN username FORMAT A10
    COLUMN owner    FORMAT A10
    COLUMN obj_name FORMAT A10
    COLUMN extended_timestamp FORMAT A35
    SELECT username,
           extended_timestamp,
           owner,
           obj_name,
           action_name
    FROM   dba_audit_trail
    WHERE  owner = 'AUDIT_TEST'
    ORDER BY timestamp;
    USERNAME   EXTENDED_TIMESTAMP                  OWNER      OBJ_NAME   ACTION_NAME
    AUDIT_TEST 16-FEB-2006 14:16:55.435000 +00:00  AUDIT_TEST TEST_TAB   CREATE TABLE
    AUDIT_TEST 16-FEB-2006 14:16:55.514000 +00:00  AUDIT_TEST TEST_TAB   INSERT
    AUDIT_TEST 16-FEB-2006 14:16:55.545000 +00:00  AUDIT_TEST TEST_TAB   UPDATE
    AUDIT_TEST 16-FEB-2006 14:16:55.592000 +00:00  AUDIT_TEST TEST_TAB   SELECT
    AUDIT_TEST 16-FEB-2006 14:16:55.670000 +00:00  AUDIT_TEST TEST_TAB   DELETE
    AUDIT_TEST 16-FEB-2006 14:17:00.045000 +00:00  AUDIT_TEST TEST_TAB   DROP TABLE
    6 rows selected.
    SQL>Have you reviewed that table?
    You can also review the dba_stmt_audit_opts table.
    DBA_STMT_AUDIT_OPTS
    Edited by: Kerri_Robberts on Jul 15, 2011 3:11 PM

  • Few Queries regarding Message Size in XI

    Hi ,
    I have posted the same question before many times over but did not get a satisfactory reply.
    I have many  file to idoc scenarioes.
    Now the file size is large .It is a CSV or a Tab-delimited file.
    IT can grow upto 100 mb.
    DEV has 4gb of RAM
    QA and PRODUCTION have 16 GB of RAM
    INTEL DUAL CORE PROCESSOR ON EACH box.
    If I want to send a complete 60-100 mb file I run into "LOCK table overflow"
    WE have increased the table size parameter on recieving CRM system.
    recordset parameter is set for all interfaces from 500 to 5000.
    Since I am not able to send a complete file I am breaking it into chunks and sending as I do not have much choice.
    For certain interfaces where I am having large number of fields I am able to send only 2000 records per file for others about 14000 records per file.
    In order to take care of errors like "LOCK table overflow " and to automate the process I have scheduled a report 'RSARFCEX".Otherwise I'll end up putting one file at a time and wait for it to get processed (i.e. create idocs with status 64 in the recieving system.) and this takes a long time.
    I see here on sdn people are able to send a large file in one go.
    Even if I try to split a file using xi ..multimapping..extended interface determination...the works et cetra ...It fails for a file of size 6mb.
    That too after increasing the no. of work processes.
    Besides tried to follow XI tunning parameters ...but there was no change in status-quo.Finally I am using an abap program in xi which is spillting the file (in a matter of few minutes) so that file adapter can pick it up .
    I am surprised by xi system's performance  .I am not using BPM .There is content conversion on sender side.
    Would the experts on the forum please provide a solution.

    Hi deepak
    Did you check this weblog
    /people/alessandro.guarneri/blog/2006/03/05/managing-bulky-flat-messages-with-sap-xi-tunneling-once-again--updated
    and this related thread
    XML file size
    regards
    krishna
    Message was edited by:
            Krishnamoorthy Ramakrishnan

  • Few queries regarding UCM

    Hi All
    Our requirement is that we need to create around 75 custom meta data fields. We don't what this to get added to the out of the box tables.
    So my query is how do you create a custom table in UCM ( we are using oracle) and map them so that while checkin our custom fields are shows.
    Any scripts to do that is most welcome.
    Also in line with this how to use the checkin_universal service to enter values for the custom meta data in the custom tables that we created.
    Its really very urgent and any response in regard with this is higly appreciated.
    Thanks
    Chandra

    Hey Chandra,
    I have some followup questions before i can be of some help.
    1) How the checkin will be performed, will it be from the UCM web interface or from some SiteStudio page or inside some service.
    2) What would be the used of the 75 metadata fileds, will you be using them to search for the document, or they will be used to categorize
    the documents only.
    3)Where do you plan to have the table for your custom fileds, do you plan to have it inside another tablespace.
    Without answers to these i cant be of any help.
    cheers,
    sapan

  • Few queries regarding /etc/release and uname -a

    Hi,
    # more /etc/release
    Solaris 9 9/04 s9s_u7wos_09 SPARC
    Copyright 2004 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 29 June 2004
    # uname -a
    SunOS bngddia1 5.9 Generic_117171-07 sun4u sparc SUNW,Sun-Fire-V210
    1. What is "s9s_u7wos_09" ?
    2. What is "Generic_117171-07"? Is it the Kernel version?
    Please suggest.
    Thanks & Regards

    1) Solaris 9, Update (hardware release) 7, build 9
    2) Yes, it refers to patch 117171-07, which is the latest installed kernel patch.
    .7/M.

  • Queries regarding Printing in BIP

    Hi All,
    I have a requirement where the reports generated in BI Publisher needs to be directly send to the printer.The BIP is integrated to an application and we use BIP only for generting the PDF and excel reports.
    I am trying to understand how the printing works in BIP and have a few queries regarding them. Listed below
    1) The code that invokes the print functionality, is it something that resides on the server which hosts BIP?, or is it more a client side code (application that calls BIP)?
    2) Do I have explicitly set my printer properties like host name , port #..etc in the code? I saw it being done in the documentation
    ------------From BIP Documentation -------------------------
    // set IPP printer host
    req.addProperty(DeliveryPropertyDefinitions.IPP_HOST, "myhost");
    // set IPP printer port
    req.addProperty(DeliveryPropertyDefinitions.IPP_PORT, "631");
    // set IPP printer name
    req.addProperty(DeliveryPropertyDefinitions.IPP_PRINTER_NAME,
    "/printers/myprinter");
    3) Do we need to know the printer details of each user prior to printing?
    4) If the userbase is quite large, how can we set the printer properties for each individual users?. Is this a property set for each individual user?
    5) Can we extract the printer details from a client machine and send it across to BIP for it to set the property and do the printing?.
    Any thoughts ideas..and answers are welcome
    Thnx in advance
    Xs

    Hi Rajeshree,
    This is a new doc management feature of SRM 5.0.
    You can now create versions, lock the document for local modification (check-in/out).
    This requires an applet.
    You can de-activate it in SPRO.
    Rgds
    Christophe
    PS: please reward points for helpful answers

  • Few questions regarding requirements in context of SAP products

    Hello!
    I have few questions regarding Relational Database, Network Archtecture and Platform Support requirements in context of SAP products. Can someone help by answering the questions, if possible with Yes/No (and short explanation)
    a) Does your system run native to the Oracle 10g RDBMS (RAC) and database tools? If not, please explain the databases and tools supported (Yes/No)
    b) database accept binary-large-objects (BLOBs) and be referenced via the relational engine (Yes/No)
    c) standard pre-defined SQL queries and related calculations provided for use with industry standard reporting tools
    d) Deployable without using any fixed IP addresses (taking advantage of DHCP address resolution) (Yes/No)
    d)software supported on HP-UX 11.i V2 (r6) on Itanium. (Yes/No)
    e) Software supported on OS clustered servers (If mutliple products, please indicate if all are support or list areas where clustering may not be recommended and why) (Yes/No)
    Thank you!
    Regards
    A. Henke

    Hi Axel,
    I've just found your question by accident and would like to know whether you have already implemented 10gRAC in SAP environment?
    regards
    Barthez

  • SharePoint 2013 search analytics reports - 'query text' column value is empty in 'top queries by month' report

    Hi,
    We are using ContentBySearchWebPart to facilitate search through the site.
    We have used display template to format the results. We are deploying the web part on the desired page through a feature. We have below markup for web part in the elements.xml file to add the web part -
    <webPart xmlns="http://schemas.microsoft.com/WebPart/v3">
    <metaData>
    <type name="Microsoft.Office.Server.Search.WebControls.ContentBySearchWebPart, Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    <importErrorMessage>Cannot import this Web Part.</importErrorMessage>
    </metaData>
    <data>
    <properties>
    <property name="StatesJson" type="string">{}</property>
    <property name="UseSharedDataProvider" type="bool">False</property>
    <property name="UseSimplifiedQueryBuilder" type="bool">False</property>
    <property name="QueryGroupName" type="string">f5646507-4a7a-4d75-b5c4-d435b9128e2a</property>
    <property name="LogAnalyticsViewEvent" type="bool">True</property>
    <property name="SelectedPropertiesJson" type="string">["Title","Path","Description"]</property>
    <property name="PropertyMappings" type="string" />
    <property name="ShowAdvancedLink" type="bool">True</property>
    <property name="NumberOfItems" type="int">10</property>
    <property name="EmitStyleReference" type="bool">True</property>
    <property name="ShowPreferencesLink" type="bool">True</property>
    <property name="ServerIncludeScriptsJson" type="string">null</property>
    <property name="IncludeResultTypeConstraint" type="bool">False</property>
    <property name="Height" type="string" />
    <property name="MaxPagesBeforeCurrent" type="int">4</property>
    <property name="ResultType" type="string" />
    <property name="ShowDidYouMean" type="bool">False</property>
    <property name="StartingItemIndex" type="int">1</property>
    <property name="AlwaysRenderOnServer" type="bool">False</property>
    <property name="GroupTemplateId" type="string">&#126;sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/Group_Content.js</property>
    <property name="ResultTypeId" type="string" />
    <property name="ItemTemplateId" type="string">&#126;sitecollection/_catalogs/masterpage/Display Templates/Search/Item_LearningGroup.js</property>
    <property name="AllowConnect" type="bool">True</property>
    <property name="HelpUrl" type="string" />
    <property name="ResultsPerPage" type="int">10</property>
    <property name="RenderTemplateId" type="string">&#126;sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/ListWithPaging.js</property>
    <property name="AllowEdit" type="bool">True</property>
    <property name="AllowZoneChange" type="bool">True</property>
    <property name="AddSEOPropertiesFromSearch" type="bool">False</property>
    <property name="AdvancedSearchPageAddress" type="string">advanced.aspx</property>
    <property name="HitHighlightedPropertiesJson" type="string">["Title","Path","Author","SectionNames","SiteDescription"]</property>
    <property name="TitleUrl" type="string" />
    <property name="EmptyMessage" type="string" />
    <property name="ShowBestBets" type="bool">False</property>
    <property name="ShowViewDuplicates" type="bool">False</property>
    <property name="AllowHide" type="bool">True</property>
    <property name="BypassResultTypes" type="bool">True</property>
    <property name="Description" type="string">Content Search Web Part will allow you to show items that are results of a search query you specify. When you add it to the page, this Web Part will show recently modified items from the current site. You can change this setting to show items from another site or list by editing the Web Part and changing its search criteria.As new content is discovered by search, this Web Part will display an updated list of items each time the page is viewed.</property>
    <property name="ShowSortOptions" type="bool">False</property>
    <property name="ExportMode" type="exportmode">All</property>
    <property name="AllowMinimize" type="bool">True</property>
    <property name="ShowPersonalFavorites" type="bool">False</property>
    <property name="ChromeType" type="chrometype">None</property>
    <property name="ShowPaging" type="bool">True</property>
    <property name="ChromeState" type="chromestate">Normal</property>
    <property name="CatalogIconImageUrl" type="string" />
    <property name="HelpMode" type="helpmode">Modeless</property>
    <property name="TitleIconImageUrl" type="string" />
    <property name="ItemBodyTemplateId" type="string" />
    <property name="AlternateErrorMessage" type="string" null="true" />
    <property name="Hidden" type="bool">False</property>
    <property name="TargetResultTable" type="string">RelevantResults</property>
    <property name="AllowClose" type="bool">True</property>
    <property name="MissingAssembly" type="string">Cannot import this Web Part.</property>
    <property name="ShowResultCount" type="bool">True</property>
    <property name="ShowLanguageOptions" type="bool">True</property>
    <property name="ShowUpScopeMessage" type="bool">False</property>
    <property name="Width" type="string" />
    <property name="RepositionLanguageDropDown" type="bool">False</property>
    <property name="Title" type="string">Search Learning Groups</property>
    <property name="ScrollToTopOnRedraw" type="bool">False</property>
    <property name="ShowResults" type="bool">True</property>
    <property name="ShowAlertMe" type="bool">False</property>
    <property name="OverwriteResultPath" type="bool">True</property>
    <property name="PreloadedItemTemplateIdsJson" type="string">null</property>
    <property name="MaxPagesAfterCurrent" type="int">1</property>
    <property name="ShowDefinitions" type="bool">False</property>
    <property name="ShouldHideControlWhenEmpty" type="bool">False</property>
    <property name="AvailableSortsJson" type="string">null</property>
    <property name="DataProviderJSON" type="string">{"QueryGroupName":"f5646507-4a7a-4d75-b5c4-d435b9128e2a","QueryPropertiesTemplateUrl":"sitesearch://webroot","IgnoreQueryPropertiesTemplateUrl":false,"SourceID":"8413cd39-2156-4e00-b54d-11efd9abdb89","SourceName":"Local SharePoint Results","SourceLevel":"Ssa","CollapseSpecification":"","QueryTemplate":"Path:{SiteCollection.URL} AND :{SearchBoxQuery} ","FallbackSort":[],"FallbackSortJson":"[]","RankRules":[],"RankRulesJson":"[]","AsynchronousResultRetrieval":false,"SendContentBeforeQuery":true,"BatchClientQuery":true,"FallbackLanguage":-1,"FallbackRankingModelID":"","EnableStemming":true,"EnablePhonetic":false,"EnableNicknames":false,"EnableInterleaving":false,"EnableQueryRules":true,"EnableOrderingHitHighlightedProperty":false,"HitHighlightedMultivaluePropertyLimit":-1,"IgnoreContextualScope":true,"ScopeResultsToCurrentSite":false,"TrimDuplicates":false,"Properties":{"TryCache":true,"Scope":"{Site.URL}","UpdateLinksForCatalogItems":true,"EnableStacking":true,"ListId":"60ae8593-eddc-45e0-802a-27f78059ce26","ListItemId":4},"PropertiesJson":"{\"TryCache\":true,\"Scope\":\"{Site.URL}\",\"UpdateLinksForCatalogItems\":true,\"EnableStacking\":true,\"ListId\":\"60ae8593-eddc-45e0-802a-27f78059ce26\",\"ListItemId\":4}","ClientType":"ContentSearchRegular","UpdateAjaxNavigate":true,"SummaryLength":180,"DesiredSnippetLength":90,"PersonalizedQuery":false,"FallbackRefinementFilters":null,"IgnoreStaleServerQuery":false,"RenderTemplateId":"DefaultDataProvider","AlternateErrorMessage":null,"Title":""}</property>
    <property name="Direction" type="direction">NotSet</property>
    </properties>
    </data>
    </webPart>
    When we are downloading the 'Top Queries by Month' or 'Top Queries by Day' report, while we see numbers in 'Total Queries' and '% of all queries' columns, we are not finding anything in 'Query Text' column, its empty. Not sure while the analytics is
    not able to fetch/report the 'Query Text' itself - the report doesnt make any sense without 'Query Text' information.
    Is there anything in the web part markup I pasted above- is any of the property value is affecting this?
    Or it can be some configuration/error with the logging/analytics process?
    Please suggest. Thanks in advance.
    Regards,
    Mahavir
    MOSS programmer

    Hi,
    Hope you are doing well. Would you help to try to run the script to start the timer job manually:
    Run the script to start the timer job:
    ==================
    $ua = Get-SPTimerJob -Type Microsoft.Office.Server.Search.Analytics.UsageAnalyticsJobDefinition
    $ua.GetAnalysisInfo()
    $ua = get-sptimerjob -type microsoft.office.server.search.analytics.usageanalyticsjobdefinition
    $ua.DisableTimerJobSchedule()
    $ua.StartAnalysis()
    $ua.EnableTimerJobSchedule()
    $ua = Get-SPTimerJob -Identity ("job-usage-log-file-import")
    $ua.RunNow()
    ==================
    2.  Please install the SharePoint 2013 March update if our version is before this:
    SharePoint 2013 March update:
    http://support.microsoft.com/kb/2767999
    Best Regards,
    Dats Luo

  • Few questions regarding Training and event management

    Dear All,
    Can you please help me with the following queries regarding Training and Event Management:
    1. How to freeze a completed business event so that no changes to its record (like delete/update attendee details or event detail) is possible?
    2. How to get feedback from attendee/faculty with a predefined format with rating (1-4 scale)
    3. How to maintain department and category wise training man/hrs or training man/days?
    Any help will be appreciated.
    Regards,
    Toa

    Hi Toa,
    1. Run report RHHISTO0 via SA38. Once the business event is flagged as "historical" no further changes can be done.
    3. SM30 - T77S0 - Make the following swtiches active:
    SEMIN AINST
    SEMIN APART
    Then when events are followed up, these training data is recorded to employee 2002 infotype. You can report on it via PT90 (for department-based selection use "Further selections")
    Regards,
    Dilek

  • Short dump while executing few queries , which has got created on Infoset.

    Hi,
    We went to BI7.0 upgrade from BW3.x now.
    We are getting short dump short dump while executing few queries and work book, which has got created on Infoset.
    When i was executing work book where i was geting popup message saying that "Erro ZSD_XST_F00121 is invalid".When i click that message it went to dump.
    I was getting this error while executing query on infoset.
    We are currently SP Stack 13(Patch level 15).
    I found some note 1067918 as per the shortdum,where it is saying that you need to apply SP Stack14(patch level16).
    Please some one who had earlier this kind of issue.
    I appreciate your answer.

    Dear Krish,
    Yes, It is the patch problem.
    We too faced the same issue on Infosets.
    Apply SP 15.
    Regards,
    Ram.

  • Queries regarding Approach to me made for a XI Project

    Hi Folks,
    I have few queries :
    1. How to configure SLD in a project?
    <b>--> Should a company go for single SLD for all Dev,QA or PRD or separate SLD for all..?
    What are the pros and cons in each case..?</b>
    2. What is the best approach :
    <b>a.> Developing all scenarios in one Software Component ?
    b.> Developing each scenario in different Software Component ?
    c.> Developing same Legacy System(or business process) related scenarios under one Software Component and other legacy related scenarios in other software components and further differentiating the scenarios by namespaces in IR ?</b>
    How it will affect the transportation ?
    Let me know the pros and cons also..
    <b>Will you also help me in figuring out the deciding elements for making the decisions pertaining to above cases..</b>
    Regards,

    <i>1. How to configure SLD in a project?
    --> Should a company go for single SLD for all Dev,QA or PRD or separate SLD for all..?
    What are the pros and cons in each case..?</i>
    >>>>
    ref the planning guide to help you
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0a1a8fb-0527-2a10-f781-8b67eab16582
    <i>a.> Developing all scenarios in one Software Component ?
    b.> Developing each scenario in different Software Component ?
    c.> Developing same Legacy System(or business process) related scenarios under one Software Component and other legacy related scenarios in other software components and further differentiating the scenarios by namespaces in IR ?</i>
    >>>
    refer the series of blog part 1 is as below,
    /people/thorsten.nordholmsbirk/blog/2006/07/25/structuring-integration-repository-content--part-1-software-component-versions

  • General queries regarding explain plan and query

    Hello Oracle buddies,
    I have few badly formed queries with plenty of nested loops, merge join cartesian , plenty of sorting and in the query so many sub queries and all.. The cost of the queries are high like anything.
    some even has 130Crore of cost .
    When I got the chance to look into those quries I test them in Non Prod systems and which almost have 90-95% similar data as it was refresh by PROD few weeks back.
    I found few queries are having the same explain plan but cost is less like anything. for example 5000 or 6000.
    When I check for the possibilities of wrong statistics I found they just collect with default setting...
    In Non prod I saw only the auto stat job is ran and most of the tables are having the stats which are of last analyzed on the day of refresh.
    Now what could be so differentiating factor that drives a queries' cost lesser than Prod systems, when the data is almost same. Also if prod ssystem is gather by only gather_schema_stat('SCHEMA_NAME') then it should carry the same stat in non prod while refreshing. I know ppl do not gather stat on test only auto job is running ...
    I need to have clear prove before I can have a clear understanding..
    Please help me to know what factors could be differentiating?
    -Regards,
    J_DBA_Sourav

    j_DBA_sourav wrote:
    Hello Jonathan,
    Thanks for the reply. The team refreshed it, by expdp/impdp method where by default statistics are included. In that case?
    Is this problem probable to happen due to statistics only or anything else is also responsible. Even the explain plan is same.
    Please through some light on it.
    Auto job is on as I stated earlier but in test systems most of the tables are showing refreshed date as last_analyzed
    -Regards
    JDS
    Anything that puts the stats out of sync with each other may be sufficient to cause problems. Any queries that depend on sysdate may cause a problem.
    As a simple check:  select table_name, last_analyzed from user_tables on the two systems, with some order by clause (e.g. table_name), and see how many tables were analysed at different times - anything on either system after the exp/imp could be part of your problem.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Now on Twitter: @jloracle

  • Upgrading to EHP 4.0 - Have few queries on ESS/MSS, Erecruitment.

    Hi,
    We are trying to upgrade our portal to EHP 5.0. We have ESS/MSS and few webdynpro java and webdynpro abap applications on the portal. These are the few queries I have
    1) ESS services : employee search, personal data, LMS(Webdynpro Java) are on EHP 3 as of now. Will the applications remain the same even if we upgrade to  EHP5?
    2) ESS travel management(Webdynpro ABAP) are on EHP 2 as of now. Will this application remain the same even if we upgrade to EHP 5?
    3) E Recruitment (BSP) is on EHP 3 Will this application remain the same even if we upgrade to EHP 5?
    4) We have MSS services: ERec Manager and Appraisal. Will these services affect if we upgrade to EHP 5?
    4) We have few custom applications in Webdynpro abap and webdypro java developed on portal. Will these effect if we upgrade to EHP 5?
    Thanks.
    Regards,
    Priyanka.

    Hi Eric,
    Thanks for your prompt reply.
    Can you let me know which version of ESS/MSS and E-Recruitment business packages are applicable for the above version? And are these versions of ESS/MSS available in market now? Otherwise we can suggest our client to go for a upgrade to EHP 4.
    Appreciate your input.
    Regards,
    Priyanka

Maybe you are looking for