Error  No: -2028, Err Desc: " - ", when executing oDeliveryNotes.Add

Sample code
Dim vSO As SAPbobsCOM.Documents
            Dim vSOLines As SAPbobsCOM.Document_Lines
            Dim vDeliveryLines As SAPbobsCOM.Document_Lines
            Dim vDelivery As SAPbobsCOM.Documents
            Dim lRetCode As Long
            Dim bLineAdded As Boolean
            Dim sDocEntry As String
            Try
                vSO = pCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                'sDocEntry = GetDocEntry(sSO, DocumentTypes.SalesOrder)
                sDocEntry = sSO
                MsgBox(sSO)
                If vSO.GetByKey(sDocEntry) Then
                    vDelivery = pCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes)
                    vDelivery.CardCode = vSO.CardCode
                    vDelivery.NumAtCard = vSO.NumAtCard
                    ' vDelivery.SalesPersonCode = vSO.SalesPersonCode
                    ' vDelivery.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    vDelivery.DocumentSubType = SAPbobsCOM.BoDocumentSubType.bod_None
                    '  vDelivery.Address = "N/A" ' vSO.Address
                    ' vDelivery.ShipToCode = "PL100" 'vSO.ShipToCode"
                    ' vDelivery.Address2 = "Add 2" 'vSO.Address2
                    ' vDelivery.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
                    ' vDelivery.JournalMemo = "Delivery - C1000" '"Delivery - " & vSO.CardCode
                    ' vDelivery.Comments = "NONE" '"Based on SO " & sSO
                    'vDelivery.PaymentGroupCode = vSO.PaymentGroupCode
                    'vDelivery.DocObjectCode = SAPbobsCOM.BoObjectTypes.oDeliveryNotes
                    'vDelivery.DocObjectCodeEx = SAPbobsCOM.BoObjectTypes.oDeliveryNotes
                    ' vDelivery.DocDueDate = Now.Month & "/" & Now.Day & "/" & Now.Year
                    If vSO.UserFields.Fields.Item("U_CDIASNF").Value <> "" Then
                        vDelivery.UserFields.Fields.Item("U_CDIASNF").Value = vSO.UserFields.Fields.Item("U_CDIASNF").Value
                    End If
                    vSOLines = vSO.Lines
                    vDeliveryLines = vDelivery.Lines
                    bLineAdded = False
                    Dim iCnt As Integer
                    For iCnt = 0 To vSOLines.Count - 1
                        If bLineAdded = True Then
                            vDeliveryLines.Add()
                        Else
                            bLineAdded = True
                        End If
                        vSOLines.SetCurrentLine(iCnt)
                        vDeliveryLines.ItemCode = vSOLines.ItemCode
                        MsgBox(vSOLines.ItemCode) ' riade
                        vDeliveryLines.Quantity = vSOLines.Quantity
                        MsgBox(vSOLines.Quantity)
                        vDeliveryLines.Rate = 1 'vSOLines.Rate
                        MsgBox(vSOLines.Rate)
                        If vSO.Lines.UserFields.Fields.Item("U_CDIShkey").Value <> "" Then
                            vDeliveryLines.UserFields.Fields.Item("U_CDIShkey").Value = vSO.Lines.UserFields.Fields.Item("U_CDIShkey").Value
                        End If
                        If vSO.Lines.UserFields.Fields.Item("U_CDIPO").Value <> "" Then
                            vDeliveryLines.UserFields.Fields.Item("U_CDIPO").Value = vSO.Lines.UserFields.Fields.Item("U_CDIPO").Value
                        End If
                        vDeliveryLines.BaseType = SAPbobsCOM.BoAPARDocumentTypes.bodt_Order
                        vDeliveryLines.BaseEntry = sDocEntry
                        vDeliveryLines.BaseLine = iCnt
                    Next
                    Dim sErrRiade As String
                    <b>lRetCode = vDelivery.Add()</b>
                    sErrRiade = pCompany.GetLastErrorDescription 'add by Riade
                    If lRetCode <> 0 Then
                        Dim sErr As String
                        'pCompany.GetLastError(lRetCode, sErr) 'commented
                        sErr = pCompany.GetLastErrorDescription 'add by Riade
                        SBO_Application.MessageBox(sErr)
                        Return False
                        Exit Function
                    End If

Hi,
Maybe the problem is this line:
vDeliveryLines.BaseLine = iCnt
The baseline should be filled with the LineNum of the sales order line. The linenum of a line is NOT ALWAYS the same as the counter used in the setCurrentLine method! If you delete lines in an order the LineNum has gaps! So I suggest you use the following:
vDeliveryLines.BaseLine = vSOLines.LineNum
Hope this helps,
Jacco Moolenaar.

Similar Messages

  • Error: "client-error-request-value-too-long" when trying to add printer

    After installing the 10.4.9 Combo update, my HP 1350 All-in-One printer was not recognized. I reinstalled the driver, but now I can't add the printer. I get the error message "client-error-request-value-too-long" when trying to add the printer. Has anyone else experienced a similar problem.
    Thanks in advance

    Well, I tried all of that and I'm still getting the error message. I've also repaired disk permissions and run Disk Warrior. When I repaired disk permissions, many HP printer items showed up in the list.

  • Getting error "Column is not indexed " when executing query on ORACLE 10g

    Hi all,
    When executing the below query im getting the error "ORA-20000:Column is not indexed"
    query:
    select xmlelement("nexml:result",xmlattributes('http://namespaces.nextance.com/nex/xml' as "xmlns:nexml"),xmlelement("nexml:value",count(*))).getClobVal()
    from "permission"
    where ( ((contains(object_value,'(searchDocument) inpath(/permission/action)') > 0)) and ((existsNode(object_value,'/permission[resource/resourcekey/@type[. = "document"]]') = 1)) and ((contains(object_value,'(GeneralUser) inpath(/permission/principal/@name)') > 0)) and ((existsNode(object_value,'/permission[principal/@type[. = "group"]]') = 1)) and ((existsNode(object_value,'/permission[type[. = "allow"]]') = 1)) and ((contains(object_value,'(nexip) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(Corporate) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(ProcurementAgreement) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(Procurement) inpath(/permission/resource/resourcekey/field/@value)') > 0) or (contains(object_value,'(SalesAgreement) inpath(/permission/resource/resourcekey/field/@value)') > 0)) )
    Then after checking some forum, i replaced "contains" with "ora:contains" and executed the query. Now im not getting the first error but got a new error "invalid relational operator"
    So please help me in resolving the errors?
    Thanks in advance.

    Anil kumar wrote:
    Hi,
    Thanks for your reply. Could you please explain your solution in detail?Hi,
    I just have a try...
    create table t (id int,my_lob clob)
    begin
    insert into t values(101,'Oracle redwood shores USA');
    insert into t values (102,'HP palo alto USA');
    insert into t values(103,'Capgemini  FRANCE');;
    end;
    create index my_idx on t(my_lob) indextype is ctxsys.context
    select *
    from t
    where contains(my_lob,'USA',1)>0
    Output
    ID      MY_LOB
    101     Oracle redwood shores USA
    102     HP palo alto USA Hope it helps,
    CKLP

  • Error in process chain variant when executing BI IP planning sequence

    Hi All,
    I am trying to execute a planning sequnce as a background job using a process chain. Here one of the variant failed giving an error as : Overflow occurred when calculating <Key figure name> with value  6.5231044352058409E18+.
    I tried executing that process chain variant separately using the ABAP program RSPLS_PLSEQ_EXECUTE as a background job, but still its not working.
    At last I tried executing the individual planning step in the planning modeler, but again the same error.
    Earlier such case was resolved by compressing the planning cube requests and executing the failed variant using the ABAP program, but this time even compression is not helping to solve this.
    Can anyone please help on this issue ?

    Hi Andrey,
    This Key figure is created of the data type CURR (Stored as decimal) for Amount type. Now the length of CURR is maintained by SAP as 17 with 2 decimal places, so do you mean that I have to switch to other data type to hold the large value that is getting generated.
    My concern is : the error is coming for just one of the variant of the chain and not for other variants. If it has something to do with the KF data type, then certainly all others variants must have thrown the same error.

  • Error in prepare cursor stmt, when executed from a cgi called from web apln

    We are facing with the following error message:
    Error Prepare cursor SELECT message FROM OPS$SVEERAMA.ERRORCODE ORDER BY message; error code: 549755810774, offset: 180388626432
    549755810774 is the sqlca.sqlcode when printed as long and is -3114 (negative) when printed as int.
    We are trying to execute a cgi from the web application, the cgi in turn tries to connect to the oracle database. The cgi script, tries to establish an oracle connection, and tries to execute a prepare cursor statement.
    We are using oracle 10g and proc - Pro*C/C++: Release 10.1.0.5.0, on linux x86_64 machine. We have two sqlca.h header files, one which has the struct sqlca's variables defined as long and the other as int. we are using the int one.
    Any help is much appreciated. Also if you can let us know what are essential for establishing a db connectivity from a cgi script.(any env variables, etc)

    All oracle error messages are negative number.
    /home/oracle>oerr ora 3114
    03114, 00000, "not connected to ORACLE"
    // *Cause:
    // *Action:I suspect that you have not successfully established a connection to the database. Unfortunately, I don't actually know what you need for CGI. I would check for other errors in the portion of the code where you establish the connection.
    John

  • Error Message and Shut Down When Trying to Add Security Policy

    Acrobat 8.1.5  I'm trying to add a security policy. When I click on Finish, I get a message saying there has been an error and Adobe must shut down.
    I've checked for updates, restarted Adobe, restarted my computer. Nothing is helping. Here's the details about the message:
    AppName: acrobat.exe     AppVer: 8.1.0.137     ModName: ppklite.api
    ModVer: 8.1.3.0     Offset: 0012d2cb
    I've confimed I'm using 8.1.5 in the Help section.
    Running Windows XP Home Edition.
    Any suggestions?
    Thank you.

    Apple Mail crashes when I try to print after installing Mavericks...

  • Very slow to when execute xmlElements.add

    Why is tha it takes a very looooong time to execute below instruction,
    myXMLElement = myRootXmlElement.xmlElements.add("image", app.selection[myCounter].images.firstItem());
    Please advise.
    Thank you.

    I was able to fix this problem by having him delete all of his unused printers. Some were network printers.

  • Following web-sites-nodejs-store-data-mongodb tutorial get azure.err when execute site create

    I encountered azure.err message when executing site create while following tutorial from following URL
    http://azure.microsoft.com/zh-tw/documentation/articles/web-sites-nodejs-store-data-mongodb/
    execution stop at executing git init within powershell
    Sat Sep 13 2014 02:25:59 GMT+0800 (台北標準時間):
    { [Error: Command failed: 'git' ���O�����Υ~���R�O�B�i���檺�{���Χ妸�ɡC
      stack: [Getter/Setter],
      killed: false,
      code: 1,
      signal: null,
      __frame: 
       { name: 'LinkedRevisionControlClient_prototype_initGitOnCurrentDirectory__3',
         line: 119,
         file: 'C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI\\lib\\util\\git\\linkedrevisioncontrol.js',
         prev: 
          { name: 'GitClient_prototype_init__6',
            line: 204,
            file: 'C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI\\lib\\util\\git\\linkedrevisioncontrol.js',
            prev: [Object],
            active: false,
            offset: 2,
            col: 2 },
         active: false,
         offset: 4,
         col: 4 },
      rawStack: [Getter] }
    Error: Command failed: 'git' ���O�����Υ~���R�O�B�i���檺�{���Χ妸�ɡC
        at ChildProcess.exithandler (child_process.js:637:15)
        at ChildProcess.EventEmitter.emit (events.js:98:17)
        at maybeClose (child_process.js:735:16)
        at Process.ChildProcess._handle.onexit (child_process.js:802:5)
        at LinkedRevisionControlClient_prototype_initGitOnCurrentDirectory__3 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\util\git\linkedrevisioncontrol.js:123:4)
        at GitClient_prototype_init__6 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\util\git\linkedrevisioncontrol.js:206:2)
        at __4 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\commands\asm\site.js:267:12)
    If I use cygwin, git init works within the same directory.
    Please help 

    Hi Derickc,
    Thanks for your posting!
    Did you use administrator permission to start powershell?  And I am not sure your Git and powershell installed well, so I suggest you could refer to this blog (http://jdhnet.wordpress.com/2014/01/10/a-better-git-commandline-by-integrating-git-with-powershell/
    ) and this
    article.
    By the way, It seems that this issue is related to Azure VM. You could post this issue into VM forum like Tough_V reference.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error when executing add-on in client's computer

    Dear All experts/gurus,
    I need your help. I have problem when executing/open an add-on (installed in server and can be executed using server computer without creating ard file) I've created in my client's computers. although it is automatically installed but when execute, the error comes which message is "wrong digital signature". I create ard file for every clients that want to execute/use add-on and succeed. It is okay that I can create ard file for 1-3 computers but if it 10-20 computers, it is wasting time. how to solve this problem, where all computers in clients site can execute the add-on without must create ard file in every computers ?
    I appreciate your answer. tks in advance.

    Take a look at the "Package and Deployment" section in the SDK help file.  This will guide you through how to install / launch your add-ons.
    If you are using the standard SAP method documented there, you only need 1 ard file per release version of your add-on.  You do not need to have a separate ard file on every client pc.  The ard file includes in it a checksum (MD5) of your add-on executable.  The ard file itself is only used during the "registration" process for an add-on.  During registration, the checksum containined in the ard file and your add-on installer itself are both written to the Common database.
    The error message "wrong digital signature" when the SAP add-on manager attempts to execute an add-on indicates that the executable version installed on that client does not match the one that was registered earlier.  Most common causes are:-
    a) You have manually copied a different executable onto the client pc
    b) When creating the ard file, you selected a different add-on executable from the one you included in your installer.
    When creating the ard file using the AddonRegDataGen program, make sure that you point the "Add-on EXE full path" to the version of the add-on executable that you are including in your installer.  You will have to create a new ard file if you change the executable in the future, for example if you release a new version of your add-on.
    John.

  • Error when executing DBMS_ERRLOG through Stored Procedures...

    Hi,
    We have TWO schemas like IDWH_ODS and IDWH_ERR running on Oracle 10g Rel.2.
    The schema IDWH_ERR has direct SELECT privilege on all the base tables in IDWH_ODS schema. (As Pl/sql doesn't support ROLE, we have granted direct SELECT on each of the tables)
    IDWH_ODS schema has tables like ACCOUNT & CUSTOMER, for which I need to create DML Error logging tables in IDWH_ERR schema.
    I have one procedure 'Cr_Errlog_Tabs' in IDWH_ERR schema which gets all tables in IDWH_ODS and creates Error logging table in IDWH_ERR schema using DBMS_ERRLOG package. My problem starts here,
    When I execute the DBMS_ERRLOG package in IDWH_ERR through SQL*Plus LIKE,
    > exec DBMS_ERRLOG.CREATE_ERROR_LOG('idwh_ods.ACCOUNT','ERR$_ACCOUNT','idwh_err');
    it's creating the error log table 'ERR$_ACCOUNT' in IDWH_ERR schema.
    (...the same will be working when execute through Anonymous plsql block)
    BUT, when i execute the DBMS_ERRLOG package with same parameters through the stored Procedure 'Cr_Errlog_Tabs', it throws the following error...
    ORA-01031: insufficient privileges
    Please let me know how the solution at the earliest.

    WHY DO YOU FEEL YOU HAVE TO START A NEW THREAD FOR YOUR PROBLEM!?
    Insufficient priv error when executing DBMS_ERRLOG through PLSQL

  • Error when executing DBMS_ERRLOG pkg through Stored Procedures...

    Hi,
    We have TWO schemas like IDWH_ODS and IDWH_ERR running on Oracle 10g Rel.2.
    The schema IDWH_ERR has direct SELECT privilege on all the base tables in IDWH_ODS schema. (As Pl/sql doesn't support ROLE, we have granted direct SELECT on each of the tables)
    IDWH_ODS schema has tables like ACCOUNT & CUSTOMER, for which I need to create DML Error logging tables in IDWH_ERR schema.
    I have one procedure 'Cr_Errlog_Tabs' in IDWH_ERR schema which gets all tables in IDWH_ODS and creates Error logging table in IDWH_ERR schema using DBMS_ERRLOG package. My problem starts here,
    When I execute the DBMS_ERRLOG package in IDWH_ERR through SQL*Plus LIKE,
    > exec DBMS_ERRLOG.CREATE_ERROR_LOG('idwh_ods.ACCOUNT','ERR$_ACCOUNT','idwh_err');
    it's creating the error log table 'ERR$_ACCOUNT' in IDWH_ERR schema.
    (...the same will be working when execute through Anonymous plsql block)
    BUT, when i execute the DBMS_ERRLOG package with same parameters through the stored Procedure 'Cr_Errlog_Tabs',
    it throws the following error...
    ORA-01031: insufficient privileges
    Please let me know the solution at the earliest.
    Thanks.
    -Saravanan

    duplicate post
    Insufficient privilege error when executing DBMS_ERRLOG through PLSQL

  • SQL error 3113 occurred when executing EXEC SQL.

    Hi,
    We are facing one typical problem, One background is failing regularly with
    below dump. as we now got all notes giving information, if database  restarted
    taking backup, these type of failures occur, but our database is only down for backup once in a week, but it is failing with frequenly.
    in this two servers are located in different place, in this job tries to connect
    another server to get material statistics.
    It is giving some error message in sm21 with
    SQL error 3113 occurred when executing EXEC SQL.
    work procees in reconnect mode.
    all notes saying these types of dump occur when database restared, but this dump
    even though database is up.
    below is short dump, please can anyone help me from this problem.
    ABAP runtime errors    DBIF_DSQL2_SQL_ERROR
          Occurred on    08.01.2007 at 00:30:28
    >> Short dump has not been completely stored. It is too big.
    SQL error 3113 occurred when executing EXEC SQL.
    What happened?
    The error occurred in the current database connection "AZ1".
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    How to correct the error
    Database error text........: "ORA-03113: end-of-file on communication channel#"
    Triggering SQL statement...: "select mara.groes, mara.brgew, mara.ntgew,
    mara.gewei, mara.volum, mara.voleh, mara.mstae, mara.mstde, mara.prdha,
    marc.matnr, marc.werks, marc.mmsta, marc.mmstd from sapr3.mara, sapr3.m
    where sapr3.mara.mandt = sapr3.marc.mandt and sapr3.mara.matnr =
    Internal call code.........: "[DBDS/NEW DSQL]"
    Please check the entries in the system log (Transaction SM21).
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "DBIF_DSQL2_SQL_ERROR"
    "ZM2431216 " or "ZM2431216 "
    "EXTRACT_GENERAL_DATA"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
      To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
      To obtain this, call the system log with Transaction SM21
      and select the "Print" function to print out the relevant
      part.
    3. If the programs are your own programs or modified SAP programs,
      supply the source code.
      To do this, you can either use the "PRINT" command in th
      print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error o
      or which actions and input led to the error.
    System environment
    SAP Release.............. "46C"
    Application server....... "essceu3"
    Network address.......... "172.19.119.198"
    Operating system......... "AIX"
    Release.................. "5.3"
    Hardware type............ "00C7ADBD4C00"
    Database server.......... "ukblx176"
    Database type............ "ORACLE"
    Database name............ "EU3"
    Database owner........... "SAPR3"
    Character set............ "es_ES.ISO8859-1"
    SAP kernel............... "46D"
    Created on............... "Jul 9 2006 20:26:33"
    Created in............... "AIX 1 5 00447C4A4C00"
    Database version......... "OCI_920__OCI_7_API "
    Patch level.............. "2257"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.0.5.., ORACLE 8.0.6.., ORACLE
    8.1.6.., ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.2.0.."
    SAP database version..... "46D"
    Operating system......... "AIX 1 4, AIX 2 4, AIX 3 4, AIX 1 5, AIX 2 5, AIX 3
    5, , System build information:,                                      , LCHN :
    841480"
    User, transaction...
    Client.............. 600
    User................ "MPZMMES"
    Language key........ "S"
    Transaction......... " "
    Program............. "ZM2431216 "
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "ZM2431216 " in
    "EXTRACT_GENERAL_DATA".
    The main program was "ZM2431216 ".
    The termination occurred in line 980
    of the source code of program "ZM2431216 " (when callin
    The program "ZM2431216 " was started as a background jo
    Source code extract
    009500              mara.ntgew,
    009510              mara.gewei,
    009520              mara.volum,
    009530              mara.voleh,
    009540              mara.mstae,
    009550              mara.mstde,
    009560              mara.prdha,
    009570              marc.matnr,
    009580              marc.werks,
    009590              marc.mmsta,
    009600              marc.mmstd
    009610        into :w_ops-groes,
    009620              :w_ops-brgew,
    009630              :w_ops-ntgew,
    009640              :w_ops-gewei,
    009650              :w_ops-volum,
    009660              :w_ops-voleh,
    009670              :w_ops-mstae,
    009680              :w_ops-mstde,
    009690              :w_ops-prdha,
    009700              :w_ops-matnr,
    009710              :w_ops-werks,
    009720              :w_ops-mmsta,
    009730              :w_ops-mmstd
    009740        from sapr3.mara, sapr3.marc
    009750        where sapr3.mara.mandt = sapr3.marc.mandt
    009760          and sapr3.mara.matnr = sapr3.marc.matnr
    009770          and sapr3.mara.mandt = :p_mandt
    009780          and sapr3.mara.matnr = :w_ebs-matnr
    009790          and sapr3.marc.werks = :p_owerks
        >    ENDEXEC.
    009810  endform.                    " extract_general_data
    009820  *&
    009830  *&      Form  append_i_ops
    009840  *&
    009850  *      Appends W_OPS to I_OPS
    009860  *
    009870  form append_i_ops.
    009880    append w_ops to i_ops.
    009890  endform.                    " append_i_ops
    009900  *&
    009910  *&      Form  extract_material_description
    009920  *&
    009930  *      Extracts a Material Description from the remote database an
    009940  *      modifies the current record in I_OPS.
    009950  *
    009960  *        >P_SPRAS  Language Key
    009970  *
    009980  form extract_material_description using    p_spras.
    009990    EXEC sql performing set_langauge.
    Contents of system fields
    SY field contents..................... SY field contents............
    SY-SUBRC 0                            SY-INDEX 0
    SY-TABIX 1                            SY-DBCNT 1
    SY-FDPOS 18                            SY-LSIND 0
    SY-PAGNO 0                            SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Name.......................... Contents.1........2........3....+..
    W_EBS-PRAT4
                                  2
                                  0
    W_OPS-GROES
                                  22222222222222222222222222222222
                                  00000000000000000000000000000000
    W_OPS-BRGEW                    #######
                                  0000000
                                  000000C
    W_OPS-NTGEW                    #######
                                  0000000
                                  000000C
    regards,
    krishnaiah.

    Hi,
    This is usually a SERVER SIDE DATABASE PROBLEM or SQLNET LISTENER (server side) PROBLEM.  The client side should initially be ignored and instead the server should be investigated. In rare cases, this can be caused by client
    side memory or other resource problem, or a DLL version mismatch, but this is
    unlikely.
    Enlist the assistance of your DBA.  Then reproduce the ORA-3113 error on your
    client application.  Ask your DBA to look at the database side Alert.log and
    trace files and look for ANY activity.  Any activity that coincides with your
    ORA-3113 will be a clue.
    REgards
    Vinod

  • Error when executing job from BW

    Hi,
    We have created a job that transfers a set of data to BW PSA.
    When executing from data services designer or from the management console the job works fine.
    When executing the job from BW administration workbench, the job is executed and does not report failures (we can consult the log in the management console).
    But nothing arrives in the PSA, and on the workbench we get the following errors:
    Error in a data conversion in record
    data record      1 of the fragmented entry is too long.
    Error in a data conversion in record
    Please advice what to check next.
    Best regards
    Thomas

    Hi,
    Thank you for your help.
    I tried changing the BW datastore to UTF-8 but am still not able to load these data when it is trigged from BW.
    After changing the datastore to UTF-8 I get some additional information in the log but no errors
    Additional information in the log:
    The specified locale  and datastore codepage
    Br
    Søren Ejlersen

  • Error when executing a Query through information Broadcasting

    Dear SDN,
    We have configured information Broadcasting in the Web Reports---
    Scheduled and then when executing the following error is coming
    500 internal server error - Microsoft internet explorer
    Error when processing your request
    What has happened?
    The URL http://xyz.com:8000/sap/bw/BEx was not called due to an error.
    Note
    The following error text was processed in the system BWD : Please enter a valid value for characteristic 0CALMONTH.
    The error occurred on the application server asalbwd_BWD_00 and in the work process 0 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    START-OF-SELECTION of program RSRD_BROADCAST_PROCESSOR
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system BWD in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server asalbwd_BWD_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server asalbwd_BWD_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http-c:900-u:VENKAT -l:E-s:BWD-i:asalbwd_BWD_00 -w:0-d:20080708-t:133744-v: ERROR_MESSAGE_STATE-e:Please enter a valid value for characteristic 0CALMONTH.
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Please suggest us to resolve this error..
    Help will be greatly appreciated with points..
    Thanks in advance

    Hi
    Thanks...
    I have given only Fiscal Year/Period Variable
    Other than Fiscal Year/Period Variable....No Variables in that Query..
    In FI Queries, I did not use 0CALMONTH Variable...
    I do not know why it is giving that error..
    Please suggest us to resolve this error..
    Thanks in advance

  • Error when executing query without passing variable selection

    Hi Gurus
    I am getting an error while executing a query with out passing values for variables
    When executing the query by passing the filter values report returns the data
    When executing the query with out passing variable selections the error message is
    Unknown error in SQL interface
    Error reading the data of Info Provider ZCRM_O08
    Error while reading data; navigation possible
    System error in program SSAPLRS_EXCEPTION and form
    RS_EXCEPTION_TO_MESSAGE
    No Data Available
    can any one please help me in resolving this
    Thank you

    Hi Srini
    Thanks for your quick response
    When i am executing the query with selection it is returning the data
    giving error when executing with out passing the selection
    is there any other cause for this problem
    like any particular info object causes this sort of problem
    Thank you

Maybe you are looking for