Sizing consideration for KM implementation

I am implementing KM using SAP Netweaver EP 6.0.
The requirement is to build a Document Management System, where users will be uploading huge files.
I m keeping the persisstence mode of the CM Repositories as DB.
Please let me know what are the Sizing consideration for this implemenation. By Sizing i mean sizing of resources like DB, File system, etc.

Consider change the DB Mode to DBFS.
The DB Mode privileges write operations, but read operations are poor for large documents. Will be better for you use DBFS. But, read the restrictions of this mode and the way you must implement it!
http://help.sap.com/saphelp_nw70ehp2/helpdata/en/62/468698a8e611d5993600508b6b8b11/frameset.htm

Similar Messages

  • Sizing Guideline for Sourcing 7.0

    Hello,
    I have read the Sizing Guideline for Sourcing 7.0 in the Installation Guide. For a small installation (less than 50 concurrent users) SAP is recommending the following:
    App Server - Quad Core Processor, 16 GB
    DB Server - Quad Core Processor, 16 GB
    Having done WAS JAVA sizing for quite sometime, I feel this is on a very higher side. In our implementation we will have max 10 concurrent users. So I feel the following should be good enough
    App + DB Server - Dual Core Processor, 8 GB
    As per my exp, 1core and 4GB will be for OS and DB, remaining 1core and 4 GB for 1 CE Server Node.
    I request all the experienced people please suggest if this will work. If not please share some rational so that I can convince the customer rationally without saying thats minimum recommendation from SAP
    Regards,
    Jai

    Jai,
    Optimizer can be on same server as of contract generation, CG use very little memory as its only service used to created document for CLM. but it should be on different server other than E-Sourcing server
    E-Sourcing can work without optimizer also, Its is prefered where there are complex bid responses or large no of response are there.
    ~Ankush

  • ISO consideration for calculation of MRP per Safetystock adds more demand

    Hi Planning experts,
    Internal Sales order consideration for aggregate demand which uses for Safetystock calculation based on MRP Planned percentage safety stock adds more demand in the warehouse.
    We have ASCP Plan where X1 warehouse procures material from X2 Inventory organization through ISO created from Plan, after transfer Planned order releases from X2 and We have Safety stock calculated based on MRP percentage method in individual warehouses.
    Since ISO considered for aggregated demand to safety stock, and acts as a individual demand for Plan adds of more demand to the plan and recommending additional Planned order supplies by ASCP engine.
    Procurement rule: X2 --->X1through ISO recommended by Plan
    Steps to Reproduce :
    Goto ISCP Responsibility > Advanced Supply CHain Planner >Workbench > Open Plan > query PWB data for X1 warehouse for any item which is procuring from X2 org for ex:Item: Y1 , verify the safety stock for this item in X1 and verify the ISO created from X2 through early Planned order releases from Plan, so there is additional demand equals to ISO qty observed, where ISO qty not required to be considered for aggregated demand used for MRP Planned percentage safety stock calculation for item:Y1.
    Need to exclude ISO qty for MRP Planned safety stock calculation, please let us know how to exclude ISO for safety stock calculation, so additional supply will not be recommended by ASCP.
    Please let me know, if u have any idea how to crack this issue.
    Regards,
    Kumar
    Edited by: user9093449 on Mar 2, 2010 3:14 PM

    -->What is the shortcut to change location type in APO?
    Report /SAPAPO/CHECK_LOCATION_TYPE can be used to change location type (say from 1001 to 1002 or vice-versa)
    can you check if this works - cos i think you need to use/SAPAPO/CHANGE_LOCTYPE
    --> Can SAP APO be used as a stand-alone solution?
    *of course, as a stand-alone planning solution it can be !!
    and the connected executed system, which need not be ECC, is to give a well rounded solution
    there are organizations that have APO alone and integrate to other execution systems, and there are companies that have implemented APO first and R3 later. there are companies that just need planning and dont have to execute it (transport planning and demand planning)*
    -->How to copy a Process Chain?
    To copy a process chain to another process chain, goto the Process Chain you want to copy and then type copy in the tool tar
    also... if you dropdown on the toolbad under process chain you have a copy option... but this looks cool

  • Design considerations for mobile version of website

    My company has just implemented a new version of our coporate website using Oracle Portal, and ADF. However we do not have comprehensive mobile support but it is required. From my research I've learned we should be using ADF mobile. However, the resources I have found have been geared more at developers and I work as a Business Analyst. Can you point me to online resources (white papers, tutorials etc.) that deal with requirements and design considerations for porting over to a mobile version?
    Thanks in advance.

    My apologies for lateness in checking this thread.
    Here is an article I wrote that might help. Most of the paper is geared toward developer, but the first few sections talks about best practices for mobile browser app in general, not just for iPhone. http://www.oracle.com/technology/pub/articles/huang-iphone.html
    You can also check out this link: http://www.orato cle.com/technology/tech/wireless/adf_mobile.html.
    As for design consideration, a few rules of thumb:
    - First, obviously use ADF Mobile and Trinidad components. We put a lot of effort in adding rendering support for different mobile devices.
    - Next, figure out what devices you want to support. Browsers found in smartphones varies greatly, and in consumer/feature phones, the support is even less consistent. In general you should be able create one app/set of screens for all mobile devices, but you should plan on having ability to test it out on different devices.
    - Determine what information is really needed by mobile user. Not all information available in desktop application may be applicable for mobile users
    - Design your mobile screens based on a few key principals:
    - Display data as user needs it, instead of trying to display everything. For example, instead of displaying master-detail data on the same screen, break it out into 2 screens. Master data may be a list, and user would click on a particular piece of data to look at the details of that master record.
    - Provide navigation buttons on each screen, and ensure they are easy to get to on a page. For example, using the iPhone paradigm, there is a navigation bar at the top of the page where you can go between views.
    - Place command buttons at location where it's easy for user to get to. For example, if you need to allow user to modify a long list of fields, you may want to place save button on top and button of the screen, so user can easily get to it without having to scroll around too much.
    - Use style sheets to achieve mobile-platform optimized UI. For example, if you intend to support touch screen devices (iPHone, BB Storm, etc), then style your application so buttons, command links, etc, are big enough so it's easy to get to. For non-touch screen devices, then it's OK to compress the UI, but ensure user can easily flow between controls to get to the functionality they need. For example, using a trackball to scroll to a button.
    Thanks,
    Joe Huang

  • What are the thread safety requirements for container implementation?

    I rarely see in the TopLink documentation reference to thread safety requirements and it’s not different for container implementation.
    The default TopLink implementation for:
    - List is Vector
    - Set is HashSet
    - Collection is Vector
    - Map is HashMap
    Half of them are thread safe implementations List/Collection and the other half is not thread safe Set/Map.
    So if I choose my own implementation do I need a thread safe implementation for?
    - List ?
    - Set ?
    - Collection ?
    - Map ?
    Our application is always reading and writing via UOW. So if TopLink synchronize update on client session objects we should be safe with not thread safe implementation for any type; does TopLink synchronize update on client session objects?
    The only thing we are certain is that it is not thread safe to read client session object or read read-only UOW object if they are ever expired or ever refreshed.
    We got stack dump below in an application always reading and writing objects from UOW, so we believe that TopLink doesn’t synchronize correctly when it’s updating the client session objects.
    java.util.ConcurrentModificationException
    at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:449)
    at java.util.AbstractList$Itr.next(AbstractList.java:420)
    at oracle.toplink.internal.queryframework.InterfaceContainerPolicy.next(InterfaceContainerPolicy.java:149)
    at oracle.toplink.internal.queryframework.ContainerPolicy.next(ContainerPolicy.java:460)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:140)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.checkAndLockObject(WriteLockManager.java:349)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:144)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.checkAndLockObject(WriteLockManager.java:349)
    at oracle.toplink.internal.helper.WriteLockManager.traverseRelatedLocks(WriteLockManager.java:144)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLockAndRelatedLocks(WriteLockManager.java:116)
    at oracle.toplink.internal.helper.WriteLockManager.acquireLocksForClone(WriteLockManager.java:56)
    at oracle.toplink.publicinterface.UnitOfWork.cloneAndRegisterObject(UnitOfWork.java:756)
    at oracle.toplink.publicinterface.UnitOfWork.cloneAndRegisterObject(UnitOfWork.java:714)
    at oracle.toplink.internal.sessions.UnitOfWorkIdentityMapAccessor.getAndCloneCacheKeyFromParent(UnitOfWorkIdentityMapAccessor.java:153)
    at oracle.toplink.internal.sessions.UnitOfWorkIdentityMapAccessor.getFromIdentityMap(UnitOfWorkIdentityMapAccessor.java:99)
    at oracle.toplink.internal.sessions.IdentityMapAccessor.getFromIdentityMap(IdentityMapAccessor.java:265)
    at oracle.toplink.publicinterface.UnitOfWork.registerExistingObject(UnitOfWork.java:3543)
    at oracle.toplink.publicinterface.UnitOfWork.registerExistingObject(UnitOfWork.java:3503)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.registerIndividualResult(ObjectLevelReadQuery.java:1812)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildWorkingCopyCloneNormally(ObjectBuilder.java:455)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObjectInUnitOfWork(ObjectBuilder.java:419)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:379)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.buildObject(ObjectLevelReadQuery.java:455)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.conformIndividualResult(ObjectLevelReadQuery.java:622)
    at oracle.toplink.queryframework.ReadObjectQuery.conformResult(ReadObjectQuery.java:339)
    at oracle.toplink.queryframework.ReadObjectQuery.registerResultInUnitOfWork(ReadObjectQuery.java:604)
    at oracle.toplink.queryframework.ReadObjectQuery.executeObjectLevelReadQuery(ReadObjectQuery.java:421)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:811)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:779)
    at oracle.toplink.queryframework.ReadObjectQuery.execute(ReadObjectQuery.java:388)
    at oracle.toplink.queryframework.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:836)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2604)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:950)

    Hi Lionel,
    As a general rule of thumb, the ATI Rage 128 Pro will not support a 20" LCD. That being said, there are reports of it doing just that (possibly the edition that went into the cube).
    I'm not that familiar with the ins and outs of the Cube, so I can't give you authoritative information on it.
    A good place to start looking for answers is:
    http://cubeowner.com/kbase_2/
    Cheers!
    Karl

  • Sizing Impact for Trex and user defined Message search

    Hi All,
        In PI 7.1 we have content base search in nwapi and also we have trex based earch. Do any one have any idea about the sizing impact for the both...?
    Regards
    Pradeep P N

    Hi.
    From SAP Note.  1600078
    Solution
    Most problems occur because you use the communication components or partners as the filter criteria in the filter even though you want the system to index only certain interfaces. In this situation, you must always set the components or partners to "*".
    If you specify components or partners, you must consider how indexing of messages runs technically. If indexing is called at runtime, the system executes it at the start of the Integration Engine and at the end of the Integration Engine; this means that the value that the components or partners have at this point is definitive. For example, if you have defined a receiving component, this is not set at the start of the Integration Engine (except in special cases) and this is why the filter does not select the message. It also has no effect at the end because the message contains the receiving interface after the mapping. If you call the test function of transaction SXMS_LMS_CONF, the filter is used on each individual persistent version of the message (the same process as when indexing via a job). If the message is made persistent directly before the mapping, the sender interface exists there and the receiving component or partner is set. Therefore, the filter described above would be active here. As a result, this function is better defined to check the XPath than the filter criteria.
    Check if you put  * in the receiver component.
    Regards
    Lucho.

  • Hardware sizing recommendations for B2B Server

    My customer Welch Foods Inc. is on 11i Oracle eBusiness Suite and is planning to uptake the latest 1Sync integration features in the PIM product. For out-of-box AS2 connectivity with 1Sync - they are planning to use Oracle B2B Integration Server 10.1.2.3.
    They have an average transaction volume of 30 transactions per month. One time - initial load of 20,000 transactions.
    Based on the above estimates, they are looking for hardware sizing recommendations for the B2B server.
    Your assistance is much appreciated.
    Asmi Maharishi
    SDM for Welch Foods.

    Thanks for your reply!
    Here are the responses to your queries:
    1. Is B2B instance going to run alone in a box
    Yes, B2B instance will run alone on a box.2. what will be the size of message
    Messages can be anywhere from 5-20 KB3. how many messages will be part of a transaction.
    It should be 2 - Registration and publication. But sometimes it depends on how successful the first “registration” goes. Typically we get one or two errors that the users go into PLM, correct and re-send.However, Looking at your current requirement, 30 transaction per month, we can easily address in a 4 GB machine itself.
    Additionally, Oracle B2B supports 10+ messages per second in 32GB, 4 processor machine.
    Memory suggested above is 4GB, does that take into account memory used by the 10G App server foot print or this is only to take care of messages? Also, how many Processors (Risk IBM) will be needed?

  • What are appropriate directives for array implementation in hls

    dear friends,
      I have tried hardware implementation in VivadoHLS by passing arrays to the function in Microblaze based soc. The problem I am facing is that the RTL is not being implemented properly.Though the implementation was success for register inputs and outputs , there were no functions generated in the header files in include directory of pcores through which inputs are to be given to hardware while the input and output arguments are arrays in SDK. i need a help to know the appropriate directives for this implementation . And the functions to be used to give inputs after generating hardware and how the final outputs from the hardware are taken. Please clarify the implementation of this basic example.
    void array_add(int z[4],int x[4])
    #pragma HLS INTERFACE ap_fifo port=z
    #pragma HLS INTERFACE ap_fifo port=x
    #pragma HLS RESOURCE variable=z core=AXIS
    #pragma HLS RESOURCE variable=x core=AXIS
    #pragma HLS RESOURCE variable=return core=AXI4LiteS
    int i;
    label0:for(i=0;i<4;i++)
    z[i]=x[i];
    return;
    thanks and regards
    sasidhar

    Hi
    There are couple of directives for this. This can determine the way you want to implement your array or partition this.
    I found a good guide.
    http://users.ece.utexas.edu/~gerstl/ee382v_f14/soc/vivado_hls/VivadoHLS_Improving_Performance.pdf
    Hope this helps.
    Regards
    Sikta

  • Setup script document for Sourcing implementation

    Hi,
    Please can one share a setup script document for Sourcing implementation ?
    Regards.

    Hi Ram,
    See wiki page:
    General PPDS wiki page
    http://wiki.sdn.sap.com/wiki/display/SCM/APO-PPDS
    Setup Matrix Generation in a Complex Manufacturing Evironment
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00a618c4-8aad-2b10-6ebb-f70cb4470195
    Oficial doc
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00a618c4-8aad-2b10-6ebb-f70cb4470195?quicklink=index&overridelayout=true
    Hope this help.
    Luiz Giani

  • "Case use" technique for SAP implementation?

    Hello all,
    has anyone used "case use" technique for SAP implementation? I mean for standard process, not only developing.
    Any recommendation about it?
    Thanks in advance and best regards,
    Adolfo

    It would be helpful to go through the help document of ASAP Methodology.
    The following information may clarify some doubts/requirements you have.
    Generating the Project IMG through ASAP:
    After you have set the project scope, the next step is to generate the Project IMG. From the Business Process Master List (BPML), you can directly access the IMG activities relevant for configuring each process.
    BPML: The Business Process Master List, along with the Business Blueprint, is a key result of the second phase of the Roadmap. Microsoft Excel tables contain the SAP scenarios, process groups, and processes that have been set in scope in the SAP Reference Structure, and are crucial for configuring your SAP System. In Realization, the third phase of the Roadmap, the BPML provides the basis for monitoring and steering test activities and for configuring your SAP System. It contains the titles of the structure items, and displays the status, the owner, links to documentation and links to the SAP System. Amongst other things, the BPML allows you to:
    1) Set your baseline and final scope. These are used for baseline and final configuration.
    2) Access the Project IMG and specific IMG activities assigned to structure items.
    3) Access integration test plans, which help you carry out all required integration tests.
    The Prerequisite is you have set the project scope.
    Process Flow to use the Business Blueprint as a basis for configuring your SAP System:
    1) Set the project scope.
    2) Generate the Project IMG.
    3) Generate the BPML.
    4) From a specific processes in the BPML, you can go to the relevant IMG activities and make Customizing settings.

  • Sizing Guidelines for Information Broadcasting Setup in BI 7.0

    Dear All,
    Can anyone provide information related to sizing/setup for information broadcasting setup in BI 7.0 .
    Regards,
    Santosh

    Hi,
    These are the settings needed for the broadcaster:
    http://help.sap.com/saphelp_nw70/helpdata/en/55/1b9940ccd42a54e10000000a1550b0/frameset.htm
    Eddy
    PS. Reward useful answers and earn points yourself

  • Survey: Considerations for Using DITA

    Survey: Considerations for Using DITA
    To help potential users decide whether to use DITA and how much effort doing so would involve, Text Structure Consulting, Inc. is conducting a survey to better understand the documentation projects for which DITA is appropriate. If you are using or considering DITA (or have done so), please take the time to share your experience by completing the survey. Partial and anonymous responses are welcome. You can send your response (embedded in an email message, in Microsoft Word, RTF, Adobe FrameMaker, or PDF) to [email protected]. If you prefer to answer by phone, you can write to the same address to schedule an interview.
    Please forward the survey to other documentation professionals you know who might like to participate. If you are involved in multiple relevant projects or would like to add to an earlier response, feel free to complete the survey multiple times. Answers from different people working on the same project will gladly be received.
    Since the survey is being distributed largely by forwarded email, statistically significant results are not expected. Nevertheless, survey responses should help existing users re-evaluate their projects and possibly learn about new tools, potential users evaluate the relevance of DITA, and consultants decide when to recommend it. If an interesting number of responses are received, the results will be summarized on www.txstruct.com and submitted for possible presentation at Balisage: The Markup Conference in early August, 2010 (see www.balisage.org). If at all possible, please respond by June 15 so that information can be prepared for the conference.
    The survey questions are available at http://www.txstruct.com/dita.survey/questions.htm and are repeated here:
    Personal Identification
    What is your name, affiliation, and name of your project?
    What is your personal role in your project (e.g., author, editor, manager)?
    Are you an end user, consultant, or tool vendor?
    Is this a new survey response or a replacement for an earlier response?
    Do you give permission for your responses to be quoted in a summary of the results of this survey? Do you want such quotations to be anonymous or attributed to you?
    Project Identification
    What industry does your documentation represent?
    What type of processing does your project involve (authoring, publishing, translating, indexing, analyzing, etc.)?
    How many documents or pages do you process annually? How much of this material is new and how much revised?
    How do you publish documents (paper, PDF, Web, CD, etc.)?
    How many document tool users do you have?
    How many people use your finished documents?
    Are your documents translated to multiple languages or localized in any other form? Are all documents localized or only some? How many languages do you support?
    Are your documents revised and republished?
    General software considerations
    What documentation software does your project use:? Consider DITA-specific tools, XML tools, content management, word processing, desktop publishing, text editors, database management, project management, spreadsheets, and any other relevant tools.
    Do you have software that enforces that writers follow your organization's conventions?
    Do all groups within your organization use the same tools? All people in your group?
    Is authoring geographically distributed?
    How are editing tasks assigned to individual writers or editors? For example, is a writer responsible for a document or document component through multiple revisions, or is an available writer assigned whenever a change is needed? Do writers need specific expertise, such as knowledge of a documented product, to maintain particular pieces of content?
    Do you reuse all or parts or your documents? What size units do you reuse? In how many documents does a typical reusable component occur? What percentage of a typical document is comprised of reusable segments?
    DITA Considerations
    For what types of documents (user manuals, online help, test plans, requirement specifications, journal articles, technical books, technical reports, interdepartmental memos, etc.)
    Does your project use DITA?
    Have you considered using DITA but decided not to?
    Have you never considered using DITA?
    Do you use DITA-inspired naming of element and attribute types when you do not use DITA itself?
    Do you use DITA maps?
    Do you specialize (modify) the DITA tagging scheme? How extensive are your changes? Which of the following do they involve:
    Rename existing element and attribute types
    Change the definitions of existing element and attribute types
    Add new element and attribute types.
    How many of the DITA element and attribute types do you use?
    What were the primary factors in deciding whether to use DITA (for example, eliminates need to define a tagging scheme, availability of DITA open toolkit, a DITA deliverable is part of the project, wanted to use DITA- based software, recommended by consultant, addresses usability, effort required)?
    Who are the primary decision makers on DITA issues (for example, customer, consultant, manager, tools group, writers)?
    Do you transform your documents to or from DITA for different types of processing? Explain.
    In what circumstances would you recommend that an organization consider DITA?
    What have you found surprising about DITA?
    How well have the effort, elapsed time, and cost of your solution corresponded to your expectations at the beginning of the project?
    How well have the results corresponded to your expectations?
    Given the experience you have gained, would you make the same DITA-related decisions now?
    What version(s) of DITA do you use? Are you planning to use any others? When?
    What changes to DITA or the Open Toolkit would you like to see?
    What changes to your processes do you plan?
    Other comments
    Please make any other relevant comments.

    Arnis,
      Of course. Results will also be posted at www.txstruct.com.
            --Lynne

  • Is SAP Solution manager mandatory for SRM7 implementation?

    Dear experts,
    I get to know that use of SAP solution manager is mandatory for SRM 7 implementation. is it true?
    what is the best practice to manage a SAP SRM implementation project? should we manage the project in SAP SM or outside of it?
    Thanks and regards,
    Ranjan
    Ranjan Sutradhar

    Hi Ranjan,
    Solution Manager is not mandatory for SRM 7 implementation.
    Only thing is Solution Manager contains best pratices for Project implementation e.g AS is process , to be process, blue print etc.
    It is just a guilde. All things might not be  required for your project.
    We did it without solution Manager except that we used it for generating installation key & for maintainance opt.
    Best Wishes,
    Tushar.

  • How to make custem sized book for example 12inch x 8 inc, 18 inch x12 inch

    how to make custem sized book for example 12inch x 8 inch, 18 inch x12 inch

    I'm afraid there is no way to do this currently available.

  • I had photoshop elements 8 installed on my previous computer and it did not work properly when it came to sizing  photos for a website I was adding to.  I now have a new computer which runs windows 7.  Is it worth installing it again on my new computer?

    I had photoshop elements 8 installed on my previous computer and it did not work properly when it came to sizing  photos for a website I was adding to.  I now have a new computer which runs windows 7.  Is it worth installing photoshop elements 8 again on my new computer or will it be a waste of time?

    I have PSEv.8 on my computer running WINDOWS 7. It works perfectly..
    Perhaps you need help with saving files for web use.. Will be pleased to assist you when you get everything set up.

Maybe you are looking for

  • Multiple HighlightPainters for the same JEditorPane

    Hey Everyone, I'm having a problem having highligts of multiple colors for the same text component. Basically I have a set of results in a separate panel for a search on the text in a JEditorPane. I want the text corresponding to all the search resul

  • Formula variable in structures

    Hi, My report displays material wise (With Hierachy) actual ,budget,LE Quantities in YTD, QTD.(  I used Structures.) I am using 2 formula variables  to derive no of working days in month, no of working days gone based on the given input selection var

  • Can I make the finder open my most recently used folder when opening a new window?

    Hello Community! When I open a new finder window I would like it to open the folder I worked in last (i.e. the one I saved sth to or opened sth from). I know I can go over "Go to" but is there a way to adjust the settings so that it opens automatical

  • How to put Download Links on a Jsp Page?

    Hi, I am a student and I am working as an intern. This is my question: My boss wants me to put some download links(pdf and flash files) on to a jsp page. when a user clicks on the link, all the user info (i.e. name, filename, download time etc) shoul

  • Use of Orchestration in OIM 11g

    Hi, Can anyone help me in understanding the concept of orchestration in OIM 11g? I have seen using orchestration in eventhandlers. I don't have any idea on this. Can you please elobrate it's uses? Thanks, Saravanan