Returns to AR integration

My ct's requirement is to create AR Invoice for Purchase Returns.
I don't think this integration is provided out of the box.
Has anyone else faced this requirement before and what solution did you implement?
If you had to customize, how hard was it to customize PO to integrate with AR?
Thanks,
James.

Hi,
try following
Movement Type 344 will move product from Blocked to Unrestricted, i
Movement Type 343 which moves from Unrestricted to Blocked
Transaction MB1B movement type 344
Regards
kailas Ugale

Similar Messages

  • Minimum How many dimension required for FDM integration Script

    Hi Gurus
    I have only 2 dimensions in my SQL Table name dbo.ABC (Example: 1.Entity 2.Account and amount(data value)
    Example:
    USA, SALES, 50000
    (Including value its total 3 dimensions)
    How to export this data to Target HFM Application.
    Integration Script got success when i click on validation it is shows only 2 dimension 1.Account 2.Entity. i have mapped correctly. but validation screen not showing anything. i got gold fish for validation button and Export is also showing success and got goldfish. but no data is exported to HFM application.
    in FDM outbox its created a file which is containing only *!data* text. There is no record in this file.
    I want to load the data with rest of the dimensions with [None] member combination as i don't have the additional dimensions in my source file.
    Minimum how many dimension required to export the data from FDM to HFM?
    regards
    Taruni

    Hi,
    I came to know, at least one member from the source file should be there in the integration script then only we can assign at least [None] member or any member for the target dimensions.
    My source file having only 3 dimensions ( USA,Sales,Amount)
    1.USA,2.Sales,3.$50000
    Import Screen Dimensions:
    1.Source-FM-Entity
    2.Source-FDM-Account
    3.Account Description
    4.SourceICP
    5.SourceCustom1
    6.SourceCustom2
    7.SourceCustom3
    8.SourceCustom4
    9.Amount
    In the integration script its taking the values as
    Source-FM-Entity(0)
    Source-FDM-Account(1)
    Account Description
    SourceICP
    SourceCustom1
    SourceCustom2
    SourceCustom3
    SourceCustom4
    Amount(2)
    above it shows only 0,1,2 numbers are assigned to source dimensions.
    As my source file having only 3 Dimension so it is taking only 3 dimensions shown below. rest of the dimensions it is not showing in the import screen.
    *0.Source-FM-Entity,1.Source-FDM-Account,2.Amount*
    If i assign any values(3-9) to next dimensions or if I left blank rs.fields("txtAcctDes") with its showing below error messages:
    Error: An error occurred importing the file.
    Detail: Item cannot be found in the collection corresponding to the requested name or ordinal.
    At line: (39 and 42-46)
    So i have assigned Source-FDM-Account Number<font color="Blue">(rs.fields(1) </font>Value to rest of the dimensions in my integration script.
    <font color="Blue">rsAppend.Fields("Account") = rs.fields(1).Value</font>
    rsAppend.Fields("Desc1") = rs.fields(1).Value
    rsAppend.Fields("ICP") = rs.fields(1).Value
    rsAppend.Fields("UD1") = rs.fields(1).Value
    rsAppend.Fields("UD2") = rs.fields(1).Value
    rsAppend.Fields("UD3") = rs.fields(1).Value
    rsAppend.Fields("UD4") = rs.fields(1).Value
    Now am able to import the data into import screen, And i found all the above member names as Sales as i assigned Account dimension number(1) to these members temporarily to succeed the import process . Then i have mapped to Target dimensions with [None] member combination as these members are not in original source file. Then rest of the process Export and Check is done perfectly.
    *<font color="red">1.Am i right?? Please suggest me the correct process?</font>*
    *<font color="red">2.Can we use blank values in Integration Script as mentioned below??</font>*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    rsAppend.Fields("Account") = rs.fields("txtAcct").Value
    rsAppend.Fields("Entity") = rs.fields("txtCenter").Value
    *1.Added value*
    Example: rsAppend.Fields("Desc1") = rs.fields("1").Value
    *2.Blank Value*
    rsAppend.Fields("Desc1") = rs.fields("txtAcctDes").Value
    *<font color="red">3.As per my observation system is not accepting blank values in integration script. Please correct me??</font>*
    Here is my Integration Script
    1     Function Integration(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    2     '------------------------------------------------------------------
    3     'Oracle Hyperion FDM IMPORT Integration Script:
    4     Created By: admin
    5     Date Created: 2012-11-20-07:55:20
    6     'Purpose:
    7     '------------------------------------------------------------------
    8     Dim objSS 'ADODB.Connection
    9     Dim strSQL 'SQL String
    10     Dim rs 'Recordset
    11     Dim rsAppend 'tTB table append rs Object
    12     'Initialize objects
    13     Set cnSS = CreateObject("ADODB.Connection")
    14     Set rs = CreateObject("ADODB.Recordset")
    15     Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    16     'Connect To SQL Server database
    17     cnss.open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=TEST;Data Source=localhost;"
    18     strSQL = "Select * "
    19     strSQL = strSQL & "FROM ABC"
    20     'Get data
    21     rs.Open strSQL, cnSS
    22     'Check For data
    23     If rs.bof And rs.eof Then
    24     RES.PlngActionType = 2
    25     RES.PstrActionValue = "No Records To load!"
    26     FirstImportVB = False ' Assign return value of function
    27     Exit Function
    28     End If
    29     'Loop through records And append To tTB table In location’s DB
    30     If Not rs.bof And Not rs.eof Then
    31     Do While Not rs.eof
    32     rsAppend.AddNew
    33     rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    34     rsAppend.Fields("catKey") = lngCatKey
    35     rsAppend.Fields("PeriodKey") =dblPerKey
    36     rsAppend.Fields("DataView") = "YTD"
    37     rsAppend.Fields("CalcAcctType") = 9
    38     rsAppend.Fields("Amount") = rs.fields(2).Value
    39     rsAppend.Fields("Desc1") = rs.fields(1).Value
    40     rsAppend.Fields("Account") = rs.fields(1).Value
    41     rsAppend.Fields("Entity") = rs.fields(0).Value
    42     rsAppend.Fields("ICP") = rs.fields(1).Value
    43     rsAppend.Fields("UD1") = rs.fields(1).Value
    44     rsAppend.Fields("UD2") = rs.fields(1).Value
    45     rsAppend.Fields("UD3") = rs.fields(1).Value
    46     rsAppend.Fields("UD4") = rs.fields(1).Value
    47     rsAppend.Update
    48     rs.movenext
    49     Loop
    50     End If
    51     'Records loaded
    52     RES.PlngActionType = 2
    53     RES.PstrActionValue = "SQL Import successful!"
    54     'Assign Return value
    55     Integration = True
    56     End Function
    Regards
    Taruni

  • Sales Return in Other GL

    Dear Guru's
    As per our current setting when we sale material its getting posted in Sale of FG A/c & if the material is returned back to us, at the time of sales return entry is posted to same GL i.e. Sale of FG A/c but we want to post it to Sales return GL.
    Integrated in VKOA only
    If any configuration is missing kindly let me know.
    Regards,
    Sany.

    Hi,
          You have to cancel the billing document(So that Accounting document gets cancelled) and make the necessary "VKOA" settings (Assign the Newly defined account key to the return G/L account). Now repost the billing document for which you want the amount to be posted to the return G/L. But before that You copy your princing procedure and rename it as retuns pricing procedure(With the newly created Account key assigned to Base price condition type) .Here you may have to give a different document pricing procedure than standard which is maintained for standard returns "RE". This entire setting is done in "OVKK" or If yyou want the pricing procedure only to be determined , you can maintain in "OVTP" .But for this you may need copy controls to be configured accordingly. Kindly please let me know If you need any more Information on this.
    Regards
    Ram Pedarla

  • Error on FileBPMFile Scenario

    Hi ,
    I am working on a file bpm file scenario.My scenario is all about to collect three message interfaces and using some transformation bundle into one single message interface. That means in my scenario there are totally 4 abstract interfaces-3 for outbound interfaces and 1 for inbound interfaces.
    My problem is while activating the 3 files are picked up but when i am looking into sxmb_moni its showing "message scheduled on outbound side".
    Then i activate the queue using "activate queue " option in sxmb_adm.But still it showing the same status.
    Can anyone help me out in finding what might be the reason for it?
    Also in my other scenario its showing error as "empty container element when message is sending ".It showing error in send step in the process.Please suggests some solution for these problems.

    Hi Victoria,
    Check these
    1) go to BPM monitor- SXMB_MONI->PE->Technical Details and check all the cotainers ,messages
    2)Everything is correct, then check your N:1 mapping/interface mapping independently in the Integration Repository with the data from the SXMB_MONI
    3) Check the BPM once again for the all the Steps properties used. Then check with F7 for the Syntax check and activate it.
    4) Check the changes are reflected in SXI_CACHE, ie. return code of Integration process should be zero.
    for  more-
    Check the BPM Pattern available in SAP BASIS software component for the collection part
    http://help.sap.com/saphelp_nw2004s/helpdata/en/08/16163ff8519a06e10000000a114084/content.htm
    Hope this helps,
    regards,
    Moorthy

  • BPM: BPE_ADAPTER UNKNOWN_MESSAGE

    Hi,
    I have multiple idoc to file scenario. it contains BPM. Errors exist in SXMB_MONI after  sending idocs. The error details:
    No object type found for the message. Check that the corresponding process is activated An exception has occurred
    I checked SXI_CACHE. Return code of integration process is 0. it seems to be not problem with this.
    Can you help me please?
    Thanks in advance
    Nurhan

    Hi,
    You might have changed the cordinality of the idoc and imported in external definition. Please change the co-ordinatity of the IDOC and its root structure also. I faced this problem and resloved the same. Changed the cordinality of IDOC and its root node as well. There was a blog in SDN onhow to change the cordinality of IDOC for collection scenarios.
    Best Regards,
    Subbu

  • Connecting to a database using Kerberos authentication

    I have a 10gR2 database for which I want to enable connection using Kerberos authenntication. I receive the following error:
    ORA-12637: Packet receive failed.
    In the sqlnet server trace I get the following error:
    nauk5ky_rd_req_decoded: Returning 31: Decrypt integrity check failed.
    Ideas anyone?

    The problem appears to be that one active directory user can act as service principal for only one database server (or one RAC instance).
    If more than one service principals are created (by ktpass utility) for the same AD user, only the last created one can successfully authenticate. Logins to all other servers are unsuccessful and result in ORA-12637 at the client and ORA-07445 [nauk5a3recvclientauth()+568] in the server alert log.
    The workaround is to create a separate AD user account for each database server (or RAC instance) authenticated by the kerberos.
    Edited by: dbr2 on 27-Feb-2009 07:18

  • BPM + PROXY + Fault Message

    Hello
    My scenario is JDBC -> BPM <-> Proxy
    I developed a BPM has a step-type <SENDER> that is synchronous.
    Information on the above step:
      . The message interface used an output, an input message and also a Fault Message.
    . I'm calling a proxy in the ECC and runs an exception if an error occurs in the application (inside the proxy).
      . This exception is returned to the BPM and I run a <block> to handle the exception.
    My need is to capture the contents of the exception in the BPM and send this text to another application.
    How do I recover the contents of the exception returned by Proxy in BPM?
    Thank you,
      Aroldo

    Hi, it is not supported in the meaning that the payload of the fault message is not returned to the integration process, so that's right Baskar. The only thing possible is to trigger exceptions for fault messages, see [Sending Messages from Integration Processes Synchronously -> Procedure -> Specify Exceptions|http://help.sap.com/saphelp_nw73/helpdata/en/43/6211331c895f6ce10000000a1553f6/content.htm].
    Possible solutions:
    If it is a custom proxy you could change the behavior so that no fault messages are triggered. Instead you return the error message in the payload structure of the response.
    If it isn't a custom proxy you could create a custom proxy wrapper with a separate structure for exceptions in the response. Call the implementation of your desired proxy in the wrapper implementation, handle the exception and return the exception contents in the separate structure of the response.
    Or you could try to create a data type enhancement for exception contents for the response message, create a proxy from the enhancement, and implement the OUTBOUND_PROCESSING method where you copy the exception messages to the structure of the data type enhancement.
    Regards, Martin

  • Acrobat Help | Signing PDFs

    This question was posted in response to the following article: http://helpx.adobe.com/acrobat/using/signing-pdfs.html

    When I try to sign my 1040 tax return, an Appearance Integrity Report says, "Report code 4000:  Unrecognized PDF Content.  Details:  Unrecognized PDF content:  The document contains PDF content or custom content not supported by the current version of Adobe Reader."
    I have a hard time believing that this official IRS form is not supported by Adobe Reader.  That is the program the IRS says to use to Save, Print their forms.  What do I do now?

  • Syntax of COMPUTE_EXPR in target type metadata

    Anyone knows what's the syntax of that expression? I can do basic stuff there like calculating rate from cumulative counters. I need, however, to have something like DECODE or CASE to overcome huge negative values in case of counter overflow.
    If I have transient column COL I put formula like:
    (COL - _COL) / __intervalIf that expression is negative I want it it to be 0 or better yet empty (NULL).

    COMPUTE_EXPR: This attribute specifies the formula for calculating the value of the column. Columns previously defined in the Table descriptor can participate in the calculation. Attaching a ‘_’ prefix to a column name denotes previous value of a column. Support for string expressions is introduced in version 10.2. Please refer to the Examples for details about the expression grammar and usage.
    Predefined special values:
    a) __interval: collect interval.
    b) __sysdate: current system time.
    c) __GMTdate: current GMT time.
    d) __contains: tests a given string expression for presence of a string expression.
    e) __beginswith: tests whether a given string expression begins with a specified string expression.
    f) __endswith: testw whether a given string expression ends with the specified string expression.
    g) __matches: tests whether a given string expression matches a specified string expression.
    h) __delta: computes the difference between the current value and the previous value.
    i) __leadingchars: returns the leading characters in the specified string.
    j) __trailingchars: returns the trailing characters in the specified string.
    k) __substringpos: returns the position of the occurrence of the pattern within a specified string.
    l) __is_null: tests whether the expression is NULL
    m) __length: returns the length of the string expression.
    n) __to_upper: converts the string to upper case.
    o) __to_lower: converst the string to lower_case.
    p) __ceil: returns the smallest integral value not less than identifier.
    q) __floor: returns the largest integral value not greater than the identifier.
    r) __round: rounds to nearest integer, away from zero.
    Compute Expression support:
    Supported Grammar:
    expression := (cond_expr | (cond_expr ? cond_expr : cond_expr)
    cond_expr := (string_expr |
    (string_expr == string_expr) |
    (string_expr < string_expr) |
    (string_expr > string_expr) |
    (string_expr <= string_expr) |
    (string_expr >= string_expr) |
    (string_expr __contains string_expr) |
    (string_expr __beginswith string_expr) |
    (string_expr __endswith string_expr) |
    (string_expr __matches string_expr) |
    (string_expr __delta string_expr))
    string_expr := (simple_expr |
    (simple_expr __leadingchars simple_expr) |
    (simple_expr __trailingchars simple_expr) |
    (simple_expr __substringpos simple_expr))
    simple_expr := (term |
    (simple_expr + term ) |
    (simple_expr - term) )
    term := (unary_expr |
    (term * unary_expr ) |
    (term / unary_expr ) )
    unary_expr := (factor |
    (__is_null factor) |
    (__length factor) |
    (__to_upper factor) |
    (__to_lower factor) |
    (__ceil factor) |
    (__floor factor) |
    (__round factor) )
    factor := ( identifier |
    string_literal |
    number |
    '(' expression ')' )
    string_literal := '\'' (character | "\\'" )* '\''

  • [SOLVED] libusb exists in filesystem

    i trying to install gnome and VLC but this msg are returned
    checking package integrity...
    (33/33) checking for file conflicts [######################] 100%
    error: failed to commit transaction (conflicting files)
    libusb: /usr/include/libusb-1.0/libusb.h exists in filesystem
    libusb: /usr/lib/libusb-1.0.a exists in filesystem
    libusb: /usr/lib/libusb-1.0.so exists in filesystem
    libusb: /usr/lib/libusb-1.0.so.0 exists in filesystem
    libusb: /usr/lib/libusb-1.0.so.0.0.0 exists in filesystem
    libusb: /usr/lib/pkgconfig/libusb-1.0.pc exists in filesystem
    Errors occurred, no packages were upgraded.
    when i trying to remove the libusb
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gnupg: requires libusb
    :: gnupg2: requires libusb
    :: hal: requires libusb>=0.1.12
    :: udev: requires libusb
    :: usbutils: requires libusb
    so... how i proceed with this?
    Last edited by abarahc (2011-01-16 17:51:15)

    Please read the stickies: https://bbs.archlinux.org/viewtopic.php?id=56373
    Happy New Year :-)
    Last edited by karol (2010-12-31 14:14:31)

  • Help please with java programming

    ok so i need a little help on getting started on this program.
    i need to make a program where the user can enter the last names of candidates and the votes recieved by each candidate. then the program should output both the candidates names and the total votes recieved by each candidate and the perctage of votes each recieved.
    can anyone help me get started with some sample code. thanks.

    ok so this is what i have so far . . . . it goes through the array and works.
    im suppose to also have these two methods . . .
    sumVotes- Which will receive the votes array by reference.
    Calculate the total votes.- Return the calculated integral total votes.winnerIndex- Which will receive the votes array by reference.- Identify the top candidate who received more votes. - Return the identified index.
    my program is suppose to do this . . .The program should then output each candidate?s name, votes received by that candidate, and the percentage of the total votes received by the candidate. The program should also output the winner of the election.
    ok so anyone out there nice enough to tutor me through making these 2 methods i need?
    here is code of what i have so far
    package assign11942;
    import javax.swing.*;
    public class Assign11942 {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              String strLast[],strNumCand, strVotes[];
              int numCand;
              double votes[], percentage, totalVotes[];
              strNumCand = JOptionPane.showInputDialog("Enter Number of Candidates: ");
              numCand = Integer.parseInt(strNumCand);
              strLast=new String[numCand];
              strVotes=new String[numCand];
              votes=new double[numCand];
              totalVotes=new double[numCand];
              for (int i =0 ; i < numCand; i++)  {
                   strLast= JOptionPane.showInputDialog("Enter Candidates Last Name: ");
                   strVotes[i]=JOptionPane.showInputDialog("Enter Number of Votes: ");

  • XK01/MK01

    Hi,
    I am trying to mark return checkbox in the vendor master but system pops up the window asking for customer number account group and shipping point.
    However this window was not coming earlier even if i flag the checkbox Return in the vendor master kindly advise the setting whcih is responisble to bring this pop up.
    also note that I want to create delivery for the subcontracting scenerio ... can this be causing this issue ????
    Regards
    Rahul.

    Hi
    Returns indicator identifies wether it is a returns vendor and integrated with shipping process. If you want to do the Sales return process then you need to specify this indicator and also maintain the Customer with proper shipping details like shipping condition to determine the shipping point during the return process.
    Also if you give all the input correctly in the popped up screen then the system will generate the customer automatically in the backround.
    Or if you know the customer no then you input in Account control section>Customer field to link the vendor.
    Kindly explain your requirment so that you can get more input
    Karthik
    Edited by: Karthik on Jul 14, 2011 11:08 AM

  • [Forum FAQ] How do I send multiple rows returned by Execute SQL Task as Email content in SQL Server Integration Services?

    Question:
    There is a scenario that users want to send multiple rows returned by Execute SQL Task as Email content to send to someone. With Execute SQL Task, the Full result set is used when the query returns multiple rows, it must map to a variable of the Object data
    type, then the return result is a rowset object, so we cannot directly send the result variable as Email content. Is there a way that we can extract the table row values that are stored in the Object variable as Email content to send to someone?
    Answer:
    To achieve this requirement, we can use a Foreach Loop container to extract the table row values that are stored in the Object variable into package variables, then use a Script Task to write the data stored in packages variables to a variable, and then set
    the variable as MessageSource in the Send Mail Task. 
    Add four variables in the package as below:
    Double-click the Execute SQL Task to open the Execute SQL Task Editor, then change the ResultSet property to “Full result set”. Assuming that the SQL Statement like below:
    SELECT   Category, CntRecords
    FROM         [table_name]
    In the Result Set pane, add a result like below (please note that we must use 0 as the result set name when the result set type is Full result set):
    Drag a Foreach Loop Container connects to the Execute SQL Task. 
    Double-click the Foreach Loop Container to open the Foreach Loop Editor, in the Collection tab, change the Enumerator to Foreach ADO Enumerator, then select User:result as ADO object source variable.
    Click the Variable Mappings pane, add two Variables as below:
    Drag a Script Task within the Foreach Loop Container.
    The C# code that can be used only in SSIS 2008 and above in Script Task as below:
    public void Main()
       // TODO: Add your code here
                Variables varCollection = null;
                string message = string.Empty;
                Dts.VariableDispenser.LockForWrite("User::Message");
                Dts.VariableDispenser.LockForWrite("User::Category");
                Dts.VariableDispenser.LockForWrite("User::CntRecords");     
                Dts.VariableDispenser.GetVariables(ref varCollection);
                //Format the query result with tab delimiters
                message = string.Format("{0}\t{1}\n",
                                            varCollection["User::Category"].Value,
                                            varCollection["User::CntRecords"].Value
               varCollection["User::Message"].Value = varCollection["User::Message"].Value + message;   
               Dts.TaskResult = (int)ScriptResults.Success;
    The VB code that can be used only in SSIS 2005 and above in Script Task as below, please note that in SSIS 2005, we should
    change PrecompileScriptIntoBinaryCode property to False and Run64BitRuntime property to False
    Public Sub Main()
            ' Add your code here
            Dim varCollection As Variables = Nothing
            Dim message As String = String.Empty
            Dts.VariableDispenser.LockForWrite("User::Message")
            Dts.VariableDispenser.LockForWrite("User::Category")
            Dts.VariableDispenser.LockForWrite("User::CntRecords")
            Dts.VariableDispenser.GetVariables(varCollection)
            'Format the query result with tab delimiters
            message = String.Format("{0}" & vbTab & "{1}" & vbLf, varCollection("User::Category").Value, varCollection("User::CntRecords").Value)
            varCollection("User::Message").Value = DirectCast(varCollection("User::Message").Value,String) + message
            Dts.TaskResult = ScriptResults.Success
    End Sub
    Drag Send Mail Task to Control Flow pane and connect it to Foreach Loop Container.
    Double-click the Send Mail Task to specify the appropriate settings, then in the Expressions tab, use the Message variable as the MessageSource Property as below:
    The final design surface like below:
    References:
    Result Sets in the Execute SQL Task
    Applies to:
    Integration Services 2005
    Integration Services 2008
    Integration Services 2008 R2
    Integration Services 2012
    Integration Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • Return-Code 99 of integration-process in TR  SXI_CACHE

    Hallo,
    in TR SXI_CACHE my integration-process has the return-code 99 (process cannot be activated). On selecting in the tree (left side) and dobble-click of my process following comes up:
    </properties>
    - <lines>
      <line id="208" predid="207" succid="5" parentid="207" order="0" linetype="DEFAULT" />
      <line id="213" predid="7" succid="13" parentid="207" order="0" linetype="DEFAULT" />
      <line id="214" predid="13" succid="9" parentid="207" order="0" linetype="DEFAULT" />
      <line id="215" predid="9" succid="59" parentid="207" order="0" linetype="DEFAULT" />
      <line id="217" predid="59" succid="97" parentid="207" order="0" linetype="DEFAULT" />
      <line id="219" predid="97" succid="89" parentid="207" order="0" linetype="DEFAULT" />
      <line id="220" predid="89" succid="21" parentid="207" order="0" linetype="DEFAULT" />
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'prperty' does not match the start tag 'property'. Error processing resource 'file:///C:/W2KMF/Profiles/schmitf/Loc...
    <property id="59" guid="d56d20d4195e11daafd60003ba0ff8f5" name="SendMsgSyncResponse" counter="0" type="EXPR" valueType=""...
    n-left:1em;text-indent:-2em">   <line id="222" predid="21" succid="23" parentid="207" order="0" linetype="DEFAULT" />
      <line id="224" predid="23" succid="25" parentid="207" order="0" linetype="DEFAULT" />
    After activating the process once more the detail-information comes up. Then i see the error steps (Message-Type = E). So for example:
    Der Wert des Ausdrucks '&CH_EVENT_TAB_DATA.PAYLOAD.ERROR&' kann nicht als Quelle einer Zuweisung dienen (expression cannot be the source of an assignment)
    But in the integration-process this seam to be good. What can i do? Delete the container-element and create a new one?
    Thanks in advance,
    Frank

    Hallo,
    when i have a look at the details after acitvation my integration-process (with returncode 99) I make changes in my process. But after refresh there are the old items are still there. What´s about the Button "delete runtime Version" in the acivation step? Can i so delete this process in my cash? Have i to make a new integraion-process-object? After copy one process and giving a new name the same problems occures? What is the best solution?
    Thanks,
    Frank

  • Integration Process w/ return code 99

    Have a very weird situation with an integration process. In our development environment, in SXI_CACHE, it returns a return code of 99 signalling some type of error. The weird problem is that the process works just fine. It's an IDOC to flat file scenario and the flat file gets generated each time perfectly. This is with the process status of 99 in SXI_CACHE.
    However, when the process is moved to QA, it does not work at all. The messages get stuck in SXMB_MONI with message "message has error on outbd. side". When I click on the PE to view the error, it appears the workflow behind the process is defined incorrectly becasuse in the event trace I see:
    <b>Workflow definition of task 'WS90100009' cannot be activated.</b>
    The reason for this error is
    <b>Container element '_CRL_I001ZMTRLNO_0025' not available</b>
    What is killing me is that this same error occurs in our development environment, yet the process still works fine.
    Can someone possible explain what the container error might mean and how to fix? The workflow never gets kicked off because the definition is not active.
    Thanks

    all green in that transaction...
    in the process, i have two branches.. one to receive a MATMAS the other to receive a ZCLFMAS IDOC....
    a file gets generated when any of the following conditions occur
    - both IDOC's are received for the same material
    - only MATMAS or ZCLFMAS are received and the other message type is not received within 3 minutes... we have time controls on the two branches
    the error is in the initial receive step...keeps saying that container element is not available yet I have no idea what that means

Maybe you are looking for

  • Pdf in word konvertieren

    ich wollte den pdf-word Konverter monatlich abbonieren, es kommt aber immer wieder die folgende Fehlermeldung: "Wir haben derzeit leider ein technisches Problem. Bitte versuchen Sie es später noch einmal." Was ist nun zu tun ?

  • XSLT of large documents incomplete

    XMLTransform() and XMLType.transform() do not return a complete result when fed with large xml documents (approx > 3.5 MB). Smaller documents transform perfectly. Example: let table test (id NUMBER, xmltext CLOB) contain two records: ID DBMS_LOB.GETL

  • Photo Duplication

    Hi, We have a MacMini 2.5Ghz Intel Core i5, 4 GB 1600 MHz DDR3, running OS X Yosemite 10.10.2 We have a bit of an issue with duplicate photographs. When we first bought the computer we uploaded all our saved images/music/files etc from an external ha

  • Open numbers 08 file with numbers 3.0

    Dear all, I had an iMac running Snow Leopard + iWork'08. I've just bought a Mac Book Air running Maverick + Numbers 3.0. I can' open files created with Numers '08. System says that I have to upgrade files first with Numbers '09. Unfortunately, I have

  • Why ipad/iphone's user can turn off device even is set passcode (thief can turn off and we can not find it :( )

    In the future ios dev team must set not display turn off slide button if it is not unlocked with passcode.