Error in saving record in Add-on

Dear Experts,
Following is the message is giving when saving the records in Add-on, Same Add-on is working in other database .. kindly give the solution
message is
[Microsoft][SQL Native Client][SQL Server]Conversion failed when converting the nvarchar value 'TSSIPL_UDO_ECT' to data type int. (CINF)
Version of SAP B1 is 8.8 and patch level is 12.
The database is currently upgraded from SAP B1 2007 to 8.8
Awaiting for reply
Thanks

Thanks,
It was a problem of SP_notification when i replace with original it worked but giving the same issue when used following. what may be the reason
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER proc .[SBO_SP_TransactionNotification]
@object_type nvarchar(20),                     -- SBO Object Type
@transaction_type nchar(1),               -- dd, pdate, elete, ancel, C[L]ose
@num_of_cols_in_key int,
@list_of_key_cols_tab_del nvarchar(255),
@list_of_cols_val_tab_del nvarchar(255)
AS
begin
-- Return values
declare @error  int                    -- Result (0 for no error)
declare @error_message nvarchar (200)           -- Error string to be displayed
select @error = 0
select @error_message = N'Ok'
--     ADD     YOUR     CODE     HERE
/*-- Mukesh Singh For considering outgoing(46),Incoming (24) payments --*/
DECLARE @UsrCode as nvarchar(30)
IF @transaction_type IN ('A','U') AND  @Object_type in ('24')
BEGIN
--     select logged in user
      BEGIN
               SET @UsrCode =(select USER_CODE from OUSR WHERE  Internal_K IN (select UserSign from ORCT T0 where T0.docentry = @list_of_cols_val_tab_del ) )
               IF @UsrCode NOT IN (  'sudip','kvc')
                    BEGIN
                         SELECT @Error = 1, @error_message = @UsrCode+' ,Not permitted to post this document,Pls Save it as Draft!'
                    END               
          END
END
IF @transaction_type IN ('A','U') AND  @Object_type in ('46')
BEGIN
--     select logged in user
      BEGIN
               SET @UsrCode =(select USER_CODE from OUSR WHERE  Internal_K IN (select UserSign from OVPM T0 where T0.docentry = @list_of_cols_val_tab_del ) )
               IF @UsrCode NOT IN ('manager' , 'sudip','kvc')
                    BEGIN
                         SELECT @Error = 1, @error_message = @UsrCode+' ,Not permitted to post this document,Pls Save it as Draft!'
                    END               
          END
END
---BLOCKING CLOSING OF GRN & Delivery  ( Sudip on 19.04.10) -
if @object_type in ( 15,20) AND @transaction_type in ('L','Ç')
begin
               set  @error = 1
               set @error_message = 'User Can Not Close/Cancel This Document'
End
-- BLOCKING MANUAL JV in slected accounts ---  T0.[TransType] of JDT1 = @object_type = 30
Declare  @GlCode   as nvarchar(30)
Declare  @GlCode01 as nvarchar(30)
Declare  @GlCode02 as nvarchar(30)
Declare  @GlCode03 as nvarchar(30)
Declare  @GlCode04 as nvarchar(30)
Declare  @GlCode05 as nvarchar(30)
Declare  @GlCode06 as nvarchar(30)
Declare  @GlCode07 as nvarchar(30)
Declare  @GlCode08 as nvarchar(30)
Declare  @GlCode09 as nvarchar(30)
Declare  @GlCode10 as nvarchar(30)
if @object_type in ( '30') AND @transaction_type in ('A','U')
begin
               SET @UsrCode =(select USER_CODE from OUSR WHERE  Internal_K IN (select UserSign from OVPM T0 where T0.docentry = @list_of_cols_val_tab_del ) )
               IF @UsrCode NOT IN ('manager')
BEGIN
SET @GlCode =(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '')
SET @GlCode01 =(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '1')
SET @GlCode02=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '2')
SET @GlCode03=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '3')
SET @GlCode04=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '4')
SET @GlCode05=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '5')
SET @GlCode06=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '6')
SET @GlCode07=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '7')
SET @GlCode08=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '8')
SET @GlCode09=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '9')
SET @GlCode10=(select T0.[Account] from JDT1 T0 WHERE  T0.[TransId] = @list_of_cols_val_tab_del and T0.Line_Id= '10')
--if @object_type in ( 30) AND @transaction_type in ('A','U') 
  If (( @GlCode in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode01 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode02 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode03 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode04 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode05 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode06 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode07 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode08 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode09 in (select AcctCode from CONT_VIEW) ) OR
    ( @GlCode10 in (select AcctCode from CONT_VIEW) ))  
     begin
            set  @error = 1
             set @error_message = ' Control A/C Error !!!!!'
End
END
end
/* VIEW  LOOKS LIKE
--DROP VIEW CONT_VIEW
create view CONT_VIEW as
SELECT T0.[AcctCode], T0.[AcctName], T0.[Levels], T0.[Groups], T0.[ActType], T0.[TransCode] FROM OACT T0
where T0.[AcctCode] in
('311101','311102','311103','311104','311105','311106','311107',
'411101','411102','411103','411104','411105','411106','411107','411108','411109','411110','411111','411112')
-- Select the return values
select @error, @error_message
end

Similar Messages

  • Error while saving record "User:johndoe":     Error -14071

    I have added my augmented users from the AD server. When I select user and to apply a setting under Preferences I get this on attempting an "Apply", Error while saving record "User:johndoe":Error -14071. I'm authenticating to my LDAP not AD/All Domains.
    I have the server bound correctly to the AD server. Bound to AD, then promoted to OD master.
    Tried WGM from another Mac, same error.
    I recall my AD admin extending the ad schema last year for OS X 10.4.
    Thoughts? Thanks.

    Thanks David and Mabel, and all for the suggestions. I did go through "Leveraging Active..." prior to posting. I did try your method of canceling the authorization to WGM and viewing Directories. I would select a user from this method and try to apply something from MCX, but still got the -14070 error. Yes, I do have my client bound 1st OD, 2nd AD, with OD first on the search policy for the client.
    I though I had solved my issue by authenticating to WGM and LDAP. Then selecting Groups and the Members tab, I define an OD group and select that group. I can then click the "+" towards the right of the window. Then select my AD there which populates. I can add my AD groups or single users to my OD group. Then I'm able to apply MCX settings. But, no "blue" circle next to the group's silhouette. How is my method possibly incorrect?
    Also, at some point I unbound my client from AD and it seems the client is ok with getting AD info off my OD server. Example, my AD sharepoint mounts for PHD.
    But, I do have a pause of 20 secs. are more when logging into the client as well as accessing applications. Side effect of my method?

  • Error while saving record "john doe":     Error: -14140

    when changing a users preferences i try and save but it comes up with this error
    Error while saving record "john doe": Error: -14140
    and wont allow me to save
    any ideas?
    Many Thanks

    This thread might help you:
    http://www.afp548.com/forum/viewtopic.php?showtopic=16200
    This document is supposed to be very good as well:
    http://www.afp548.com/filemgmt_data/files/AD-OD-2.1.pdf

  • Error while saving record in SharePoint 2013 through jQuery

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created
    orderservice.asmx.cs web service and write a code for save record on SharePoint 2013 online list as I mentioned below and calling on App1.js file.
    But I am facing error when I am saving record on SharePoint 2013 list on button click event
    “500 Internal Server Error
    <! DOCTYPE html>”
    <html>
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
    pwd.MakeReadOnly();
    clientContext.Credentials = new
    SharePointOnlineCredentials (myUserName, pwd);
    try
    Web oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = lists.GetByTitle("Order");
    clientContext.Load<ListCollection>(lists);
    clientContext.Load<List>(oOrderlist);
    ListItemCreationInformation listItemCreationInfo
    = new
    ListItemCreationInformation();
    var listItem = oOrderlist.AddItem(listItemCreationInfo);
         listItem["Title"]
    = orderRecord.OrderProfile;
    listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
    listItem ["Customer"] = orderRecord.CustomerId;
    listItem.Update();
           clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getSelectedItem');
    var Instruction = $('#instruction').val();
    $.ajax ({
    url: location.pathname + "OrderService.asmx/InsertOrder",
    type: "POST",
    dataType: "json",
    data: "{OrderProfile:'" + OrderProfile
    + "', CustomerId:'" + CustomerId.value
    + "', Instruction:'" + Instruction
    + "}",
    contentType: "application/json; charset=utf-8",
    beforeSend: function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
    success: function (response) {
    $(".errMsg ul").remove();
    var myObject = eval('('
    + response.d + ')');
    if (myObject > 0) {
                                         alert(myObject);
    $(".errMsg").append("<ul><li>Data
    saved successfully</li></ul>");
    else {
    $(".errMsg").append("<ul><li>Opppps
    something went wrong.</li></ul>");
    $(".errMsg").show("slow");
    clear();
    error: function (response) {
    alert(response.status + ' ' + response.statusText
    + ' ' + response.responseText);
    would request for your support.
    Regards,
    Akhilesh

    Hi,
    Can you call your web service using jQuery not in an app successfully?
    As the error message suggests, it might be an error on the server side.
    I suggest you do a simple test to check whether you can call the web service using jQuery.
    Here are two links would provide more information about troubleshooting this error for your reference:
    http://sadomovalex.blogspot.com/2013/08/return-json-from-asmx-when-call-it.html
    http://www.codeproject.com/Tips/761116/Troubleshooting-an-Issue-With-Calling-an-asmx-Web
    Feel free to reply with the test result if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • WGM error when saving settings

    pop-up error while saving preferences in WGM:
    *Error while saving record "user group name":
    Error: -14006
    setup:
    OSX server 10.5.5 OD master on a Xserve.
    Bind to AD with kerberos.
    It worked fine for some time now, but i noticed the roblem while i was going to edit the managed printer setup by editing the users printer list. When i tried to save i received the pop-up message writen above and i choosed "dont save", suddenly the previous managed printer settings was gone. So i also lost the old users printer list even when i dint save the changes. Now, i can not neither add the old or the new printers. And that goes for several other managed preferences. I can edit Mobile account creating, but not the rules. When i tried to edit the dock, after same error, both dock and login preferences got flushed out ...
    Do any of you guys have a similar experience and solution for this problem. I really dont want to reinstall the OD server. ...

    Hi Volkan,
    I faced same problem when i install my first MacOS X Server on my OD/AC integration implementation server.
    If you tryed to add user from AD to OD to manage them, then you want to add some rules to those users. Firstly, you will not add them to Od to manage them. Probably you tryed to add rules to users from AC list. You couldn't apply your rules to user, because of you've got an error as you mentioned your post.
    I figured out that problem to create a group on OD. Then added users from AC to this OD group. And then i setted some rules from preferences section of WGM. After all that management rules functioned properly.
    I thing that, this method is gonna help you to manage your AD users over OD.
    Kind Regards..

  • "ERROR SAVING RECORD" Message generated...

    Hi Everyone,
    I have a minor error with an Alert I made. I have an alert
    linked to both the Pre-Insert and Pre-Update Triggers at the
    Block level of my form.
    This alert fires when the Volume entered in the record is >50.
    It asks "Are you are sure the Volume should be larger than 50?"
    and has a Yes and No button on it. When you hit Yes, it saves
    and that is correct. When you press No it doesn't save, and
    that is fine, BUT after you press No, a window with a red X
    comes up and says in all capitals "ERROR SAVING RECORD". How
    can I get rid of this?
    Someone please help me out, I am stumped!
    Thanks in advance.
    Mike

    Didn't you forget to write in your triggers:
    IF alert_button=ALERT_BUTTON2 THEN
    RAISE Form_Trigger_Failure;
    END IF;

  • Error while Saving the report

    Hi,
    i have created some reports which are working fine,
    but now i am facing some errors while saving the files.
    Also the reports does show only one record while there are many records in the database.
    The error messages are as follows:
    REP-1051; Unable to save document to file ' F:\Database\Reports\report1.rdf '.
    REP-1070: Error while opening or saving a document.
    Please help me to find out the exact problem.
    Also tell me how can i show all the pages of Database records in a report( while one record on each page)

    As for the error while saving, you have only one possible thing to try. It it doesn't work, you're sunk.
    Assuming the report was not being newly created, i.e. that it was opened from a file on your system, then rename that file to something else (Report_001_OLD.rdf, for example). Then try to save it - Reports will think it is a new file to be saved rather than an existing file to be updated.
    Again, if that doesn't work, and if you do not have the auto-save option turned on, then you're sunk. You will have just lost all of the work you've put into that report.
    As you'll discover, Reports is not the most robust application ever written.

  • Error while saving the Sales Order

    Hi experts,
        i am getting a runtime error while saving a sales order stating: SAPSQL_EMPTY_TABNAME. It says the field T681-KOTAB could be empty. I would give in more inputs. Someone plz help.
    Thanks.

    I would expect that KOTN521 would be a Database table defined in the ABAP Dictionary that relates to the condition implemented in 521 for the usage specified in that record.
    You should be able to go into the info system, SE84, and search under ABAP Dictionary / Database Tables to see what KOTN521 is.
    Also, since the only Keys to T681 are KVEWE and KOTABNR, and there are two KOTABNR entries with a value of 521, then there must be two different usages (KVEWE) associated with that table.
    If you see what they are, you can check to see what the usages represent.   Based on a lookup, it appears that a usage of N is for Free Goods, A is for Pricing etc.   In our system, we only have A entries.
    What are the usages for the 521 entries?  Do they relate to Free Goods/Pricing???
    Does the table KOTN521 exist in the ABAP Dictionary?
    Answering these questions may get you closer to the answer.
    Can you compare the values in these entries to what you have in different SIDs?
    Is this problem happening in Production, or is it still in a development or Quality Assurance client?
    If it is still in development or Q, then it may be that a recent customization change was made.
    Compare the entries across your systems, if possible.
    Good luck
    Brian

  • Error while adding records into master data

    Error :
    No matching records found (ODBC -2028)
    I have a mster table with One child table while generating code throgh getnextserialva() fn getting an error mentioned above
    i did code like this
    If pVal.ItemUID = "1" And pVal.FormMode = "3" Then
                            oDBs_Head.SetValue("Code", 0, getNextSeriesVal("VEDA_FINAL_MSTR"))
                        End If
    Function getNextSeriesVal(ByVal udoID As String) As Integer
            Try
                Dim seriesService As SAPbobsCOM.SeriesService
                Dim v_CompanyService As SAPbobsCOM.CompanyService
                Dim objectType As SAPbobsCOM.DocumentTypeParams
                Dim crmSeries As SAPbobsCOM.Series
                v_CompanyService = objMain.objCompany.GetCompanyService
                seriesService = v_CompanyService.GetBusinessService(SAPbobsCOM.ServiceTypes.SeriesService)
                objectType = seriesService.GetDataInterface(SAPbobsCOM.SeriesServiceDataInterfaces.ssdiDocumentTypeParams)
                objectType.Document = udoID
                crmSeries = seriesService.GetDefaultSeries(objectType) *Error is coming this line*
                Return crmSeries.NextNumber
            Catch ex As Exception
                objMain.objApplication.StatusBar.SetText(ex.Message)
            End Try
    in form data event
    Sub FormDataEvent(ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, ByRef BubbleEvent As Boolean)
            Try
                Select Case BusinessObjectInfo.EventType
                    Case SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD
                        If BusinessObjectInfo.BeforeAction = True Then
                            oDBs_Head = oForm.DataSources.DBDataSources.Item("@VEDA_FINAL_MSTR")
                            oDBs_Head.SetValue("Code", 0, getNextSeriesVal("VEDA_FINAL_MSTR"))
                        End If
                    Case SAPbouiCOM.BoEventTypes.et_FORM_DATA_LOAD
                        If BusinessObjectInfo.ActionSuccess = True Then
                            oDBs_Head = oForm.DataSources.DBDataSources.Item("@VEDA_FINAL_MSTR")
                        End If
                End Select
            Catch ex As Exception
                objMain.objApplication.StatusBar.SetText(ex.Message)
            End Try
        End Sub
    What is the problem while generating auto code..???

    Hello..
    First i register through code...i did code like this
    Public Function CreateUDOFinalProd() As Boolean
            If Not Me.UDOExists("VEDA_FINAL_MSTR") Then
                Dim findAliasNDescription = New String(,) {{"Code", "#"}, {"U_ItemCode", "Finished Goods"}}
                Me.registerUDO("VEDA_FINAL_MSTR", "Finished Good Master", SAPbobsCOM.BoUDOObjType.boud_MasterData, findAliasNDescription, "VEDA_FINAL_MSTR", "VEDA_FINAL_DLN")
                findAliasNDescription = Nothing
            End If
        End Function
    all the sub fn inside the fn is working  fine . I called same place where u suggested.
    At last showing messages UDO Registered Sucussfully..!!!
    I did table registration for docment parent and child table for  that is working fine automatically Add,update ... happening
    But same process im doing for master also as mentioned in code but that is not working for master and child but working for
    document and child
    To understand problem i did registration through front end
    for this i deleted created udo object(through code)
    again i created through front end ...stilll the same error
    by
    Firos

  • Error while saving Employee Billrates through OAF page

    Dear All,
    I am facing the below mentioned error while saving Employee Bill rates for any project through OAF interface. I have tried saving the same through FORMS interface and its getting saved. The Unique constraint on the error log is on the table PA_EMP_BILL_RATE_OVERRIDES and the column is EMP_BILL_RATE_OVERRIDE_ID and we have a sequence for generating Unique id. The sequence used is PA_EMP_BILL_RATE_OVERRIDES_S.
    Please note that the error only fires on insertion of new record in the table PA_EMP_BILL_RATE_OVERRIDES, on updation error doesn't fire.
    The Constraint definition on the table is :
    create unique index PA.PA_EMP_BILL_RATE_OVERRIDES_U2 on PA.PA_EMP_BILL_RATE_OVERRIDES (EMP_BILL_RATE_OVERRIDE_ID)
    ERROR : java.sql.SQLException: ORA-00001: unique constraint (PA.PA_EMP_BILL_RATE_OVERRIDES_U2) violated

    Dear All,
    I am facing the below mentioned error while saving Employee Bill rates for any project through OAF interface. I have tried saving the same through FORMS interface and its getting saved. The Unique constraint on the error log is on the table PA_EMP_BILL_RATE_OVERRIDES and the column is EMP_BILL_RATE_OVERRIDE_ID and we have a sequence for generating Unique id. The sequence used is PA_EMP_BILL_RATE_OVERRIDES_S.
    Please note that the error only fires on insertion of new record in the table PA_EMP_BILL_RATE_OVERRIDES, on updation error doesn't fire.
    The Constraint definition on the table is :
    create unique index PA.PA_EMP_BILL_RATE_OVERRIDES_U2 on PA.PA_EMP_BILL_RATE_OVERRIDES (EMP_BILL_RATE_OVERRIDE_ID)
    ERROR : java.sql.SQLException: ORA-00001: unique constraint (PA.PA_EMP_BILL_RATE_OVERRIDES_U2) violated

  • Error while saving config in MSY

    Hi,
    I am working on taking MSA 5.0 SP7 go-live. I am working in MDW. I posted a SDN post long back regarding the custom partner functions in MSA and got it resolved (followed the note 521871). I am trying to do the same in the PROD system and i am facing errors:
    -> When i goto Cross-Component Settings->Relationship Categoty-> click on NEW i am getting the errors:
      1. 'MTBLLFW-The attribute destination of the business object
          relation type is not valid'.
      2. 'MTBLLFW-the attribute source of the business object relation
          types is not valid'
    But it is allowing me to add an entry. When i save my customer entry i am getting the error :
      3. 'UI_CORE_SAVE_FAILED_STA-Errors while saving'.
    I ran the consolidated prefill for 5.0 and SP07. I followed the same procedure as i did in DEV. In DEV i never got these errors. I was able to create them in the first attempt.
    If anyone has any idea please let me know.
    Thanks in advance,
    Karuna.

    Hi,
    did you already check i.e. compare the customizing subscriptions for both DEV MDW and PROD MDW sites?
    Also you should check & compare the download monitor for CDB load in the CRM system(s).
    I assume sth is missing there (see also your other post).
    Regards,
    Wolfhard

  • Error when saving

    Hello BW Experts,
    I am getting this error while saving a query in Bex.
    'The query could not saved due to a problem in transport'.
    I am actually creating a test query production. I am not sure why it is refering to the transport. From what i understand there is nothing to deal with transports.
    Anyone experienced a similar problem before.
    Suggestions appreciated.
    Thanks,
    BWer

    OSS NOTE 194051
    Symptom
    An error occurs when you save a query:
    Error when saving
    "The query could not be saved due to a problem in transport".
    Other terms
    Business Explorer, query, transport, save, R9 124
    Reason and Prerequisites
    There are 4 possible reasons for this problem:
    1. The BEx default transport request or the development class-dependent transport request is not maintained or released in the Administrator Workbench.
    2. The system is set to "cannot be changed". Refer to Note 337950 (as of 2.0b SP 11), which describes how query objects can be edited in systems that cannot be changed.
    3. You are not authorized to write to Workbench requests.
    4. The BEx default transport request or the development-class-dependent transport request in the Administrator Workbench has another target system than the query (the transport destination of the query is determined via the transport layer of the query's development class (as of 3.0: of the package)).
    The error only occurs for query objects which already have a development class, that means, which were already placed on a transport request.
    Solution
    Solution for Cause 1:
    a) Start the Administrator Workbench
    b) Choose 'Goto' to change to Transport connection
    c) Choose "Request BEx" or "BEx development classes" in the toolbar.
    d) Create a (new) request.
    e) All changes in the BEx are now written to this request.The end user is no longer confused by 'Transport' dialog boxes.
    Solution for Cause 2:
    See Note 337950
    Solution for Cause 3:
    Authorize user to write to Workbench requests.
    Solution for Cause 4:
    Create a request for each target system. Assign the request suiting the target system of the transport layer of the development class (of the package) to each development class (as of 3.0: to each package) used for BEX objects.
    If this does not change the situation, further information is useful for error analysis.
    Go to Transaktion SE16, Table RSZCOMPDIR. In field COMPID, select the technical name of your query. Read the COMPUID of your query.
    Go to SE37, function module rso_elem_get_related. Parameter I_IOBJNM is set to the COMPUID, and parameter I_OBJVERS (object version) is set to A. Only the export parameters E_T_OBJ_EXISTENTIAL and E_T_OBJ_DEPENDENT are of interest.
    These entries are then entered in function module rs_tr_objects_check_insert in import parameter I_T_TR_OBJECT. In this parameter, fill field PGMID fixed with 'R3TR' and field OBJECT fixed with 'ELEM'. Field OBJ_NAME is filled with the contents of field OBJNM from export parameters E_T_OBJ_EXISTENTIAL and E_T_OBJ_DEPENDENT. The other fields are not relevant.
    The export parameters of this function module are required for further error determination. Add this information to your OSS message. The table of messages E_T_MSG is important in particular.

  • CAD Integration - Error While Saving file

    Hi,
    Im having One  Document type "DRW" which was working fine with all the functionalities.
    After that i created another document type "PDW". Now all the functionalities are working fine for this Document type and not for "DRW".
    Im getting an error while saving the drawing file in AutoCAD.
    For DRW Type, I can able to create a DIR. After creating DIR if i click save button im getting this error.
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: BAPI_DOCUMENT_CHANGE2
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Reading titleblock data for 0000000000000010000000458/DRW/000/00...
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: CAD_GET_TITLE_BLOCK_DATA
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Reading titleblock data for 0000000000000010000000458/DRW/000/00...
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: CAD_GET_TITLE_BLOCK_DATA
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Reading titleblock data for 0000000000000010000000458/DRW/000/00...
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: CAD_GET_TITLE_BLOCK_DATA
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Reading titleblock data for 0000000000000010000000458/DRW/000/00...
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: CAD_GET_TITLE_BLOCK_DATA
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Updating document info record 0000000000000010000000458/DRW/000/00 ...
    RFC_SYS_EXCEPTION
    SAP RFC error
    Operation: BAPI_DOCUMENT_CHANGE2
    Group    : 104
    Key      : RFC_ERROR_SYSTEM_FAILURE
    Message  : Wrong status
    Command:
    Command: Conversion to JPG done.
    Checkin file into the existing storage category ZMRK ...
    E26 253 Error while checking in and storing:
    C:\SapWorkDir\AcadM\ConvertTempPath\10000000458_DR
    But there is no error in "PDW" document type.
    Anybody have any idea on this?
    Regards,
    MRK.

    Hi MRK,
    Check  the Status in DC10.
    Also make sure you have configured in dc30
    If possible send me the config file (.cfg)* to [email protected]
    I ll check n revert back...
    Have you done any settings based on document type in CFG file?
    Niranjan
    Award points if useful...
    Edited by: Niranjan Dandekar on Mar 7, 2008 1:42 PM

  • Error: No matching records found 'G/L Accounts' (OACT) ( ODBC-2028)'

    Hi all
    While adding outgoing excise invoice from Delivery the system gives the foll error:
    No matching records found 'G/L Accounts' (OACT) ( ODBC-2028)'
    Please note that
    1. I have already mapped cenvat accounts in outgoing/incoming in general tab of G/L account determination.
    2. I have two fiscal years 09-10 and 10-11. Both are unlock. Im working on 09-10 fiscal year and cenvat accounts are mapped for both fiscal years.
    3. For rounding i have also mapped rounding account.
    4. I am easily able to create incoming excise invoice.
    5. I am able to  add some of outgoing excise invoice but in the accounting tab there is no transaction.
    6. My excise tax codes are BED+VAT in which BED is of 0 rate and VAT is of 12.5% or 4% rate, the reason for taking BED as 0 is the comapany is trading and we have to pass excise to customer by taking item as batch.
    This is whole scenario.
    Plz solve my problem considering all these points. Waiting.
    Thanks
    Edited by: Malhotra Saurabh on May 11, 2010 7:13 AM

    I have managed item by groups and warehouse is excisable as i have done GRPO in that warehouse.
    I have already given cenvat accounts in Warehouse too.
    Edited by: Malhotra Saurabh on May 11, 2010 7:55 AM
    Edited by: Malhotra Saurabh on May 11, 2010 7:57 AM

  • T4i Rebel error message "movie recording has stopped automatically"

    I was recording my client when suddenly I got a this error message "movie recording has stopped automatically" and I could not record video anymore. I am recording on a class 10 sandisk Ultra card. 720/60, EFS18-135mm lens. Never had any problems in the past. First I get a small veterical meter on the frame and then after 5 secs the recording stops with this error message. Please tell me it is opeartor error...I have had this camera for 2 years now and never had a problem. I tried multiple cards.
    thanks for the help,
    DM

    Either you or the person you spoke to at Canon was confused.
    What the camera requires for video purposes is a card which is "at least" Class 6 or faster.  The class designation is an indicator of the cards data transfer speed.  Class 6 actually means the card is capable of transfering data (either reading or writing) at "at least" 6 megabytes per second.  A Class 10 card can transfer data at "at least" 10 megabytes per second.
    The T4i is also compatible with "UHS-1" cards... which are significantly faster than eithe Class 6 or 10.
    The reason for requiring "at least" Class 6 has to do with how fast the camera is attempting to capture and save frames of video to the card.  The camera actually has an internal memory buffer which is very fast.  When you start recording, the data is being saved to that buffer... and simultaneously the camera also starts taking the data from the buffer and saving it to the memory card (which is slower).  If the camera is recording video only slightly faster than the card can record, then it will actually take a few minutes before the buffer is completely filled.  But at that point the camera has no choice but to stop recording because it has absolutely no place to save data ... the internal buffer is full and it can't empty the buffer because the memory card can't save data as fast as new frames of video are coming in.
    Faster is always better.
    Memory cards do actually wear out and develop errors over time.  This is normal.  A good card will re-map the bad blocks so they aren't used anymore... and this is why you should do a low-level format IN CAMERA (not using the computer).  Good cards also have a "memory leveling" technology to try to use all the blocks roughly an equal number amount.   This extends the userful life of the card.
    When replacing the card, do not skimp on quality!  I cannot emphasize that point enough.  Most times when someone brings up this issue... it's the card that is having problems and not the camera.   
    It's easy to produce forgery cards which look like a good brand but are not.  Buy GOOD cards from REPUTABLE dealers.  Do not shop for the cheapest website on the Internet with a questionable reputation in order to save a couple of bucks.
    Lexar brand and SanDisk brand are good. 
    When buying memory cards, I only buy cards from Lexar and SanDisk.  I also buy their highest end cards (by speed performance... not necessarily their biggest capactiy cards).  I buy the cards from dealers with a solid reputation.  This avoids the unpleasant error messages which always seem to happen at the worst possible time.
    Tim Campbell
    5D II, 5D III, 60Da

Maybe you are looking for

  • Help  needed  in inserting  into column  of XML type

    i have requirement of inserting data into column of xml type eg cust product cost 1 a 3 1 b 7 1 c 5 now required result should <PROD-LIST> <a>3</a> <b>7</b> <c>5</c> </PROD-LIST> Please let me know how to achieve this , i was trying write function ,

  • SQL in XML file

    hallo all. i want to give value of groups.id instead of id from groups table. pls, could anybody help me with it. SELECT * FROM MEMBERS WHERE ID = (SELECT MEMBER_ID FROM MID WHERE GROUP_ID = (SELECT ID FROM GROUPS)); the group.id comes from here, fro

  • How do I transfert my domain name from the first registrar to business catalyst ?

    Hey, I don't find where (on the Admin Console) I have to put the EEP Key of my domain name I want to use for the website on BC. This EPP Key  come from the registrar of my  site that I want to transfer to BC. I want use this name domain. Can you help

  • How to create text names within a number or shape

    I would like to learn how to create a print design for college hoodies. I get asked all the time but it takes me a very long time to do it. I am sure there is a quicker way in illustrator. I want to create a design like this image. Can Anyone Help me

  • Why learn Java if you know ColdFusion?

    ColdFusion is awesome for my work. I can make anything I want with it and seeing as 99% of my work is making web applications, I haven't needed to look elsewhere. I was just wondering why anyone would need to learn Java, if you already know ColdFusio