Workflow Requested End not firing

Hi
I have a problem with a workflow that has a task with the Requested End tab defined with an outcom. The workflow supposed to send a notification after it reaches the Date defined in the Requested End Tab. The Requested End date is reached but the step defined after the autome of the latest end (Notification should be sent) is not firing.
The workflow log shows the value in the fields used for the expression for the Latest End as correct, and when I drill into the task it shows the correct End Date under the Work Item Attributes list.
I inherited this workflow from a previous developer on my project and I need to debug it and figure out what is wrong.
Can anyone please help?
Thanks
Elona Buchman

Thank you Srinivas
This was the problem. I realized it after I posted the message. I went to SWU3 and the schedule backgroung job for the deadlines was not active.
Regards
Elona

Similar Messages

  • Not able to open "requested end" in user decision task.

    Hi All,
    In the user decision task, i have specified the value as +5 day in the "requested end" tab. When i executes the WF, and checks in the workflow log of work item, it shows that user decision step as logical deleted. I open that step on developement server, there value is fine as +5 day, then i tried to open that step on quality server where i am testing, when i clicks on that tab button it displays an error message at bottom of the screen "No Unit with the desired conversion factor is maintained", and with in 1 seconds it came out to initial screen of SAP.
    I checked the TR, it is imported correctly.
    where can be the issue then ? why i am not able to click on that tab in that user decision task, its very strange, i faced this kind of issue first time.
    if you have any idea about that why it is happening then please reply.
    Regards,
    Raman.

    Check SWU3 is properly maintained in your quality server.
    Thanks
    Arghadip

  • SSFCOMPOSER - 154 - No output request open. End not possible.

    Hi Experts,
    I'm trying to print multiple smartforms using FMs SSF_OPEN and SSF_CLOSE. Inside the main program RBDAPP01 (Inbound processing for IDOCS) there is a loop at the IDOCS to be processed. Deep within the processing, we have a custom FM being called which prints smartforms. Since there is a loop at the calling main program, I have organized the code in the custom FM such that the first IDOC calls SSF_OPEN and the last IDOC calls SSF_CLOSE, so that all IDOCS in between will be able to print their smartforms. Here is the call stack:
    8
    SAPLZCUSTOM                   
    ZCUSTOMPROGRAM                             
    113
    FUNCTION                     
    ZCUSTOMPROGRAM                                         
    7
    SAPLPPC1                               
    ZCUSTOMPROGRAM     
    136
    FUNCTION                     
    KK2A_GET_DATA_FROM_IDOC                                     
    7
    SAPLPPC1                               
    LPPC1U01                               
    1
    FUNCTION                     
    KK2A_GET_DATA_FROM_IDOC                                     
    6
    SAPLBD20                               
    LBD20F0A                               
    454
    FORM                         
    IDOCS_PASS_TO_APPLICATION                                   
    5
    SAPLBD20                               
    LBD20F0B                               
    69
    FORM                         
    IDOCS_PROCESS                                               
    4
    SAPLBD20                               
    LBD20U05                               
    260
    FUNCTION                     
    IDOC_INPUT                                                  
    3
    SAPLEDIR                               
    LEDIRU02                               
    182
    FUNCTION                     
    IDOC_START_INBOUND                                          
    2
    SAPLBD12                               
    LBD12U04                               
    37
    FUNCTION                     
    APPLICATION_IDOC_POST_IMMEDIAT                              
    1
    RBDAPP01                               
    RBDAPP01                               
    388
    EVENT                        
    START-OF-SELECTION                                          
    The problem is:
    1. When I only have 1 IDOC being processed, SSF_OPEN and SSF_CLOSE happens in the custom FM at the same time. This creates a successful spool.
    2. Whereas, when I have 2 or more IDOCS, SSF_OPEN happens in the first IDOC, but then it goes back to the calling program, and then when the last IDOC is encountered SSF_CLOSE is called. The FM SSF_CLOSE in this scenario calls the exception INTERNAL_ERROR (sy-subrc = 2).
    The system message is SSFCOMPOSER - 154 - No output request open. End not possible.
    Why is this happening? Is it because that other programs (calling programs) may have affected the status of SSF_OPEN? It seems that the SSF_OPEN is no longer open.
    Thanks in Advanced,
    Jack

    No, it will not hold the smartform open, but you don't need to hold it open in order for printout to be accumulated in one spool. Spool system does the accumulation automatically, provided the spool requests that are to be added to an existing spool request are:
    - generated in the same transaction and
    - have the same attributes (such as user, title, output device, client from which the request was issued, number of copies, priority, cover sheet setting, archive mode, and ABAP session number).
    Important is: where do OUTPUT_OPTIONS like printer come from currently? Is print parameters popup displayed on first Idoc for user to choose printer and options? Or do you use USER_SETTINGS = 'X' to simply take over defaults from user master? If the print options dialog is displayed, it needs to be controlled as well so it's displayed only once.
    Assuming print options come from the user in dialog, the logic without explicit open/close could look somewhat like this:
    On first idoc:
    - call SSF_OPEN  importing  JOB_OUTPUT_OPTIONS to display print options dialog; move-corresponding JOB_OUTPUT_OPTIONS to global OUTPUT_OPTIONS;
    - set OUTPUT_OPTIONS-TDNEWID = 'X' and clear  OUTPUT_OPTIONS-TDFINAL, to ensure new spool will be started (overriding user choices for these parameters!);
    - if the user has set OUTPUT_OPTIONS-TDIMMED = 'X' save it globally and clear it;
    - set CONTROL_PARAMETERS-NO_OPEN = 'X';
    On subsequent idoc:
    - clear OUTPUT_OPTIONS-TDNEWID;
    - clear CONTROL_PARAMETERS-NO_OPEN;
    On last idoc:
    - set OUTPUT_OPTIONS-TDFINAL = 'X' (this is not absolutely necessary, but prevents further appending to the spool);
    - restore OUTPUT_OPTIONS-TDIMMED from the value saved on first idoc;
    Calling Smartform:
    - set CONTROL_PARAMETERS-NO_DIALOG = 'X';
    - call smartform passing OUTPUT_OPTIONS and CONTROL_PARAMETERS;
    The logic is somewhat complicated; I'd wrap it in a class (singleton, which would be de-instantiated after last idoc) to avoid global data and code other than simple method call(s) in FM.
    Even if you decide to refactor the logic, it would still be important to understand, I think, why the current logic does not work (where and why smartform gets closed)... Maybe there are some nasty "surprises" somewhere, and your current algorithm should work.
    cheers
    Janis

  • Error in Smartform: No output request open.End not possible..

    Hi Experts,
    I am getting below mentioned error while trying to execute smartform..
    NO OUTPUT REQUEST OPEN..END NOT POSSIBLE..
    Message no. SSFCOMPOSER154.
    Help me to resolve the issue..
    Thanks in advance..
    Hampanna Kamatar

    Hi experts,
    I am getting the same error and found found that its because ssfcstat-tdopen getting false in the FM ssfcomp_close.
    if ssfcstat-tdopen = c_false.
        err_comp ssf_err_close_unstarted 'A' 154 space space space space.
      endif.
    I want to know the reason why and where exactly the field is getting populated with c_false.
    ps: I am using a Zprogram and it PRINTS FOR FEW DELIVERIES AND THIS ERROR FOR FEW DELIVERIES.

  • RE workflow type is not showing up in the Request type list in AE

    Hi,
    I had appended the AE_init_append_data_RE.xml file in the Configuration->Initial System Data.
    Even after appending this file , the RE workflow type is not showing up in the AE Request type list.
    Please guide me.

    Hi All,
    Thanks for ur inputs. It is working now. I could see all the workflow types after appending the two files
    1. AE_init_ append_data_RE.xml
    2. AE_init_ append_data_CC.xml
    I have created
    1.  Initator with workflow type RE using Request type and priority -RE_HIGH as attributes
    2. CAD by giving webservice URL.
    3. Configured workflow with one stage.
    Now, if I process a request in RE  I am getting an error "ERROR IN CREATING REQUEST". What may be the problem..? I am happy to receive your suggestions.
    Thanks

  • AD Sync failover workflow not firing?

    Hi Everyone,
    We have a sitaution where it doesn't look like the AD Sync failover workflow is firing. We are syncing changes from an AD resource using IDM 7.1.1.14 and have configured the AD Sync Failover as documented in the docs. Everything seems to work fine on normal situations where the gateway would "jump" DC's due to some error. However, it seems that every day at a certain time in the morning (we are still looking at a possible network issue but that is beyond the scope of this), we are getting an error, however the failover workflow is not firing off as this time. Below is the error we are getting.
    Error opening object 'LDAP://OURDC/<GUID=8552ea7638224c448784e4ae44331b19>': ADsOpenObject(): 0X800705B4: , , This operation returned because the timeout period expired.    
    Reported cause   
    com.waveset.util.WavesetException: Error opening object 'LDAP://OURDC/<GUID=8552ea7638224c448784e4ae44331b19>': ADsOpenObject(): 0X800705B4: , , This operation returned because the timeout period expired.   
      com.waveset.util.WavesetException: Error opening object 'LDAP://OURDC/<GUID=8552ea7638224c448784e4ae44331b19>': ADsOpenObject(): 0X800705B4: , , This operation returned because the timeout period expired. 
      at com.waveset.adapter.AgentResourceAdapter.loadUsersFromResponse(AgentResourceAdapter.java:561) 
      at com.waveset.adapter.AgentResourceAdapter.getUsersFromResponse(AgentResourceAdapter.java:654) 
      at com.waveset.adapter.AgentResourceAdapter.getUsersFromResponse(AgentResourceAdapter.java:358) 
      at com.waveset.adapter.AgentResourceAdapter.doGetUser(AgentResourceAdapter.java:705) 
      at com.waveset.adapter.AgentResourceAdapter.getUser(AgentResourceAdapter.java:725) 
      at com.waveset.adapter.ResourceAdapterProxy.getUser(ResourceAdapterProxy.java:906) 
      at com.waveset.provision.FetchContext.doFetch(FetchContext.java:368) 
      at com.waveset.provision.FetchContext.processOp(FetchContext.java:230) 
      at com.waveset.provision.ProvisionThread.run(ProvisionThread.java:107)    I'm not sure why the failover workflow is not firing but I would expect it to in these situtations, or am I wrong in that expectation? This is kind of a dasterdly situation because the sync still fires off but all of the user's information from that AD resource is null, so it tries to push null values around for the user. This is especially bad because we have authoritative roles that push groups to a user if they do not have them. This causes the users groups in AD to be overwritten with the groups we have defined in the roles. We have the role definitions set to merge, but obviously a merge with a null, is the same as an overwrite. Any ideas???

    anyone?

  • Requested action not taken: message refused (in reply to end of DATA comman

    Hello!
    When trying to send an email to one particular domain (that I know of) the email is being rejected from the recipient mail server and my mail logs are showing this error:
    said: 550 5.7.1 Requested action not taken: message refused (in reply to end of DATA command))
    Can anyone tell me where to start looking?
    (I have full logs of the postifx transaction within my mail server).
    regan.

    There's a myriad of reasons why the remote mail server may refuse your message. Since it's happening so quickly I'd bet on incorrect reverse DNS for your server, but it could also be an number of anti-spam filters that are running.
    Do you have valid, working DNS for your server? in other words if you lookup your server's public IP address do you get the same hostname that the server thinks it is?
    For example:
    Good: nslookup mail.domain.com -> 12.34.56.78; nslookup 12.34.56.78 -> mail.domain.com
    Bad: nslookup mail.domain.com -> 12.34.56.78; nslookup 12.34.56.78 -> some.hostname.your.isp.net
    The latter is almost guaranteed to get your mail blocked at most of the big ISPs.

  • Multiple deadlines in one activity - requested end deadline

    Hi,
    I have a requiredment I need to have 2 deadline notifications on one activity.
    if the task is not finished (requested end) in 5 days then an email should be sent to one dept. (one person)
    after 3 days of sending the first escallation email if the task is still not finished yet then there should be another email to different person.
    I have been going thru previous postings but couldnt find relevent one. Can anyone suggest me how to achieve this ?
    Thanks
    Sree.

    Hey Martin & Arghadip,
           This is quite interesting. when the experts have challenges and arguments then the learners have an opertunity to learn more and more. I have seen couple of other forums as well which have the same issue. Everytime time I am starting with some idea but ending with no clue to proceed.
          the thing is I have a wf with requested end and we have to have 2 escallations now. the other one is extra 3 days. I dont need to send the email recursively. only one time sending email.
          From your openions....  Where do I need to have requested start ? Do I need to create another activity/task inside a loop and check for the date ?  I am starting with a loop but that is taking me to create quite a few steps like condition, container operations...etc.
    I would like to finish in few steps. Can anyone please suggest me the procedure ?
    Someone suggested http://www.****************/Tutorials/Workflow/RecursiveMails/Scenario.htm. Can I achieve my problem with this scenario ?
    Thanks for all your time and efforts.
    Regards,
    sree

  • "The following deadline was missed Requested end"

    Hope all doing good. I have below requirement from the client and not sure how i can achieve this. Will appreciate if anyone has done this in the past or know how we can achieve this.
    If a workitem deadline is reached, in SAP inbox we see a message scrolling in the preview section saying "The following deadline was missed Requested end". This appears only for deadline missed workiems and it appears in the workitem preview section. My client wants this message to be changed to a custom message. Is there any way we can do this? Where is this message coming from? 
    Thank you,
    Bobby

    Hi,
    This is pretty simple.
    Develop a function module with below code.
    Call it in a custom method and call this method in your workflow in the requested end deadline branch.
    This is a background method.
    DATA : it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0 WITH HEADER LINE,
             it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0 WITH HEADER LINE,
             t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
             w_doc_data LIKE sodocchgi1.
      w_doc_data-doc_size = 15 * 255. "Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
        CONCATENATE 'Travel Request' tripno 'by' emp_name 'needs your approval' INTO w_doc_data-obj_descr
        SEPARATED BY space.
    CLEAR t_receivers.
      t_receivers-receiver = emp_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      REFRESH it_message.
      CLEAR it_message.
      CONCATENATE '<MARQUEE><B><FONT COLOR="RED">'
    '******THIS IS AN SYSTEM GENERATED NOTIFICATION. PLEASE DO NOT REPLY TO THIS E-MAIL.******'
       '</B><BR></MARQUEE>'
       INTO it_message. " SEPARATED BY space.
      APPEND it_message.
      CLEAR it_message.
      it_message = '<BR></FONT>'.
      APPEND it_message.
      CLEAR it_message.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
        EXPORTING
          document_data  = w_doc_data
          document_type  = 'HTM'
          commit_work    = 'X'
        TABLES
          object_content = it_message
          receivers      = t_receivers.
    Regards,
    Raj

  • EREC: From MSS Requisition request is not coming in Recruter UWL.

    hello everyone,
    we are creating Requisition request in MSS. But Request is not reaching Recruter UWL.
    We tried to find so many ways to solve this problem. We got to know that there is problem in workflow.
    we are getting follwoing error.
    Object CL_HRASR00_WF_COMPONENTS method DATAMAPPING cannot be executed
    we tried to resolve follwoing error but no success.
    finally we got reason behind this issue, workflow is using one standard auth table "t5asrauthmethod"
    with follwoing parameters
    Application=EREC
    Activity=R
    Content Type= p
    Content Group =
    and there is no entry corresponding to this, and finally we are getting error.
    please let me know which authorization object or role we have to add so that we should nt get this error.
    Thanks in advance
    jayesh Talreja

    Hello jayesh Talreja,
    I checked up in our standard system, there this entries were maintained, So please maintain the same as below:
    Client Appl.   Activity                                        Auth_Method
    004   EREC        A                                                      3
    004   EREC        D                                                      2
    004   EREC        P                                                      3
    004   EREC        R                                                      3
    004   EREC        S                                                      3
    004   EREC        W                                                      3
    004   EREC        X                                                      3
    This should be helpful.
    Best Regards,
    Deepak...

  • From MSS Requisition request is not coming in Recruter UWL.

    hello everyone,
    we are creating Requisition request in MSS. But Request is not reaching Recruter UWL.
    We tried to find so many ways to solve this problem. We got to know that there is problem in workflow.
    we are getting follwoing error.
    Object CL_HRASR00_WF_COMPONENTS method DATAMAPPING cannot be executed
    we tried to resolve follwoing error but no success.
    finally we got reason behind this issue, workflow is using one standard auth table "t5asrauthmethod"
    with follwoing parameters
    Application=EREC
    Activity=R
    Content Type= p
    Content Group =
    and there is no entry corresponding to this, and finally we are getting error.
    please let me know which authorization object or role we have to add so that we should nt get this error.
    Thanks in advance
    jayesh Talreja

    Hi,
    use TA ST01.
    1. Select to trace all Authority Objects.
    2. Set the trace to "ON".
    3. Reproduce your error.
    4. Se the trace to "OFF".
    5. evaluate the tracelog for the respective user producing the error.
    6. Filter for authority errors
    7. ????
    8. Profit!
    this ALWAYS helps
    regards, Lukas

  • Key-nextrec not firing in forms 10g

    I have a code in the above trigger, but it is not firing, I have it in the block property and no other place in the form
    message('In key next rec----'); message(' ');
    IF :SYSTEM.Last_Record = 'TRUE' Then
    Null;
    Else
    next_record;
    End If;

    when-new-record-instance runs when you navigate to the next record.
    Key-Nxtrec (Nxtrec is the correct spelling) only runs when you press the key assigned to call that trigger. In my environment, it is the Shift+ Down-Arrow key, but it could be just Down-Arrow -- it all depends on what key sequence is assigned to Forms Function Number 67 in your Forms Resource file, FMRWEB.res (or fmrusw.res).
    So if the trigger runs when you press the correct keyboard key, and you issue the message but do not call the Next_Record; built-in, focus will not navigate to the next record in your running form.

  • Error in File UNKNOWN.RPT: The request could not be submitted for backgroun

    I receive: Error in File UNKNOWN.RPT: The request could not be submitted for background processing.
    The error is on a windows Server 2008 SP2 production server. The report generates fine if I run it from within Visual studio 2008 on the server but not through IIS. The Crystal Reports is the version that came with vs2008 (10.5).
    Initially I was getting unauthorized access errors so I granted full access to everyone for the bin and managed crystal report folders under program files. This fixed the unauthorized access problem but now I get the background processing error. I also tried to inpersonate an admin account with the same result. I tried to copy the crystal reports dll's to the bin folder for the project but that did not help either. I am running out of ideas. I did notice that a 16kb rpt file is generated in the Windows/temp folder every time I try to run the report.
    the crashing page is here Link:[http://futuretechgroup.com/cgi-bin/crystaltest.aspx]
    Here is the event log:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 5/24/2010 12:24:56 PM
    Event time (UTC): 5/24/2010 7:24:56 PM
    Event ID: 87ee3d9297fb409ea7b440b059a0f07d
    Event sequence: 4
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/5172/ROOT-1-129192026961318172
        Trust level: Full
        Application Virtual Path: /
        Application Path: C:\inetpub\vhosts\futuretechgroup.com\httpdocs\
        Machine name: FTG2009
    Process information:
        Process ID: 3644
        Process name: w3wp.exe
        Account name: FTG2009\IWPD_1(yanoshftg)
    Exception information:
        Exception type: CrystalReportsException
        Exception message: Load report failed.
    Request information:
        Request URL: http://futuretechgroup.com/cgi-bin/crystaltest.aspx
        Request path: /cgi-bin/crystaltest.aspx
        User host address: 70.173.237.72
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: FTG2009\IWPD_1(yanoshftg)
    Thread information:
        Thread ID: 5
        Thread account name: FTG2009\IWPD_1(yanoshftg)
        Is impersonating: False
        Stack trace:    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at cgi_bin_CrystalTest.CreateReport() in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 15
       at cgi_bin_CrystalTest.Page_Load(Object sender, EventArgs e) in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 9
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    1. The OS is 32bit
    2. Yes. The C drive is the primary drive
    3. For the sake of simplicity and to troubleshoot the sample code has no datasource just 'Hello' in the report header. The Actual work order report that I need has ADO as datasource and it builds a PDF report without any problems when I run the page from VS2008 (development server) so I think the dll's are where thay are supposed to be. The c:\windows\assembly folder has about 25 CrystalDecisions files (10.5.37).
    Do I still need to create a deployment package even though I have everything else working?
    Below is the code I am using to create the report
        Sub CreateReport()
            Dim myReport As New ReportDocument
            'Try
            myReport.Load(Server.MapPath("CrystalReport.rpt"))
            'Catch ex As Exception
            'MsgBox(ex.InnerException.ToString)
            'End Try
            Dim g As Guid = Guid.NewGuid
            Dim woPath As String = "../FileTemp/" & g.ToString & ".pdf"
            'Try
            Dim CrExportOptions As ExportOptions
            Dim CrDiskFileDestinationOptions As New  _
            DiskFileDestinationOptions()
            Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions()
            CrDiskFileDestinationOptions.DiskFileName = _
                                        Server.MapPath(woPath)
            CrExportOptions = myReport.ExportOptions
            With CrExportOptions
                .ExportDestinationType = ExportDestinationType.DiskFile
                .ExportFormatType = ExportFormatType.PortableDocFormat
                .DestinationOptions = CrDiskFileDestinationOptions
                .FormatOptions = CrFormatTypeOptions
            End With
            myReport.Export()
            'Catch ex As Exception
            'MsgBox(ex.ToString)
            'End Try
            Response.Redirect(woPath)
        End Sub

  • LIBOVD ERROR  - "validateContextToken: workflow session was not found for given context. Create a new workflow session with token"

    Hello everyone,
    I have the following scenario:
    We're using "Oracle SOA Suite 11g 11.1.1.7.0" (Patched w/ 17893896) mainly for a BPM/Human workflow composite. Former, we were having the error bellow:
    <Mar 16, 2015 1:13:03 PM BRT> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Verification Service cannot resolve user identity. User weblogic cannot be found in the identity repository. Workflow Context token cannot be null in request.
    ORABPEL-30511
    When that error ocurred, no one was able to use the system (BPM/Human Workflow).
    I opened an SR, and after some analysis from the support, it recommended me to set up "virtualize=true" in EM, and restarting the domain. Then it started logging the following:
    connection to ldap://[10.200.10.57]:7001 as cn=Admin.
    javax.naming.NamingException: No LDAP connection available to process request for DN: cn=Admin.
    Looking up on support KB, I found this note Doc ID 1545680.1 and increased from Max size of Connection Pool 10 to 200. That did work successfully! Problem now is that the <SERVER>_diagnostic.log is being filled up with the following error:
    [2015-03-31T16:03:46.421-03:00] [soa_server2] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: e0194e38aa6c9a2f:39fc1ff9:14c5def5247:-8000-00000000000a5653,0] [APP: soa-infra] <.>    validateContextToken: workflow session was not found for given context. Create a new workflow session with token=51490173-e3d0-41dd-ae99-983915aa8454;;G;;Z+P7Oe9ABnoTUQD9ECryEW2l0/8yRcqPDyZsOWBCuzMmRgA3Qsj601TxmWQ87z2MjuwW5AH+KzgjIwkPmhJFdpc1FrE6Y/MrN1bxIDHJWu2/zP3iSNwKD07hRrh/U37Ea0TvaQyuaHJIog9y3Ptmzw==
    One important point is that we're using only the embedded WLS ldap. So I am not 100% sure if we should be using the virtualize flag=true, once all docs I read point out that this should be done when using multi-ldap providers.
    Also, I only got this error in the "diagnostic.log".
    Although, no user has complained about using the system, I really want to work it out. Anyone has any suggestions?
    Thanks in advance!

    I have moved your thread from Certification to SOA Suite to get proper assistance.
    Thanks,
    Lisa

  • Transport request could not be released

    hi guys,
    im trying to release a request thru se09
    after successfully releasing the task.the request could not be released.
    it gives this error message
    TEST CALL OF TRANSPORT CONTROL PROGRAM (tp) ENDED WITH RETURN CODE 0212.
    <removed_by_moderator>
    Read the "Rules of Engagement"
    Regards Walata
    Edited by: Juan Reyes on Oct 13, 2009 4:40 PM

    hi Mark,these are the results of the actions you specifiedWhen i tried to open the tp system log, this is wat i get"Could not open log file
    wc40-altsapmnt     ranslog"for the checksconnection test"connection to system DEV OK"transport directoryCheck transport directory      14.10.2009  10:36:27           DEV Development System                Transport directory                 bin  
    wc40-altsapmnt     rans in               Create test file        Read test file        Delete test file               buffer  
    wc40-altsapmnt     rans uffer               Create test file        Read test file        Delete test file               cofiles  
    wc40-altsapmnt     ranscofiles               Create test file        Read test file        Delete test file               data  
    wc40-altsapmnt     ransdata               Create test file        Read test file        Delete test file               log  
    wc40-altsapmnt     ranslog               Create test file        Read test file        Delete test file               sapnames  
    wc40-altsapmnt     ranssapnames               Create test file        Read test file        Delete test file               tmp  
    wc40-altsapmnt     rans     mp               Create test file        Read test file        Delete test file    there is a ZIG ZAG arrow in front of each.while for the transport toolunder the tp interfacethe test was ok i.e. a green mark sign was there for all the items in the drop down listunder transport filethe check for path was marked okfor profile "tp profile cannot be read"for version "tp profile has an invalid formatunder RFC destinationthe test was ok i.e. a green mark sign was there for all the items in the drop down listunder tp callRFC and tp version successfulfor DBCONNECT "link to database failedoffline call "could not access file as supposedhow do i get the error information in the tp system log when i cant even view it
    Regards WAlata

Maybe you are looking for