Reassigning of task using API in OIM11g

HI Folks,
Can someone help me how to reassign task using API in OIM 11g?
The request is created and assigned the task to xelsysadm by default.
I want the task be reassigned to approvers group by retrieving all the pending task of xelsysadm.
The issue here is tcRequestOperations is no longers works in 11g.
I checked the RequestService API , it doesnt have a method of reassigning task.
Are there any ways aside from using API?
Hope you guys can help me here.
thanks,

You'll have to use SOA APIs for the same.

Similar Messages

  • Reassign a task using API

    Hello,
    I'm trying to make a custom ADF worklist application for BPEL 10.1.3.3.
    I have to add a reassignment feature.
    I've seen the reassignTask(IWorkflowContext context, Task task, java.util.List taskAssignees) of the ITaskService interface. But I cannot create the taskAssignees list (List of ITaskAssignee objects representing the users/groups to reassign the task to). How can I create those ITaskAssignee objects?
    Is there another way to reassign the task?
    Thanks
    Panos
    (always under panic)

    Hi,
    I believe you want to create instances of TaskAssignee (an implementation of ITaskAssignee). e.g.
    ITaskAssignee assigneeUser = new TaskAssignee("istone", false);
    Where parameter 1 is the identity name, parameter 2 a boolean to indicate whether the assignee is a group. In that example we want a user so the flag is set to false.
    You can then populate a List with these objects and send that along as your taskAssignees parameter to reassignTask.
    List assignees = new ArrayList();
    ITaskAssignee assigneeUser = new TaskAssignee("istone", false);
    assignees.add(assigneeUser );
    client.getTaskService().delegateTask(ctx, taskId, assignees);
    I've not tested this as yet, I just happen to be working on something similar right this very moment.
    Rob

  • Reassign human task using tasklist application...

    Tasklist app have built in reassignment capability.
    We tried to move javascritpt functions from TaskRouting.jsp to our auto generated human task from.
    But when we want to reassign or delegate a task to other user fallowing error occurs.
    An error occured while processing your request.
    If you need more information, please check with your administrator with the following exception-identifier: "2007/12/13_05:49:32:375_jcooper"
    After Succesyfull search using TaskRouting.jsp and turn back our form.
    Then We can use our froms to reassign task.
    succesifull request and unsucsyfull request's HTML's are identical. so w can't find source of this error
    is there any one tried to make this.
    Thansk for your help...

    Errro log contains fallowing execption.
    we can't find where the user "d" came from ...
    <2007-12-13 17:33:57,890> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Verify that user "d" exits in realm "jazn.com". Contact oracle support if error is not fixable.

  • UWL tasks using API

    Hi all,
    I am trying to create UWL tasks from webdynpro using the UWL API. but i am not able to do so.
    I am using the below code for it.
    IPushChannel push = uwlService.getPushChannel();
    IProviderConnector connectors[] = uwlService.getRegisteredProviderConnectors();
    int thisConnector = 0;
    for(int j=0; j<connectors.length; j++){
    x.reportSuccess(connectors[j].toString());
    if(connectors[j].getId().equalsIgnoreCase(IProviderConnector.WEBFLOW_CONNECTOR_ID))
    thisConnector = j;
    if(thisConnector > 0) {
    Item item =new Item(
    IProviderConnector.WEBFLOW_CONNECTOR_ID,
    "USER.R3_DATASOURCE.INABBEPSKA",""+new Date().getTime(),
    "USER.R3_DATASOURCE.INABBEPSKA "
    item.setDescription("This describes a task created at "+new Date().getTime());
    item.setUser("USER.R3_DATASOURCE.INABBEPSKA");
    item.setSubject("This was generated at "+ new Date().getTime());
    item.setItemType(ItemType.UWL_ITEM_TASK_EXECUTABLE);
    item.setCreatedDate(new Date());
    item.setDueDate(new Date());
    item.setCreatorId("USER.R3_DATASOURCE.INABBEPSKA");
    item.setStatus(StatusEnum.NEW);
    item.setExternalObjectId("2");
    // item.setExternalType("AdHocTask");
    Set users = new HashSet();
    users.add("USER.R3_DATASOURCE.INABBEPSKA ");
    push.pushSharedItem(
    connectorsthisConnector,
    item,
    users
    } catch (Exception e) {
    x.reportSuccess(e.toString());
    Where am i going wrong!!!!!!!!!!
    the tasks are not being created in UWL iview.
    Regards,
    Sudheer.

    Hi Sudheer,
    I have used the below code to create a task in the UWL, u can try with this code,
    try
              IUser creator = null;
                         IWDClientUser clientUser  =  WDClientUser.getCurrentUser();
                         sapUser = clientUser.getSAPUser();
              creator = sapUser;
              IJWFPortalService service =     (IJWFPortalService) PortalRuntime.getRuntimeResources().getService(IJWFPortalService.KEY);
              IWorkflow eWF = service.getWorkflowEngineJMS();
              Hashtable taskCtxt = new Hashtable();
              taskCtxt.put("_wftemplatename_","QuickTask");
              taskCtxt.put("_wfdescription_","Description of the Task");
              taskCtxt.put("_wftaskassignees_","sapuserid of the assignee");
              taskCtxt.put("_wfdueasap_", "ASAP");
              Hashtable appCtxt = new Hashtable();
              appCtxt.put("mysystem", "SAP_LocalSystem");
              appCtxt.put("mylaunchcontext", "uwl");
              appCtxt.put("myappcontext", "test");
              eWF.createTask("Title of the Task",creator,taskCtxt,null);
         catch (Exception e)
              wdComponentAPI.getMessageManager().reportSuccess(e.toString());
    Regards,
    Kalaivani

  • OIM 11g - How to run a schedule task using API

    Hi All,
    May I know how i can run a schedule job in OIM 11g through API.I referred the below link but it is for 9.x version.I need the same functionality in 11g?.
    Schedule Tasks
    Thanks in advance.

    Check this :
    SchedulerService schService = oimClient.getService(SchedulerService.class);
    schService.triggerNow("Second Demo Scheduled Task");
    API Reference :
    void triggerNow(java.lang.String jobName)
    throws SchedulerException,
    SchedulerAccessDeniedException
    Runs the specified job
    Parameters:
    jobName - The job that is to be triggered
    Throws:
    SchedulerException - when an error occurs at the Quartz Engine or scheduler is not running.
    SchedulerAccessDeniedException - This exception will be thrown if access permission for operation is not available to the user

  • Error in reassigning the task

    hi,
    I have a simple bpel process which has a human task.
    The task is assigned to a group.
    But when i am trying to reassign the task to other user i am getting following error:
    Invalid action on workflow task.
    Action UPDATE on task a7a61c38dd54a6cb:307e7047:120797994db:-7960 is not valid because of The task has been acquired by some other user..
    Contact oracle support if error is not fixable.
    I am trying to reassign the task using "bpeladmin" as user. The bpeluser is able to acquire the task.But while updation of task am getting the above error.
    Following is the code snippet used.
    IWorkflowContext wfCtx= taskQuery.authenticate("oc4jadmin", "oc4jadmin","jazn.com","bpeladmin");
    TaskAssignee taskassignee = new .TaskAssignee("AdminRole",true);
    +     List assigneeList = new ArrayList();+
    +     assigneeList.add(taskassignee);+
    +               +
    +     Task t1=taskService.acquireTask(wfCtx, taskId);+
    +                    +
    +     SystemMessageAttributesType objSystemMessageAttributesType=t1.getSystemMessageAttributes();+
    +     objSystemMessageAttributesType.setTextAttribute7("Y");+
    +     Task t2=taskService.updateTask(wfCtx, t1);+
    +     Task t3=taskService.reassignTask(wfCtx,taskId,assigneeList);+
    Any help appreciated!!
    Regards,
    Bhavik

    hi,
    jcooper user is assigned to LoanAgentGroup, when i try to acquire the task and update and reassign it ,it is working fine.
    Following is the error stack trace that i am getting for bpeladmin as user:
    Apr 7, 2009 2:23:30 PM oracle.j2ee.rmi.RMIMessages EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER
    WARNING: Exception returned by remote server: {0}
    ORABPEL-30036
    Invalid action on workflow task.
    Action UPDATE on task a7a61c38dd54a6cb:307e7047:120797994db:-7960 is not valid because of .
    Contact oracle support if error is not fixable.
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3416)
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3440)
    at oracle.bpel.services.workflow.task.impl.TaskService.updateTask(TaskService.java:488)
    at oracle.bpel.services.workflow.task.ejb.TaskServiceBean.updateTask(TaskServiceBean.java:135)
    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 com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:622)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at TaskServiceBean_RemoteProxy_68d4144.updateTask(Unknown Source)
    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 com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: ORABPEL-30036
    Invalid action on workflow task.
    Action UPDATE on task a7a61c38dd54a6cb:307e7047:120797994db:-7960 is not valid because of The task has been acquired by some other user..
    Contact oracle support if error is not fixable.
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3408)
    ... 31 more
    ORABPEL-30036
    Invalid action on workflow task.
    Action UPDATE on task a7a61c38dd54a6cb:307e7047:120797994db:-7960 is not valid because of The task has been acquired by some other user..
    Contact oracle support if error is not fixable.
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3408)
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3440)
    at oracle.bpel.services.workflow.task.impl.TaskService.updateTask(TaskService.java:488)
    at oracle.bpel.services.workflow.task.ejb.TaskServiceBean.updateTask(TaskServiceBean.java:135)
    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 com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:622)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at TaskServiceBean_RemoteProxy_68d4144.updateTask(Unknown Source)
    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 com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Regards,
    Bhavik
    Edited by: user644879 on Apr 7, 2009 2:00 AM

  • Access KM using API as predefined user

    Hello, dear experts!
    Currently I am going to use KM as file storage for my application. I want to prevent direct access to KM content for all users and allow them to upload and download files only using my application.
    The problem is:
    I use not context of current user but some user found in UME.
    IUser user = UMFactory.getUserFactory().getUserByLogonID("Administrator");
    com.sapportals.portal.security.usermanagement.IUser ep5User = portalUserFactory.getEP5User(user);
    context = new ResourceContext(ep5User);
    When I try to operate KM (for instance create new folder) I get error: "User <Administrator> is not authenticated"
    But user "Administrator" has all rights to access KM.
    Is it possible to access KM using API as different user? Or is there another way to solve the problem?
    Best regards,
    Anton.

    Hi, Praveen!
    Thank you for your answer. Your code works fine!
    But when I created my own service user "service_user" under Content Management  -> Utilities -> System Principals I cannot get resource context even after restarting servlet engine.
    I get an exception java.security.PrivilegedActionException: com.sapportals.wcm.repository.ResourceException: User management exception: Could not get service user "service_user".
    This user has the same permissions as "cmadmin_service".
    Also user with the same name was created in UME.
    May be I should execute some additional administrating task?
    Best regards,
    Anton.

  • Human Task Java API

    Hi
    I have a requirement to create human tasks without using soa. I am trying to use the Human task Java API. Using this API I can do all the operations like updating the outcome, adding/updating comments and updating assignee list but not able to create initial task. I am using initiateTask operation which requires task definition id. I dont know how to set this. Can anybody guide me
    1. Can I create human tasks without using composite pure java api?
    2. If I am able to create initial task what will be the task definition id? I tried to enter a new row in soa infra meta data table which did not work.
    I really appreciate the help.
    Thanks

    Hi Sri
    I have few Processes deployed to my SOA Domain and that too under different Partitions. For ease of maintenance, in EM Console under soa_infra node instead of default partition we can have our own Partitions also to deploy specific workflow projects under those partitions. If you don't have this thats ok.
    I looked at Payload data for all the Tasks submitted by the first Initiator Task in EM Console, when we check the Flow Trace etc. Here is what I found for <taskDefinitionId> value for each of my different Processes. They do have some Pattern. So you had to use some sort of properties file to get these values so that if they are deployed to different partitions and with different versions, you do not have to modify your java code and recompile it. Just modify .properties file.
    Anyhow, looks like the format for <taskDefinitionId> is something like this:
    NameOfPartition + "/" + NameOfProcess + "!" + VersionNumber + "/" + NameOfInitiatorHumanTask
    Here are some examples from my domain for some of the Process.
    <taskDefinitionId>default/SalesQuoteProcess!1.0/EnterQuote</taskDefinitionId>
    <taskDefinitionId>Ravi1_Partition/CreditReviewRequestProcess!1.0/HumanTaskCreditRequestor1</taskDefinitionId>
    <taskDefinitionId>Jegga1_Partition/HolidayProcess!1.0/StartNewHolidayTask</taskDefinitionId>
    You already tried hardcoding it I guess and it worked. Now try generating them dynamically using simple String appenders and sort of properties file to make it more dynamic. How often do we really change partition name or human task name itself or name of process itself. They are pretty much fixed. Now comes only the Version number. This can change with your new deployment if you want to have different version. So just read all these from .properties file.
    Thanks
    Ravi Jegga

  • Creating attestation tasks using code

    Is there anyone out there with experience of creating new attestation process tasks (APT table) and reassigning specific attestation task details (ATD table) to the new attestation process tasks?
    My situation: I have a resource object that is assigned to the person that I want to perform the attestation. I create the attestation normally but the only choice I have is to assign all tasks to a single individual or to the user's manager. I choose a single individual. Once this attestation runs I want to reassign each task to a different user, however, there is only one task (APT record) created and all the task details (ATD records) are associated with that one task. I need to create new tasks for each request and associate the two. I have been able to reassign attestation tasks from one user to another by simply changing the usr_key on the APT table record but I am not sure if I can just insert a new row in the APT table and set all values to associate it with the proper ATD and ATR records and not muck something up in the attestation process.
    Feel free to criticize my idea, all feedback is welcome. Thanks!
    Edited by: h.mcpherson on Oct 29, 2010 6:32 AM

    Kevin,
    Thank you for your reply. Could you please give me some details on the API you are refering to? This might directly solve my dilemma. I found no methods in the javadocs for AttestationDefinitionOperationsIntf or AttestationOperationsIntf for reassigning the attestation request details to a different user.

  • Office 365 Reseller - Provision of new Office 365 business using API's?

    Hi,
    I couldn't work out which category to put this into. We have built our own provisioning and billing portal which is currently used to provision phone services. We currently resell hosted exchange and are looking to resell Office 365. Are there any API's
    available for Office 365 for the creation, management, deletion of businesses and users within that business. We want all of the functionality of the office 365 partner and admin portal but we want all tasks to be completed within our own provisioning portal
    using API calls to the office 365 admin tools?
    For example, you can purchase office 365 from the godaddy website, we want to be able to do that.
    Thanks.

    Hi,
    Could anyone advise on this matter ?
    Thanks,
    Kind regards.

  • Send an escalation e-mail without reassigning a Task

    Hi There,
    I came across this scenario recently, and I just wanted to check if it was possible, or what would the best way to achieve it.
    Lets say we want to notify a Supervisor or Administrator by e-mail when any User has not completed a task within a set period?
    - I can't use a "Reminder", because it only goes to the Task Owner
    - I can't use an "Escalation" because it reassigns the Task
    - I could "deadline" the Task, but it means reassigning it "back" to the owner, which starts the clock again, which is not really what I want to do.
    - I could setup a custom alert in BAM that e-mails a warning, but this (out of the box) does not use the Business Calendar (i.e. a 3 day period will include weekends)
    Whats the *best* way, do you think?  Or is it a worthy request in the Product?
    Thanks!

    You can probably do it, though Flash won't be able to send anything.  Flash could only go as far as opening the user's email client with some information already filled in.  It couldn't execute sending that email.  What you will need to do is have a server-side script (such as a PHP script) that Flash sends the data to that prepares and sends the email.
    You probably also want to have something that prohibits sending more than once, such as removal of the data from wherever Flash gets it or a change in status that Flash uses or some email logging system that the PHP file checks against.

  • Add approval task through API call

    Hello, I am attempting to solve the following problem.
    I have a UDF defined on the Resource Objects form (OBJ table), this filed contains a comma delimited list of OIM groups which is of size n (based on the resource object).
    I would like to create an approval task for each group in this list. In addition i would like the name of each task to show up as the group name. so when a user logs into the UI and looks at the approval details the see the approval task as the group name.
    I have been able to add a task using tcProvisioningOperationsIntf.addProcessTaskInstance API however this API does not allow me to modify 1) the group to assign the request to and 2) the name of the task.
    thanks

    Hey Kevin, thanks for responding.
    This query will allow me to get the process task key, so i can be added to the approval task via. tcProvisioningOperationsIntf.addProcessTaskInstance. However the issue is, no task currently exists. So before i can add an instance of the task i have to actually create a new task. but i was un-sure how to accomplish this through api calls.
    The goal here is to allow a list of groups to be configurable at the resource level without having to modify the approval process.
    thanks

  • How to get the process instance key so as to retry a rejected task through api while ad provisoing?

    Hi All,
    How to get the process instance key so as to retry a rejected task through API while AD provisioing state?
    API URL - http://docs.oracle.com/cd/E27559_01/apirefs.1112/e28159/toc.htm
    Thanks

    To retry a task that is in a rejected state, you use the SCH_KEY which is the task key.  In OIM, all rejected tasks are listed in the OTI table.  It contains all the important information about a rejected or pending task.
    You can use the APIs found in the tcProvisioningOperationsIntf class to retrieve open tasks.
    -Kevin

  • Executing a query using API

    Hi All
    Is there any way to query OIM database using OIM API.
    i mean excuting a custom query.
    Thank you
    sas

    To execute a query, you can use the following:
    tcDataSet tcDS = new tcDataSet();
    tcDS.setQuery(<dbRef>, <queryString>);
    tcDS.executeQuery();
    <dbRef> -> If executing from adapter, you can use tcDataProvider or if invoking from a scheduled task use 'getDataBase()'
    <queryString> -> String containing the query.
    As mentioned in earlier replies, using direct queries is not recommended, you should be using APIs instead. tcUserOperationsIntf.findUsers(Map) wil work. Then on the tcResultSet object returned you can use getRowCOunt() to determine # of rows.
    Hope this helps.
    - Aman

  • Error while signing a document using API

    Hello. I'm using API functions to add a digital signature to a PDF document. While signing this document, I receive an error which looks like:
    com.adobe.livecycle.signatures.client.types.exceptions.PDFOperationException: ALC-DSS-303-001 Could not sign Signature Field MyField (in the operation : sign)
    Caused By: ALC-DSS-303-014 Subject name and the subject alt name missing. (in the operation : getSignerName)
    My source code is a straight copy/paste from the SDK Help. I can successfully add an unsigned signature field using API call, but I can't sign it. I can also sign my document manually from Adobe Acrobat Professional using the same certificate.
    I'm new in LiveCycle and digital signatures, so it might be some obvious reason that I just can't detect now.
    Could anyone help me, please?

    you can mail me directly to [email protected], and I'll try to help.
    no guarenty :-)
    Tal
    [email protected]

Maybe you are looking for

  • My 2009 24" iMac, taking forever to boot...help!

    I need help and some advice on my 24" (2009) iMac running OS 10.7, my computer is taking forever to boot up. I was downloading MS Word 2011 via wi fi and then it froze. I shut the computer down by pressing the power button and restarted the iMac up a

  • Active network mobile turned off on lumia 525

    I just happened to update my phone to windows 10 phone preview and from then on my phone is not detecting the sim card.. even the sim settings is un-clickable... ?

  • Multi Language Adobe Print forms

    Hi all, For a client we have a client that wants to have adobe printforms in 4 language. We have notice that SAP can translate adobe lables and text in transaction S63 FCODE PDFB. I'm able to see the translation and copy it and make changes as soon a

  • Weblogic's thread management

    Hi, I'm thinking on some issues related to Weblogic thread management. Suppose I start a thread (either on an startup class or from a servlet) that I want to perform some background work (I have readed it's out of the specs to start transactions from

  • Run Options In Reporting

    Run Options In Reporting I'm trying to create a custom report to automatically produce output in excel format; however, when it runs it defaults to HTML.  When you click "Run with Options", the only 2 format options are HTML and PDF.  Is it possible