Documentation for com.waveset.provision.WorkflowServices

There seems to be little documentation I can find that describes the various options (specifically, the various <Argument> names) that are used by
the WorkflowServices object.
My immediate challenge is simply sending an email from a workflow. I keep getting the error message: "com.waveset.util.WavesetException: msgBody must be specified." I'm assuming that the Arguments passed to the task should match the variable names used by the email template.
Also, there seem to be inconsistencies in naming: 'to' vs. 'toAddress', 'from' vs. 'fromAddress', etc. Again, due to templates?
Thanks in advance for help/pointers.

I ran in to a similar problem.
It turned out that my email template was corrupt. I also didn't find out what the argument name should be. msgBody didn't seem to work.
BR
Per

Similar Messages

  • Missing javadocs for com.waveset.adapter.iapi.IAPI

    I am looking at IdM version 7. The REF directory contains javadocs for the resource adapter classes. The javadoc for com.waveset.object.IAPI which is referenced in the IDM_DeploymentTools_7.0.pdf manual says that it is deprecated and com.waveset.adapter.iapi.IAPI should be used instead. However I can't find any javadoc for com.waveset.adapter.iapi.IAPI.
    I do see the class file in the idmadapter.jar file in the WEB-INF/lib directory.
    Does anyone know where I can find Javadocs for this?
    Thanks,
    Robin

    I have exactly the same problem. Please let me know if you found anything!

  • Calling/Invoking com.waveset.session.WorkflowServices

    Greetings;
    I'd like to enable / disable a user and/or resources from a RemoteSession.
    I've executed enableUser and disableUser from a workflow before, but am baffled about how I would do this from an external java class through a RemoteSession.
    My first thought would be to create a new com.waveset.session.WorkflowServices and use that, but the javadocs aren't helping my feeble mind.
    Anyone have any other suggestions?
    Cheers,
    Sean.

    Hi Sean,
    while it might work to do this with calling workflow services directly it is not the way that is meant to achieve your goal. Views are... Please try something similar to the code below. In order to see the options you have in the view remove the comment in front of the system.out.
    Regards,
    Patrick
    import com.waveset.object.GenericObject;
    import com.waveset.session.Session;
    import com.waveset.session.SessionFactory;
    import com.waveset.util.EncryptedData;
    import com.waveset.util.WavesetException;
    import java.util.HashMap;
    public class Test {
        private Session session = null;
        public static void main(String[] args) throws Exception {
            Test test = new Test();
            test.disable("testid001");
        private void disable(String username) throws WavesetException {
            Session session = getSession();
            String viewId = "disable:"+username;
            GenericObject view = session.checkoutView(viewId,new HashMap());
            view.put("resourceAccounts.selectAll",true);
            //System.out.println(view.toXml());
            session.checkinView(view,new HashMap());
        private Session getSession() throws WavesetException {
            if (session!=null) {
                try {
                    session.getUser();
                    return session;
                } catch (Exception e) {
                    // maybe the session has expired lets open a new one
            EncryptedData ed = new EncryptedData("configurator");
            session = SessionFactory.getConfiguratorSession("http://localhost:8080/idm/servlet/rpcrouter2","configurator",ed,false);
            return session;
    }

  • Documentation for com.sap.isa.FrameworkConfigManager

    Hi,
    We have a new Java developer that doesn't have experience with SAP E-Commerce 5.0 (specifically B2B) and I have been given the task to gather up as much documentation as possible for him.
    So far I have found these documents:
    - IPC in SAP ECommerce for mySAP ERP.pdf
    - SAP E-Commerce for mySAP ERP: Business Scenario Configuration Guide.pdf
    - SAP E-Commerce 5.0: Examples and Tutorials.pdf
    - SAP E-Commerce 5.0 u2013 Landscape, Basics and Concepts.pdf
    - SAP Internet Sales (R/3 Edition) in a B2B Scenario.pdf
    He now came back to me and wants specific documentation on: com.sap.isa.FrameworkConfigManager
    Does anyone know where I can find this?
    Thank you in advance!
    Neil

    Hi Neil,
    If you are looking for java documentation.
    then
    [thread for java documentation|SAP CRM Internet Sales (ISA) Java Framework API;
    Regards,
    Devender V

  • Documentation for COM interface

    After iTunes 10 has been released, I thought there would be new documentation for the COM interface.
    Anybody know where to find it?
    Regards
    Thomas

    I second Dave's message. The only available version of the documentation is V.8.1.0.52. There have been significant changes such as the creation of the Media Kind property which have yet to be reflected in a new SDK, although as far as I can tell, the methods & properties provided in the older document are all still valid. If you need help finding the "current" documentation start here:
    http://www.paraesthesia.com/archive/2009/05/20/itunes-com-for-windows-sdk-now-in -adc.aspx
    tt2

  • Com.waveset.util.WavesetException: Missing view id; Missing Account ID

    Hi,
    I have some users in IDM provisioned to LDAP.
    I am now trying to find users and delete them thru the end user interface.
    When i enter the ID, and click search, i get this error
    "com.waveset.util.WavesetException: Missing view id.
    Missing Account ID"
    Here is my WF:
    <WFProcess name='Find WF' maxSteps='0'>
         <Activity id='1' name='Start'>
    <Transition to='Accept User ID'/>
    <WorkflowEditor x='43' y='10'/>
    </Activity>
    <Activity id='2' name='Accept User ID'>
    <ManualAction id='0' name='Enter User ID' timeout='60' syncExec='true'>
    <Owner>
    <ref>$(WF_CASE_OWNER)</ref>
    </Owner>
    <FormRef>
    <ObjectRef type='UserForm' id='#ID#CB00E29B1B211E5E:5673384:1141A79B1FE:-7FF3' name='Enter User ID Form'/>
    </FormRef>
    </ManualAction>
    <Transition to='getView'/>
    <WorkflowEditor x='191' y='10'/>
    </Activity>
    <Activity id='3' name='getView'>
    <Action id='0' name='getView' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='getView'/>
    <Argument name='id' value='$(accountId)'/>
    <Argument name='type' value='User'/>
    <Argument name='subject' value='configurator'/>
    <Argument name='authorize' value='true'/>
    <Return from='view' to='user'/>
    </Action>
    <Transition to='Delete User'/>
    <WorkflowEditor x='123' y='73'/>
    </Activity>
    <Activity id='4' name='Delete User'>
    <Action id='0' name='Delete' process='TaskDefinition:Delete User'>
    <Argument name='type' value='User'/>
    <Argument name='accountId' value='$(accountId)'/>
    </Action>
    <Transition to='End'/>
    </Activity>
    <Activity id='5' name='End'>
    <WorkflowEditor x='508' y='10'/>
    </Activity>
    Not sure what the mistake it. Can somebody point out pls?
    Thanks,

    cutepaddy
    Thanks for ur reply. However, it was not of much help.
    The problem now is that, i dont get the suspended case workitems error anymore but, the WF is not doing what it's suppoed to do, i.e., delete the users. The dump shows that all activities and actions are being executed correctly, however, the user still is not deleted. Here are my updated forms and WF
    Form 1:
    Configuration id='#ID#CB00E29B1B211E5E:5673384:1141A79B1FE:-7FF3' name='Accept User ID Form' lock='Configurator#1186027075593' creator='Configurator' createDate='1185855280921' lastModifier='Configurator' lastModDate='1186026775578' lastMod='354' wstype='UserForm'>
    <Extension>
    <Form name='Accept User ID Form' baseContext='variables' objectLocationID='objectName=Accept+Store+ID+Form&isBegin=true&objectPath=0&objectType=UserForm'>
    <Display class='EditForm'>
    <Property name='title' value='Find ID Form'/>
    </Display>
    <Field name='view.waveset.accountId'>
    <Display class='Text'>
    <Property name='title' value='Enter User ID'/>
    <Property name='size'>
    <Integer>20</Integer>
    </Property>
    <Property name='maxLength'>
    <Integer>10</Integer>
    </Property>
    </Display>
    <Validation>
    <cond>
    <not>
    <invoke name='testUser' class='com.waveset.ui.FormUtil'>
    <ref>:display.session</ref>
    <ref>view.waveset.accountId</ref>
    </invoke>
    </not>
    <s>Not Exist</s>
    </cond>
    </Validation>
    </Field>
    <Field name=':complete'>
    <Default>
    <s>true</s>
    </Default>
    </Field>
    </Form>
    </Extension>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    <Properties>
    <Property name='editorOriginalName' value='Accept User ID Form'/>
    </Properties>
    </Configuration>
    Form 2:
    <Configuration id='' name='Search Results Form' lock='Configurator#1186027075593' creator='Configurator' createDate='1185855280921' lastModifier='Configurator' lastModDate='1186026775578' lastMod='354' wstype='UserForm'>
    <Extension>
    <Form name='Seach Results Form' baseContext='variables' noDefaultButtons='true'>
    <Display class='EditForm'/>
    <Field name='MatchTable'>
    <Display class='SimpleTable'>
    <Property name='columns'>
    <List>
    <String>Title</String>
    </List>
    </Property>
    </Display>
    <FieldLoop for='accountId' in='view.waveset.accountId'>
    <Field name='XYZ'>
    <Display class='Checkbox'>
    <Property name='Label' value='$(accountId)'/>
    </Display>
    </Field>
    </FieldLoop>
    <Field name='deleteuserbutton'>
    <Field name=':complete'>
    <Default>
    <s>true</s>
    </Default>
    </Field>
    <Field name=':formButton' button='true'>
    <Display class='Button'>
    <Property name='command' value='Save'/>
    <Property name='value' value='Continue'/>
    <Property name='label' value='Delete'/>
    </Display>
    </Field>
    <Field name='formButton'>
    <Expansion>
    <ref>:formButton</ref>
    </Expansion>
    </Field>
    </Field>
    </Field>
    </Form>
    </Extension>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    <Properties>
    <Property name='editorOriginalName' value='Accept User ID Form'/>
    </Properties>
    </Configuration>
    WF:
    <TaskDefinition id='#ID#CB00E29B1B211E5E:5673384:1141A79B1FE:-7FDC' name='Find User WF' lock='Configurator#1186881293625' creator='Configurator' createDate='1185857988234' lastModifier='Configurator' lastModDate='1186880993625' lastMod='185' taskType='Workflow' executor='com.waveset.workflow.WorkflowExecutor' suspendable='true' syncControlAllowed='true' execMode='sync' execLimit='0' resultLimit='0' resultOption='delete' visibility='runschedule' progressInterval='0'>
    <Extension>
    <WFProcess name='Find User WF' maxSteps='0'>
    <Activity id='0' name='Start'>
    <Transition to='Accept User ID'/>
    <WorkflowEditor x='99' y='47'/>
    </Activity>
    <Activity id='1' name='Accept User ID'>
    <ManualAction id='0' name='Enter User ID' timeout='60' syncExec='true'>
    <Owner>
    <ref>$(WF_CASE_OWNER)</ref>
    </Owner>
    <FormRef>
    <ObjectRef type='UserForm' id='#ID#CB00E29B1B211E5E:5673384:1141A79B1FE:-7FF3' name='Accept User ID Form'/>
    </FormRef>
    </ManualAction>
    <Transition to='Display Results'/>
    <WorkflowEditor x='183' y='45'/>
    </Activity>
    <Activity id='2' name='Display Results'>
    <ManualAction id='0' name='Results' timeout='60' syncExec='true'>
    <Owner>
    <ref>$(WF_CASE_OWNER)</ref>
    </Owner>
    <FormRef>
    <ObjectRef type='UserForm' id='#ID#CB00E29B1B211E5E:-435E4C45:114554237BF:-7F8B' name='Search Results Form'/>
    </FormRef>
    </ManualAction>
    <Transition to='Delete User'/>
    <WorkflowEditor x='266' y='99'/>
    </Activity>
    <Activity id='3' name='Delete User'>
    <Action id='0' name='Delete' process='TaskDefinition:Delete User'>
    <Argument name='type' value='User'/>
    <Argument name='accountId' value='$(view.waveset.accountId)'/>
    </Action>
    <Action id='1'>
    <expression>
    <block name='dump2'>
    <invoke name='dumpFile'>
    <invoke name='getTask'>
    <ref>WF_CONTEXT</ref>
    </invoke>
    <s>c:\dump.xml</s>
    </invoke>
    </block>
    </expression>
    </Action>
    <Transition to='End'/>
    <WorkflowEditor x='411' y='101'/>
    </Activity>
    <Activity id='4' name='End'>
    <WorkflowEditor x='529' y='121'/>
    </Activity>
    </WFProcess>
    </Extension>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    <Properties>
    <Property name='editorOriginalName' value='Find User WF'/>
    </Properties>
    </TaskDefinition>
    Thanks in advance for ur help

  • Com.waveset.util.WavesetException: User object null has no cache

    In the anonymous context i receive this error when i try and run the PasswordGenerator.
    com.waveset.provision.PasswordGenerator com.waveset.util.WavesetException: User object null has no cache, it cannot resolve the reference to ObjectGroup object Top.
    It works fine when i run it logged in as an end user or admin. Any ideas

    Yes you are correct i am in as an anonymous user trying to create a forgot password workflow. I was having issues with the password Generator because it required a WSUser object and in other posts it stated you could pass in a null object. However, in the anonymous context you cannot do that so once i discovered the account id in my workflow i had to call getObject for type User with the account id and pass that into the generate password method.
    Then it worked.
    Thanks

  • Com.waveset.util.ConfigurationError: Cannot find columns for table 'object'

    I am trying to install IDM on my own laptop and use MS SQL Server 2000 as the repository. I run the create table scripts, copy all the jar files to C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\Idm\WEB-INF\lib. But I still got the following error message:
    com.waveset.util.ConfigurationError: Cannot find columns for table 'object' ==>com.microsoft.sqlserver.jdbc.SQLServerException: Invalid object name 'object'
    Does anyone have any idea of what may cause this problem?
    THANKS!

    I found the solution to this issue.. is that the Database user ID must be set to the schema .. this is the statment that probably did not work:
    CREATE USER <username> FOR LOGIN <login name> with DEFAULT_SCHEMA = <database name>
    In sql 2005 expand the database... open security .. find the user.. right click and select properties.. in the default schema box.. select the SunSync database .. in the schemas owned by this user select the sunsync schema database..
    good luck

  • Demo Documentation for a Simple Cartridge Creation

    Hi,
    Thus anyone knows where i could find a Tutorial or a Demo documentation for implementing a Simple Cartridge in OSM 7.0.2?
    I'm trying to use all the components supplied from the Design Studio but i'm not understanding how to relate them and how to configure them in the correct way just by reading the documentation supplied in the installation.
    All Oracle documentation talks about concepts and the components in a separate matter, but no in a fully detailed How to implement a Cartrigde step by step, using all the components. The only tutorial that i saw was in the Developers Guide and is very, very simple.
    Thanks

    Hi,
    Following are some of the resources:
    1. From Design Studio: File -> New -> Example -> 2 examples under "Design Studio Order and Service Management Provisioning Examples"
    2. Sample SOM cartridge cartridge on OTN (I will put in some Orchestration Samples soon) -> https://www.samplecode.oracle.com/sf/projects/som/
    3. You can download the productize O2A cartridge cartridges from https://edelivery.oracle.com/. However, I would suggest you to look at option 1 & 2 before looking at the O2A cartridges.
    Cheers,
    Deepankar (Deep) Dey

  • Com.omd.session.WorkflowServices

    When i hit submit button for approval in create user workflow, i was thrown this error.
    com.waveset.WavesetException:Class com.omd.session.
    WorkflowServices not found.
    Is there anything i should be taking care of for this WorkflowServices.class file?
    Thanks.

    This is the server log file when this exception occured.
    [#|2007-05-01T18:01:47.226-0400|INFO|sun-appserver-ee8.1_02|javax.enterprise.system.stream.out|_ThreadID=12;|
    WARNING: Resolved reference placed in object with no cache.|#]
    [#|2007-05-01T18:01:47.230-0400|INFO|sun-appserver-ee8.1_02|javax.enterprise.system.stream.out|_ThreadID=12;|
    java.lang.Exception: printStackTrace
         at com.waveset.util.Util.printStackTrace(Util.java:6438)
         at com.waveset.object.PersistentObject.cacheWarning(PersistentObject.java:484)
         at com.waveset.object.PersistentObject.checkReference(PersistentObject.java:3112)
         at com.waveset.object.PersistentObject.checkReferences(PersistentObject.java:3147)
         at com.waveset.object.PersistentObject.addMemberObjectGroup(PersistentObject.java:1528)
         at com.waveset.workflow.WorkflowEngine.buildWorkItem(WorkflowEngine.java:4650)
         at com.waveset.workflow.WorkflowEngine.callManualAction(WorkflowEngine.java:4528)
         at com.waveset.workflow.WorkflowEngine.callAction(WorkflowEngine.java:4060)
         at com.waveset.workflow.WorkflowEngine.callAction(WorkflowEngine.java:3478)
         at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:3318)
         at com.waveset.workflow.WorkflowEngine.makeTransition(WorkflowEngine.java:2837)
         at com.waveset.workflow.WorkflowEngine.checkExplicitTransitions(WorkflowEngine.java:2728)
         at com.waveset.workflow.WorkflowEngine.checkTransitions(WorkflowEngine.java:2514)
         at com.waveset.workflow.WorkflowEngine.processSteps(WorkflowEngine.java:1919)
         at com.waveset.workflow.WorkflowEngine.walkCases(WorkflowEngine.java:1772)
         at com.waveset.workflow.WorkflowEngine.walkCases(WorkflowEngine.java:1680)
         at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:823)
         at com.waveset.workflow.WorkflowEngine.execute(WorkflowEngine.java:485)
         at com.waveset.workflow.WorkflowExecutor.execute(WorkflowExecutor.java:235)
         at com.waveset.task.Scheduler.execute(Scheduler.java:2434)
         at com.waveset.task.Scheduler.executeTask(Scheduler.java:2318)
         at com.waveset.task.TaskManager.executeTask(TaskManager.java:277)
         at com.waveset.workflow.Workflow.checkinWorkItem(Workflow.java:383)
         at com.waveset.server.InternalSession.checkinFull(InternalSession.java:2454)
         at com.waveset.server.InternalSession.checkinObject(InternalSession.java:704)
         at com.waveset.object.LighthouseContextWrapper.checkinObject(LighthouseContextWrapper.java:146)
         at com.waveset.view.WorkItemViewer.checkinView(WorkItemViewer.java:429)
         at com.waveset.object.ViewMaster.checkinView(ViewMaster.java:722)
         at com.waveset.session.LocalSession.checkinView(LocalSession.java:713)
         at com.waveset.ui.util.GenericViewSource.checkinView(GenericViewSource.java:522)
         at com.waveset.ui.util.GenericEditForm.process(GenericEditForm.java:583)
         at org.apache.jsp.user.workItemEdit_jsp._jspService(workItemEdit_jsp.java:398)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:251)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at com.sun.enterprise.web.connector.httpservice.HttpServiceProcessor.process(HttpServiceProcessor.java:234)
         at com.sun.enterprise.web.HttpServiceWebContainer.service(HttpServiceWebContainer.java:2124)
    |#]

  • CS5 RAW Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit the Camera Raw help documentation for additional information.

    I rented a Nikon D600 & D610 and CS5 cannot open the RAW files, i do not have any issued with my D700 RAW files. I am getting this error message -
    Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw.
    Please visit the Camera Raw help documentation for additional information.
    Can anyone please help?

    yellowmledbetter wrote:
    Sorry, I am on a MAC. I downloaded the link you provided and it's giving the same error message as above. Running CS5.
    The error message you gave is from Camera Raw. I thought you said that DNG Converter didn't work?
    The link I gave you is an article on getting your raw files to open in Camera Raw. Did you read it? I lazily gave you the link because this is one of the most common problems in this forum, and I get tired of saying the same thing over and over again. I could break it down for your specific case, but I was hoping you could read through the article and work it out for yourself.
    But, here goes:
    Your cameras are newer than your raw converter, so it won't understand them.
    CS5 comes with Camera Raw 6, which can only be upgraded as far as 6.7.1. You can find out which version of Camera Raw you are running in three ways: in the settings title bar (Cmd-K), in the plug-in title bar (press F to start/stop full-screen mode to reveal the title bar), or Photoshop's Help menu (About Plug-ins).
    Downloading raw files from newer Nikon cameras with old versions of Nikon Transfer will actually make them unreadable in Adobe software. They can be fixed with a free utility. Again, it's all in the linked article. You should be using up-to-date Nikon Transfer, or Adobe Photodownloader to avoid this problem.
    All being well, you have good raw files on your computer. You can convert them to dng using Adobe DNG Converter. IF you are on OSX Leopard or Snow Leopard, you CAN'T use the latest version, because Adobe stopped support. But, if you ARE on a later OSX, you can download DNG Converter 8.6.
    DNG Converter is designed to convert FOLDERS of raw files at a time. You select a folder of raw files, and tell it to create DNG copies. BUT, you have to set up the converter before you start using it...
    If you load up DNG Converter, you'll notice a button labelled "Change Preferences". Clicking this, you'll see the first option is "Compatibility". Here, you must select the appropriate setting for the version of Camera Raw you HAVE (see above). If you can't work this out, just pick "Camera Raw 5.4 and later". THEN pick a folder of raw files and convert them to DNGs.
    All the above is already in the article, but I gave you a personalised response. If you still can't get it to work, please give us more than one sentence. Tell us exactly what you tried, and describe exactly what happened. Which version of OSX you're running, what device and software you downloaded your raw files with, how you used DNG Converter, and so on.
    I really should be in bed.

  • Where can I find Documentation for Oracle financial installation

    Hi
    Where can I find Documentation for Oracle financial
    installation as which all modules to be downloaded for linuk server etc
    here is what I have found
    ===================================
    Oracle9i Application Server, Version 1.0.2.2.2 CD Pack for Linux x86 [Act as Server][to be installed on main linux server]
    ===================================
    Oracle® Applications 11i Release 9 CD Pack for Linux x86     [Act as client][to be installed on client sean,AJ,Vinod]
    ===================================
    Internet Developer Suite (1.0.2.4.1) CD Pack (with iAS Pack) for Microsoft Windows (32-bit)
    ===================================

    user11872870 wrote:
    Hi Tubby,
    http://www.quest.com/documents/list.aspx?SearchOff=true&ContentTypeID=20&prod=1
    This link has many pdf files but none has the useful information. Those pdf's are just 2 or 3 pages each.Sad Christmas for you then i suppose.
    Perhaps you could contact the vendor (quest) and get them to help you in your search for whatever it is you're looking for. An Oracle SQL and PL/SQL forum is not the venue for this, please mark the question as answered, and good luck in your search.

  • I can't find documentation for this app

    Hello,
    Where is the documentation for GarageBand for iOS? I installed it on my iPod, but the interface is confusing, so I need to find the right manual. All the manuals for GB on the Apple manuals page seem to be for desktops and laptops, etc.
    I know there are help files, but I do not have a wireless account so I can't access the Internet from my iPod.
    Any suggestions? Thank you!

    And here is a link to the iPhone/iPod version of the online help:
    http://help.apple.com/garageband/iphone/1.3/index.html
    Download the pages on a computer, that has internet and print them to pdf, then combine them to one pdf document and sync that document as an iBook to your iPod using iTunes.
    You may want to use the Send feedback. link to let Apple know that a pdf version of the Help is needed.

  • Is there any documentation for iBooks Author.

    Is there any documentation for iBooks Author.

    Apple has a FAQ article at: support.apple.com/kb/HT5071
    You can also go here for information: www.apple.com/support/mac-apps/ibooksauthor/
    Google also has a lot of third party information with a simple search.
    And of course you can always to to the iBooks Author forum here on Apple Support Communities. The link for that is here: discussions.apple.com/community/ibooks/ibooks_author

  • How to create documentation for report programs and how to use it

    how to create documentation for report programs and how to use it in the selection screen by placing an icon in the Applicatin Tool bar. If i click this icon the help documentation has to display.
      Note: Exaple <b>RSTXSCRP</b> programs selection screen

    Hi
    1 goto SE38 transaction, give the program name
    2 Click on documentation radiobutton & then press change
    3 Write your PURPOSE, PREREQUISITES etc details
    4 Save the same & Activae it.
    The icon will come automatically on selection screen
    Thanks
    Sandeep
    Reward if useful

Maybe you are looking for

  • Tax rate to be charged to customer

    Hi, Our customer has already paid us the billing amount but in few of the documents we need to charge the VAT amount to them.(it was decided later)(Also I am using MWST for Tax calculation) So, we can create a debit memo with reference but the proble

  • 10.6.8 update & Outlook

    Just upgraded to 10.6.8 - I am having a problem with Outlook Mac 2011.  I cannot create a "new email" - Command-N works for new calendars, tasks, appointments, etc, but I cannot create a new email.   Any suggestions for a fix?

  • How do I get rid  of a download?

    I have a movie that was downloaded, but now, after thinking I deleted it, it keeps coming back. How do I get rid of the movie permanently?

  • [how to]x-fi extreme pci-e - mic working at windows 7 x64

    Hi folks, after spending like 7 hours trying and trying to get my mic to work with the PCI Express X-Fi Xtreme Audio under windows 7 x64, I finally found the way! > Uninstall all creative software from program-list, without restarting yet, then unins

  • Flash security issue; Error #2170, crossdomain.xml

    Hi, we are using Xcelsius 2008, SP3, together with BO XI 3.1 SP2 (Edge; Linux) and SAP BW. We have build a dashboard using Query as a Web Service as datasource (pointing to a SAP BW query). When we export the Xcelsius file to the BO repository and ru