OTL Retrieval Process

In OTL, if there is requirement like we need to the state field in the Payroll timecard, and it should be transferred as an Input value (along with hours) once Transfer to BEE is run.
Could you please confirm if these are the steps to be followed
a) Make sure that the Payroll Elements have an Input Value for state(In my case Its is second input value in all the elements)
b) There is a value set with all the states in US(Its created in my case) . Mapped the 'State' field in Alternate Name Mapping to Mapping Component 'InputValue2'. (Which is attribute 2 of Dummy Element Context)
c) Added this in Alternate Names.
d) Added this alternate names to Timekeeper Layout.
e) In Timekeeper, the field for state should appear.
f) On filling the timecard and Transferring it via BEE it should go as an Element Entry with state inputvalue populated.
Also in Addition to this could you please explain how does the Alternate Name Mapping screen work in case of Value Set/Context field value as 'OTL Alternate Name DFF Context'. For example the seeded config like Payroll_Elements are mapped to Dummy Element Context (which is mapping component for pointing to Attribute Category od the DFF).
Thanks.

There is already a seeded value set and corresponding setup for state list. It is available for both timekeeper and the self service timecard. Self Service timacrd has a seeded layout to support state list. If you are on HXT.I or up, it shd be available.
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Text msgs and contact number retrieval process in case of deletion

    hi
    text mags and contact number retrieval process of deletion

    If you are asking how to restore deleted text messages, you have to restore your phone from a backup made while the messages were on your phone, if you have one.  This may restore deleted contacts in the same way but there is no guarantee (contacts are stored in the backup only to maintain favorites and the recent call list).

  • Error "Could not retrieve process instance" w UWL-GP thru Load Balancer

    Hi,
    We're using NW'04s EP SP14 for developing our portal website. An external load balancer balances the load between two portal instances CI & DI.
    We are getting an Exception "Could not retrieve process instance: contact your system administrator" when we try to access the UWL Requests through the Load Balancer though it is working fine with the direct HostName in the URL.
    SAP Note 1026119 did not solve the issue.
    Has anyone faced such an issue before?
    Thanks.

    Hi
    I am getting the same error, but when i tried to retrieve the process instance from nwa I see the process instance to be missing. I could not trace the process instance.
    Can you please tell me where else can i look for the process instance.
    Its very urgent
    Thanks and Regards
    Anitha

  • OTL Error Process default error notification receiver

    Hello,
    Problem is like follows:
    The OTL Worfklow for Employees (HXCEMP) goes in error: ORA-20001: PA_TR_NO_ROUTE_TO_PERSON: and this raises the OTL Error Process (OTL_ERROR_PROCESS) as child workflow whis sends notification to every user who has the 'Workflow Administrator Web Applications' responsibility.
    This responsibility is defined as Workflow Administrator in system (WF_ADMIN_ROLE).
    This is not OK that all the timecards notifications goes to users which are not related to these WFs at all.
    The workflow shows as Error Recipient Role "FND_RESP|FND|FNDWF_ADMIN_WEB|STANDARD"
    and FNDWF_ADMIN_WEB is the key of the responsibility mentioned before.
    I looked at the workflow definition, and the Error Recipient Role attribute is empty. I tried to put SYSADMIN or any other user as default, but the WF still took the Workflow Administrator as recipient.
    When putting everybody (*) Workflow Administrator, then the notifications are not sent at all, but we cannot put everyone as workflow administrator.
    The same when putting SYSADMIN user as Worfklow Administrator, as then not all the users who need, cannot see the WFs.
    Does any of You have idea how to change the recipient of these notifications? I could not find out why the WF is taking WFAdmin as default recipient.
    Thanks a lot,
    Ieva

    Hi,
    From what I can see in the image, the workflow is reporting a "No data found" error, but I can't see where.
    If you look at hte actual notification (from the list of activities for the process, click on the envelope icon next to the open notification), this should tell you where the error is occuring which will help track down the root cause of the problem.
    One other thing in passing - from the screenshot, it seems that your language hasn't been enabled for the Workflow install. You should be seeing (for example) "Expedite" instead of "WFMON_EXPEDITE" on the button prompts.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com

  • OIM API - Error while retrieving Process form child data

    Hi,
    I need to read all the child data in a process form.I wrote a piece of code and called it from process task adapter.The values are not getting retrieved and i am getting the error
    <tcFormInstanceOperationsBean/isProcessFormChildDataDataUnique: no PRF isKey set up for sdk:203>
    When i tested the same code from a standalone cliet,it is working.
    Any idea what I am doing wrong here?.Thanks

    878153 wrote:
    Hi,
    I need to read all the child data in a process form.I wrote a piece of code and called it from process task adapter.The values are not getting retrieved and i am getting the error
    <tcFormInstanceOperationsBean/isProcessFormChildDataDataUnique: no PRF isKey set up for sdk:203>
    This reads: there is no record in the Reconciliation Mapping table (PRF) for child Form (SDK table, key 203) containing the name of the column in the child form which refers the record in the parent Form.
    The failed SQL query is as follows:
    select prf_columnname from prf where sdk_key=203 and prf_iskey='1'
    Probably you've passed the wrong child form Form?
    Regards,
    Vladimir

  • Retrieving process id from a batch file

    Hi friends,
    I am having a problem to retrieve the process id from a batch file. I will give the code which I have written and if anyone can help me it will be grateful. I am having time pressure. Here when I call
    Process p = rt.exec("checkExec.bat");
    the process is getting created. What I need is "I have to get the process id inside the batch file and then I have to store that process id to a file. My problem is "HOW CAN I GET HOLD OF PROCESS ID". Please give some guidance.
    !!!!THANKS IN ADVANCE !!!
    PROCESSTEST:
    public class ProcessTest {
         * @param args
         public static void main(String[] args) throws IOException {
              Runtime rt = Runtime.getRuntime();
              try {
                   Process p = rt.exec("checkExec.bat");
              } catch (IOException e) {
                        e.printStackTrace();
    CHECKEXEC.BAT
    cd bin
    java duo.CalledProcess
    CALLEDPROCESS
    public class CalledProcess {
         * @param args
         public static void main(String[] args) {
              try {
                   Runtime rt = Runtime.getRuntime();
                   synchronized (rt) {
                        while(true){
                             rt.exec("notepad");
                             long sec = 100000;
                             rt.wait(sec);
              } catch (InterruptedException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }

    problem is "HOW CAN I GET HOLD OF PROCESS ID".You can take it from the Operating System using JNI.

  • Retrieve processed message payload from database

    Hi,
    We need to retrieve the payload of all the messages which have been processed in last 1 month.
    We do not have the message archiving configured currently.
    Could you please let us know how can i retrieve the payload? We can not do it manually as the voulme is really huge.
    Please help with suggestions.
    Thanks,
    Jane

    If you are not archiving the messages then i don't think you can get the payloads for last one month.
    However there is a service using which you can retrieve the payload.
    PI/XI: how to get a PI message from java stack (AAE) in PI 7.11 from ABAP?
    You can write a wrapper around and download multiple payloads.

  • How to retrieve Process Role Name

    Hi @ all,
    can anyone tell me how to retrieve the Name of the actual processing Role in a web dynpro callable object.
    Until now I just found out how to get the technical name in the execute() method. Unfortunately it's not the human readable name.
    e.g.
    String name  = executionContext.getProcessRoleInstance().getProcessRoleTechName();
    Thanks and Regards
    Robert

    Hi Robert,
    After you created a process, block, action, and your WD GP interface callable object and would retrieve this information in custom way you can use the following coding:
    <code>
    String processId = executionContext.getProcessId() ;
    IGPRuntimeManager runtimeManager = GPProcessFactory.getRuntimeManager() ;
    IGPProcessInstance process = runtimeManager.getProcessInstance(processId, getCurrentUser()) ;
    IGPProcess processTemplate = (IGPProcess)process.getTemplate() ;
    int gpRolesSize = processTemplate.getRoleInfoCount() ;
    String roleDisplayName = null ;
    for (int i = 0; i < gpRolesSize; i++)
           IGPRoleInfo role = processTemplate.getRoleInfo(i) ;     if (role.getRoleName().equals(roleTechName))
                roleDisplayName = role.getText()
                break ;
    </code>
    Best regards,
    Aliaskei

  • Retrieving process user id

    How can I retrieve the process-user-id of a java application?

    Have a look at UnixSystem
    http://java.sun.com/j2se/1.4.2/docs/guide/security/jaas/spec/com/sun/security/auth/module/UnixSystem.html
      UnixSystem us = new UnixSystem();
      String userName = us.getUsername();
      int userId = us.getUid();

  • I need to know if I have been scammed, this is an email I received after purchasing a new iphone If you can't remember your Apple ID password, or want to change it, use the password retrieval process at My Apple ID. Follow these steps to change your Apple

    I have no idea what I am doing?  can you read my question?
    Thank you

    Go here to reset it: https://iforgot.apple.com/iForgot/iForgot.html.  After getting the new password, you'll need to sign out, then sign back in on your device using the new password (Settings>iTunes & App Stores, tap the ID, sign out, then sign back in).

  • Adding Period on OTL Timekeeper find window

    Hi,
    I went through with all the steps of setting up OTL. When i open OTL time keeper first the *"Find"* window open which contains different fields along with Period field.
    My question is how can we add more period* in the list of values of this Period field on Find screen*
    Regards
    Majid

    Any tips people?
    Can this be achieved?
    This is what i have done so far.
    1. Created a new Value set for the custom field.
    2. Created an alternate mapping to map the value set value to InputValue13.
    3. Created the alternate name.
    4. Added the alternate name to 'OTL Alternate Names' DFF.
    5. Added the Alternate name to the 'Preferences'.
    Testing:
    1. Created a Timecard populating the custom field.
    2. Timecard submitted and approved successfully.
    3. I verified that the custom field value goes into attribute13 of hxc_time_attributes where the attribute category is the corresponding element (should it be against the attribute category: Dummy Element Context? If Yes, then how to do it?).
    4. Then i ran the program 'Transfer Time from OTL to BEE'. This transferred the values into hxt_timecards_f, hxt_sum_hours_worked_f, hxt_det_hours_worked_f. But nowhere in these tables do i see the custom value.
    Did i miss any step? I did not define anything in the 'Define Mapping Components' of Deposit/Retrieval Process because InputValue13 is already part of it unter type 'Dummy Element Context'.
    5. Since it is not in hxt tables, i did not find it in pay_batch tables too.
    Any guidance is appreciated.
    Regards,
    Jay

  • OTL Timekeeper Form Custom Field map to specific Element Input Value

    Hello Everyone,
    I have the below requirement.
    1. Create a custom field in OTL Timekeeper Form. This field is based on the Element Selected on the timecard.
    2. Once the Timecard is transferred to Payroll, the custom field should go to a specific input value of that element.
    I know how to perform Step 1 above. But i am unable to find out how i can map the value in custom field to a specific Input value of the element.
    Any inputs are appreciated.
    Regards,
    Jay

    Any tips people?
    Can this be achieved?
    This is what i have done so far.
    1. Created a new Value set for the custom field.
    2. Created an alternate mapping to map the value set value to InputValue13.
    3. Created the alternate name.
    4. Added the alternate name to 'OTL Alternate Names' DFF.
    5. Added the Alternate name to the 'Preferences'.
    Testing:
    1. Created a Timecard populating the custom field.
    2. Timecard submitted and approved successfully.
    3. I verified that the custom field value goes into attribute13 of hxc_time_attributes where the attribute category is the corresponding element (should it be against the attribute category: Dummy Element Context? If Yes, then how to do it?).
    4. Then i ran the program 'Transfer Time from OTL to BEE'. This transferred the values into hxt_timecards_f, hxt_sum_hours_worked_f, hxt_det_hours_worked_f. But nowhere in these tables do i see the custom value.
    Did i miss any step? I did not define anything in the 'Define Mapping Components' of Deposit/Retrieval Process because InputValue13 is already part of it unter type 'Dummy Element Context'.
    5. Since it is not in hxt tables, i did not find it in pay_batch tables too.
    Any guidance is appreciated.
    Regards,
    Jay

  • Error in Transfer Time from OTL to BEE

    Hi Gurus
    I am getting an error "The query returned no results." when running the Transfer Time from OTL to to BEE, for a single person.
    I have the preference Evaluate Rules to No and the profile option "OTL: Transfer to OTLR" to "BEE Only".
    I have the "Changes Since" parameter to the default 999 days from sysdate.
    Any ideas, what must be causing this.
    Thanks
    Srinivasa

    Hi Tim -
    Heres what I did, slightly diffrent from what I did earlier
    1. Set the preference "Time Store Approval Periods" to "Weekly Periods - Starts Sunday" (the seeded recurring period)
    2. Preference "Time Store Application Set" is set to "Payroll"
    3. Preference "Time Store Approval Style" is set to "Approval on Submit"
    4. Preference "Time Store Retrieval Rule Groups" is set to "XXX Retrieval Rule Grp (Payroll Only)"
    This retrieval rule group is tied to a Retrieval rule which is tied to a copy of the std retrieval process "BEE Retrieval Process" with application set to "Payroll"
    Using Authorized Delegate page, entered time for an employee for 01-FEB-2009 to 07-FEB-2009.
    After timecard submission, see the timecard status as approved. So far so good.
    But when I submit the "Transfer Time from OTL to BEE", it still errors out with "The query returned no results".
    My Parameters to this program are
    Start Date: 01-FEB-2009
    End Date: 07-FEB-2009
    Retrieval Transaction Code: XYZ3
    Batch Selection: New
    New Batch Reference: XYZ5
    Status in BEE: Unprocessed
    Changes Since: 13-MAY-2006 10:21:12
    I also ran the OTL_Diag script for HXC_TC for the person_id and 3rd parameter as 01-FEB-2009.
    I found something in there, which I am wondering may be causing the Issue.
    On the html report output, on the section "HXC_TIME_BUILDING_BLOCKS - Other" for the scope "APPLICATION_PERIOD"
    on the "Application_Set_Id" column, the value is null.
    But if i look at the other building block sections like HXC_TIME_BUILDING_BLOCKS - Detail/Day/Timecard the "Application_Set_Id" column is having the value of 5 which corresponds to the Application Set "Payroll".
    Could this be the Issue? If so What would be causing this?
    Thanks
    Srinivasa

  • OTL - loading approved timecards

    Hi,
    Is it possible to load approved timecards?
    I notice there is a mode parameter for the hxc_timestore_deposit .execute_deposit_process procedure, however I did some searching on metalink and this only seems to be talked about in relation to migrating from OIT to OTl using the paxtmotl.sql script.
    This script looks like it migrates via the Projects Retrieval process... we want to automatically approve the time card if it perfectly matches the standard shift... but if there is any variance (eg overtime, unpaid time), then it needs to be sent to the manager for approval. Any suggestions on where to find more information on the mode parameter?
    The other alternative is to modify the workflow to automatically avoid sending to the approver if it is a standard time card. I am just worried about modifying this standard workflow, as it might get overwritten by patches.
    Any help is much appreciated.
    Will

    Your requirement still looks vague. Do you just want to auto approve the timecard based on some criteria otherwise send for approval?
    If that is the case, you can attach a Time entry rule which will check your criteria and the then follow either of the cases based on rule evaluation.
    --Saroj                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Creating a new work item instance in a process using PAPI

    I'm seeing that there are a lot of questions on this forum about using Oracle BPM 10g's Java API called PAPI.
    I just uploaded a step by step document on how you could do this using JDeveloper 11. Here's the link to this document: http://www.4shared.com/file/126507332/e814a3a8/CallingPapi.html. The Oracle BPM project I used for this step-by-step document is also in this zip file. If you're curious, this also describes how to download, install and start JDeveloper 11.
    This is not formal Oracle documentation, but I know from teaching our Oracle BPM Bootcamp class that getting PAPI to work is sometimes a challenge and thought this might help. I tried to write it with the "Java Newbie" in mind so do not panic if you aren't an expert in Java (I'm sure not ?:| ).
    This is a simple example that uses most of the logic found in the PAPI documentation on http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/papi/index.html?t=modules/papi/c_Head_PAPI.html in the "Writing Your First Java PAPI Program" section of this document.
    The document provides a step-by-step description on how how to use PAPI to:
    <li> interface to processes running on an Oracle BPM Enterprise Engine using the same logic that is in the Oracle BPM PAPI documentation
    <li> interface to processes running on an Oracle BPM Studio Engine
    <li> list processes currently running on the Engine using the same logic that is in the Oracle BPM PAPI documentation
    <li> list the work item instances running on the Engine using the same logic that is in the Oracle BPM PAPI documentation
    <li> create a new work item instance in a process and pass in input argument variables to the new instance as it is created.
    Hope you find this useful,
    Dan

    Hi
    i have gone through your example. It gives good information how to connect to BPM engine through java papi client. I have followed exactly the same steps given in the PDF document. But it throws the exception on both java client side and BPM Suite.
    Steps followed :
    1. Import sampleproject.exp into Oracle BPM studio and start the BPM engine.
    2. Imported the fuegopapi-client.jar and Write the JAVA PIPA client to connect Oracle BPM Engine.
    complete example code:_
    import fuego.papi.CommunicationException;
    import fuego.papi.InstanceInfo;
    import fuego.papi.ProcessService;
    import fuego.papi.ProcessServiceSession;
    import fuego.papi.OperationException;
    import java.util.Properties;
    public class ProcessAPIClient {
         public static void main(String[] args) {
    /////////////////// API Initialization ///////////////////
    Properties configuration = new Properties();
    configuration.setProperty(ProcessService.DIRECTORY_ID, "default");
    configuration.setProperty(ProcessService.DIRECTORY_PROPERTIES_FILE, "directory.xml");
    configuration.setProperty(ProcessService.PROJECT_PATH, "C:\\Oracle\\OracleBPMWorkspace\\SampleProject" );
    configuration.setProperty(ProcessService.WORKING_FOLDER, "/tmp");
    try {
    ProcessService processService = ProcessService.create(configuration);
    /////////////////// Establish a session ///////////////////
    ProcessServiceSession session = processService.createSession("test", "test", null);
    /////////////////// Operate with PAPI ///////////////////
    for (String processId : session.processesGetIds()) {
    System.out.println("\n Process: " + processId);
    for (InstanceInfo instance : session.processGetInstances(processId)) {
    System.out.println(" -> " + instance.getId());
    /////////////////// Close the session ///////////////////
    session.close();
    /////////////////// Release API Resources ///////////////////
    processService.close();
    } catch (CommunicationException e) {
    System.out.println("Could not connect to Directory Service");
    e.printStackTrace();
    } catch (OperationException e) {
    System.out.println("Could not perform the requested operation");
    e.printStackTrace();
    It throws the following exception and output on java client._
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Could not enhance type with bytecode info: java.lang.NoSuchMethodError: org.apache.bcel.classfile.Method.getArgumentTypes()[Lorg/apache/bcel/generic/Type;
    Creating ProcessService with id 'SampleProject'.
    Local folder /tmp\system\Schema33871921573571055\catalogs found.
    Loading catalogs from local folder: /tmp\system\Schema33871921573571055\catalogs
    0 jars found locally.
    [CatalogMgrCache] =======================
    Registering CatalogMgr [SampleProject] ...CatalogManagerCache 23240993:
    Managers:
    Counters:
    [CatalogMgrCache] =======================
    CatalogMgr [SampleProject] REGISTERED!CatalogManagerCache 23240993:
    Managers:
    {SampleProject=fuego.util.LocalCatalogManager@40b187}
    Counters:
    ProcessService 'SampleProject' created successfully.
    Process: /SampleProcess#Default-1.0
    Unreachable Engine Tolerance (seconds):
    by default: 0
    to be used: 0
    This papi client will not cache exceptions which imply that an engine could not be reached.
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/jms/MessageEOFException
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at $Proxy24.<clinit>(Unknown Source)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at fuego.papi.impl.AbstractProcessControlHandler.newProxyInstance(AbstractProcessControlHandler.java:52)
         at fuego.papi.impl.rmi.RMIProcessControlHandler.createProxy(RMIProcessControlHandler.java:47)
         at fuego.papi.impl.rmi.RMIEngineAccessImpl.createProcessControl(RMIEngineAccessImpl.java:111)
         at fuego.papi.impl.ProcessServiceImpl.createProcessControl(ProcessServiceImpl.java:1082)
         at fuego.papi.impl.ProcessServiceSessionImpl$1.run(ProcessServiceSessionImpl.java:2698)
         at fuego.papi.impl.ProcessServiceImpl.executeEngineOp(ProcessServiceImpl.java:1675)
         at fuego.papi.impl.ProcessServiceSessionImpl.getProcessControl(ProcessServiceSessionImpl.java:2703)
         at fuego.papi.impl.ProcessServiceSessionImpl.processGetInstances(ProcessServiceSessionImpl.java:2365)
         at com.eds.comet.bpm.oracle.papi.client.ProcessAPIClient.main(ProcessAPIClient.java:30)
    Caused by: java.lang.ClassNotFoundException: javax.jms.MessageEOFException
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         ... 16 more
    It throws the following exception and output on Oracle BPM Suite._
    Client 'Id=test, Name=test, In=1, Session=564242434' was not found in lists ', PARTICIPANTS' while disconnecting it.
    Please help me to resolve this. I noticed it is able to connect BPM engine and retrieve process list. But while getting instances, it throws the exceptions on both Java Client and BPM engine side.
    Thanks and Regards
    Mahesh

Maybe you are looking for

  • How do I point my new Macbook at my iTunes Library on my NAS

    Hi I've recently bought a Macbook Air and switched from a Windows 7 laptop.  I have my iTunes library (and my wife's library) located on my NAS. I now need to configure my Mac user accounts to use the libraries on the NAS (QNAP).  I no longer have ac

  • Customer exit for changing order quantiy and scrap quantiy in MD11?

    Hi gurus, My objective is to update the order quantity and scrap quantiy field as per some logic and overwrite the existing values in MD11 (create planned order). Can you suggest the correct exit for incorporating these changes Thanks

  • Error about base class not being found in custom class when extending

    I have gone through the process of extending the base View Object oracle.apps.icx.lov.server.ExpenditureTypeNoAwardLovVO. My extension object is: snl.oracle.apps.icx.lov.server.SnlExpenditureTypeNoAwardLovVO. The extension was done to change the quer

  • How do I add a logo in the header of a TestStand 2012 HTML report?

    I've been trying to add a company logo to the header of a HTML report on TestStand 2012 without success. I've followed the help topic below however this seems to be for TestStand 3.1 and does not work on 2012.  http://digital.ni.com/public.nsf/allkb/

  • Creating APEX bookmarks to pages

    Hello, I have an APEX application with many forms, so I'm trying to create a "bookmark this page" function for my users..something that inserts the pageID into a "favorites" table, along with the appuserID, that sort-of thing. I've got a prototype wo