UDO  Saving Problem

Hi Friends,
I created  a new form and binded all fields.I have some header values that i wanted to save to master table(Master data) and 3 matrices those values i need to save to one child table(Master   DataLine).The problem is that when i save ,values to header table are properly inserted  but to child table only data from first matrix are inserted.The rest of the matrice's values are not inserted.These 3 matrice's values need  to store in one child table.Please help me to solve this problem.Thanks..

Hi
You need to ... Select additional tables user subordinate to the object and determine the sequence of updating the DB.
Also search this forum. Was talked so much about this issue.
For example:
- [Thread: Unable to enter data into matrix on user defined form .. |Unable to enter data into matrix on user defined form  ..;;
- [Thread: UDO: Master-Detail problem|UDO: Master-Detail problem;.
- [Thread: Update User Defined Table|Update User Defined Table;
Hope these notes can help you.
Regards
Sierdna S.

Similar Messages

  • Mail attachment saving problem

    Hi,
    When I tried to save a Mail attachment today I got the following warning:
    Mail was unable to save the attachment “File.numbers” to disk. Please verify your downloads folder exists and is writable.
    The warning must be wrong because other attachments, even of the same kind, can be saved without problems. I observed that only such files are effected which contain subdirectories like numbers, keynote, etc. and my suspicion is, that the saving problems may come from wrong file reading/writing rights within these subdirectories, that the sender of the Mail may have imposed to prevent unwanted changes to his/her file. May this be so? Otherwise, what else?
    (MacOs X 10.5.6, Mail.app 3.5 and, in this particular case, Numbers08)
    Thanks for for help in advace!
    Joe.

    Hi Kappy,
    Nothing at all. No error message but no copying either, and no change in the curser appearance when dragging to the Desktop.
    When I go to Mail --> Message --> Forward as Attachment, the attachment in the composer window can be saved like a normal file and has an appropriate size, eg. the desired original file seems to be contained in there. However, I have no Idea how to extract the original .numbers file from that.
    Strange, isn't it?
    Thanks,
    Joe.

  • Microsoft word notebook layout Saving Problems

    Hi
    I'm having problems with my microsoft word where in notebook layout it won't allow me to save when the ending is docx, which is the usual saving ending. It allows me to save publisher and normal blank word documents, however not the notebook layout. I'm using Snow Leopard and word 2011, have done the updates, and it's the update version of 14.2.3. When i took it to Apple they couldn't help me besides telling me that maybe i have a corrupted file on my laptop and that i should make a new user and transfer my files over. However, if there is a corrupted file then it would just go onto the new user and it also doesn't allow me to prevent it, if the saving problems happen again.
    Has anyone seen this or does anyone know how to fix this problem? Could it be a virus or a corrupted file? And if it's a corrupted file how do i find it to delete it?
    Thanks if anyone could help.

    http://answers.microsoft.com/en-us/mac/forum/macword

  • Photoshop CS4 file saving problem...

    Photoshop CS4 file saving problem: When no file name is specified, Photoshop saves file to the root directory of the drive instead of the current folder. It auto names the image with the name of the folder that was active. Can this be fixed?
    BTW: I was using "save for web"--not sure if it that matters.

    Bug reports should go in the main forum.
    And yes, SFW has it's own file code so that is a very important detail.

  • Illustrator saving problems

    Hello everybody,
    In the last months I got more and more saving problems in Illustrator. I used CS5 and CS6 and now I switched to CreativeCloud where I have the same problems.
    I deleted my system two times and built it up completely new - but the mistake remains. Even with an update to MacOSX10.8 and CreativeCloud didn't solve the problem.
    When I try to save an Illustrator document the program sometimes starts to get inactive (I can't do anything more), so that I just can crash it. The file is saved, but when I open Illustrator again it is often unable to open any document without freezing again. After a complete reboot Im able to open Illustrator again proberly.
    Modellname:
    MacBook Pro
      Modell-Identifizierung:
    MacBookPro6,1
      Prozessortyp:
    Intel Core i7
      Prozessorgeschwindigkeit:
    2,66 GHz
      Anzahl der Prozessoren:
    1
      Gesamtanzahl der Kerne:
    2
      L2-Cache (pro Kern):
    256 KB
      L3-Cache:
    4 MB
      Speicher:
    8 GB
      Geschwindigkeit für Prozessorverbindungstyp:
    4.8 GT/s
      Boot-ROM-Version:
    MBP61.0057.B0F
      SMC-Version (System):
    1.57f18
    Hard drive is a 128GB SSD drive.
    I hope someone can help me
    Michael

    depends on my work - sometimes 30gb down to 5gb - mostly its about 20gb. When I finished my work I save it to our server.
    The bug appears at any status of free hard drive space.
    What I didn't mention is that the computer sometimes can not shut down after that illustrator issue. The screen becomes grey like on a normal shutdown but it won't ever end. Finally I have to crash the system completely.
    What I wonder about is that neither a program update nor a system update could fix it. Is it possible illustrator doesn't like my hardware - the SSD maybe?

  • Udo matrix rows saving problem

    Hi,
    i am creating a form by using UDO form generator.
    in that documet and doucument rows are existed. if user select the combobox value from the form, by taking that value and i am generating a query, i am generating a recordset. by using Userdatasources i am binding each column in matrix.
    i binded all values to the matrix successfully. but
    but when i press Add button, this matrix rows are not getting saved. and also if i have two rows, when i press add, in database only one row is adding with NULL values. how to save that matrix data?
    i am sending my code here. plz help me
    ds = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
    ds.DoQuery("select a.code as Code,b.Itemname as Desc1,a.quantity as Quantity from itt1 a,oitm b where a.code=b.Itemcode and a.code=' " & oComboBox.Selected.Value & ' "")
    'User datasources creation
    oForm = SBO_Application.Forms.Item("TBL_JOBWORK_")
    oUserDataSource = oForm.DataSources.UserDataSources.Add("dsItemcode", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 40)
    oUserDataSource = oForm.DataSources.UserDataSources.Add("dsItemdesc", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 40)
    oUserDataSource = oForm.DataSources.UserDataSources.Add("dsQuantity", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 40)
    ds.MoveFirst()
    oForm = SBO_Application.Forms.Item("TBL_JOBWORK_")
    oItem = oForm.Items.Item("mtx_0")
    oMatrix = oItem.Specific
    oColumns = oMatrix.Columns
    Dim oColumn1 As SAPbouiCOM.Column
    Dim oColumn2 As SAPbouiCOM.Column
    Dim oColumn3 As SAPbouiCOM.Column
    ' Dim oColumn4 As SAPbouiCOM.Column
    oColumn1 = oColumns.Item("col_0")
    oColumn2 = oColumns.Item("col_1")
    oColumn3 = oColumns.Item("col_2")
    ' oColumn3 = oColumns.Item("col_3")
    While Not ds.EoF
    oMatrix.FlushToDataSource()
    oForm.DataSources.UserDataSources.Item("dsItemcode").Value = ds.Fields.Item("Code").Value
    oColumn1.DataBind.SetBound(True, "", "dsItemcode")
    oForm.DataSources.UserDataSources.Item("dsItemdesc").Value = ds.Fields.Item("Desc1").Value
    oColumn2.DataBind.SetBound(True, "", "dsItemdesc")
    oForm.DataSources.UserDataSources.Item("dsquantity").Value = ds.Fields.Item("Quantity").Value
    oColumn3.DataBind.SetBound(True, "", "dsQuantity")
    oMatrix.AddRow()
    ds.MoveNext()
    End While
    plz help me any suggesions. in that. i want to save that matrix data in to tables. plz help me   urgent asap
    regards,
    nagababu.

    Hi,
    UDOs don't save data from UserDataSources (UDS) (and BTW: your code is wrong: you mustn't bind the UDSs to to columns time after time in the loop; that's just wrong). YOu have to handle such data in your code.
    Regards,
    Frank

  • AA 2.1 file saving problem

    I have AA 2.1 on Vista Home ( 32bit). I have used this for 2 years, no problems (besides my computer just being naturally slow), but all of a sudden I'm have issues saving my mixdowns and sessions. I open up the "Save As.." dialog box, and go to type in the name of the file, and when I press the first key, AA shuts down completely. Does it for saving both sessions and mixdowns. I have rebooted the program and my computer mutiple times, changed my save settings, checked all my temps, and everything else I could think of.
    I called some colleagues who ahve run AA for years, and they've never heard of this happening. Lots of fast help is greatly appreciated, as I am in the middle of a project and have a big deadline coming up (like...tomorrow afternoon ha ha).
    Thanks!!

    This sound suspiciously like an issue caused by an application called SPRTCMD by Support Soft.  This software is typically installed by ISPs, Computer manufacturers, and other organizations and enables them to perform remote debugging or sessions among other things.  Vista SP1 resolved this for all the cases we encountered, but you may want to verify if the service is installed and disable it if you don't want or need it.
    1. Click the Start button (or whatever we're calling it in Vista) and type    msconfig
    2. In the Startup tab, locate and uncheck (disable) the "SupportSoft sprtcmd" item.
    3. In the Services tab, locate and  uncheck (disable) the SupportSoft Sprocket Service" item.
    If you don't see either of these items, you may want to do a system search for SupportSoft and see if you find it somewhere.
    Durin

  • Query saving problem

    hi, I encountered a problem while query saving.
    After I did some changes of a query and pressed the "Save" button, the process was locked there with the message " the Query is saving..."
    The process wouldn' t stop running untiil time out,but the query can't be saved. Furthermore,all the queries and calculated keyfigures from that InfoProvider can't be saved no matter if they are changed or not.
    If I  run  RSRT of that query,the process is locked there, too. I wonder what's the problem...
    Please give me some help, thank you

    Locks exist in SM12,
    after i remove those locks and try again to save the query, they appear again in SM12.
    All the queries cannot be saved from that particular Multiprovider, others are OK.
    Any solutions? Thanks
    Regards,
    Jessie
    Edited by: jessijiang on Aug 30, 2009 8:31 AM

  • LabVIEW 2011, and Excel 2010: saving problems

    Hello to all! I am a student of Mechanical Engineeringfthat very little has been using this software. I present the problem: for a matter which is called Biomechanics, I and my colleagues, we have developed the design of a rheometer, which is controlled by LabVIEW2011. Since we are still at the experimental stage, always has been simulated using labview: the whole experience. So, labview, at present, not only controls the stepper motor through the frequency sets, but also simulates the output (in the specific, the response to the torsion of the cartilage, simulated with a low pass filter of the second order). All this was done by my colleague more experienced than me, who today passed me the finished project that in his pc works perfectly while not in mine (we have the same version of labview, but different version of office). In practice, the program is fine (there is no arrow "Run" broken) and the simulation with the creation of the sine graph (response of the cartilage) is done perfectly. My colleague then set labview in order to save the data to an excel sheet at the end of the simulation, asking the user where to put it (the excel file must already exist, labview does not create it). The excel file should contain two columns and a scatter plot (one column represents the frequency, f, of the stepper motor, the second represent the shear modulus G, which increases as the frequency increases and the graph represent the trend of G in function of f). As soon as I decide to save the data, excel opens, for an instant appear the scatter plot and data in columns but immediately after the graph disappears and remain only the columns with data (so I have to make the graph "manually") and labview gives me the following error:
    Error -2147023170 occurred at Property Node (arg 2) in NI_ReportGenerationToolkit.lvlib:Excel_Insert_Char
    t.vi->NI_Excel.lvclass:Excel Insert Graph.vi->NI_ReportGenerationToolkit.lvlib:Excel Easy Graph.vi->SaveExcelFile.vi->Progetto 2.0.vi
    This error code is undefined. Undefined errors might occur for a number of reasons. For example, no one has provided a description for the code, or you might have wired a number that is not an error code to the error code input.
    Additionally, undefined error codes might occur because the error relates to a third-party object, such as the operating system or ActiveX. For these third-party errors, you might be able to obtain a description of the error by searching the Web for the error code (-2147023170) or for its hexadecimal representation (0x800706BE).
    What can I do?
    Thanks. Regards
    Solved!
    Go to Solution.

    The LabVIEW Report Generator in LabVIEW 2010 and more recent versions does, indeed, work very well with Excel in Office 2010.  I helped someone about two weeks ago with a problem saving a series of measurements to a (new) Excel Workbook.  Your problem differs in two ways -- you want to save in an existing Excel file (why? Aren't you worried about overwriting data, or are you trying to add a new WorkSheet, or append to the end of an existing WorkSheet?) and making a Chart.  I've not tried charts, so don't have advice right now.
    Judging by your error message, it is the Chart feature that is giving you trouble.  Can you see how your code runs if you eliminate the Chart functions?  [You can do that by putting a "Diagram Disable" Structure around the Chart code, clicking on the top of the structure and wiring the wires through in the Enable case].
    Give that a try and let us know what happens.

  • File saving problems after updating to 10.7.2

    I updated to Mac OS X 10.7.2 on the 12th. Right after this update, I started having problems under XCode (I had updated it to 4.2). I can not save any changes to my source code. I get an error code saying "The document ImportView.m can not be saved. You don't have permission.
    Running Disk Utility and fixing permissions does not help.
    I also had problems trying to save a screen capture under Grab. Similar problems when I start MS Word.
    So, i'm suspecting a combination of Autosave and Versions.
    Any clue will be appreciated.
    Thanks,

    Once I rebooted (I had not done it for about a week now) all the problems disappeared.
    I feel a little bit stupid, but there is no warning about having to reboot after installing a new version of XCode.

  • HELP!! Lumia 710 Video recording/saving problem

    So I'm having my Nokia Lumia 710 from 2012 February. I tried to record videos but there are 2 different ways how my phone handles it
    1. After making a video, it freezes (The screen freezes, the last picture of the video is visible, it's probably saving) and than, the video is gone. The phone locks itself, and the video+music library doesn't contain my video
    2. The phones saves my video (happened only a few times...) , but when I'm looking it back (on PC and on phone) it's lagging, and pictures fall out... Seconds fall out from the video, but the sound is running. The picture freezes sometimes, and the sound is running.
    The longer the video, the bigger problem. 
    HELP ME PLEASE!!! 

    I'm experiencing the same problem (1) with my Lumia 800. It started recently and does not always occur.

  • MIGO saving problem

    Dear MM Expertise fourms,
    When saving in MIGO I can get the document number but showing the error like:
    Express document "Update was terminated" received from author "Bishnu..."
    System ID....   DFS
    Client.......   330
    User.....   BISHNU
    Transaction..   MIGO
    Update key...   EC5F2DDE918BF133AD3A0019B9C19D38
    Generated....   20.04.2009, 12:03:05
    Completed....   20.04.2009, 12:03:08
    Error Info...   00 671: ABAP/4 processor: SAPSQL_ARRAY
    I found the problem in include program LGLIUF1A by SM13/SM14.
    But in my other client I am not getting that errors. I can save the document.
    And the program code is also same. Why in 330?
    Is there anybody to help me on about that for over come form this problem?
    Thanks and b.rgds
    Bishnu
    20/04

    Hi
    This may help u
    The problem is with the number ranges. The error, SAPSQL_ARRAY_INSERT_DUPR, displayed states that a insert was being tried with a document no already existing. Kindly check up the number ranges
    Chk for the number ranges for the current fiscal year (both material and accounting doc number range)
    Reg
    Raja

  • PDF saving problem CS6- empty document

    Hello, can someone help me saving on my cs6 indesign to PDF? I've been having problems with it, the images sometimes do not apear, or it marks a mistake, and after i close it, its ok.
    My real problem is that I did my thesis on InDesign, its about 180 pages with big format images, it has never let me save on PFD, in fact, it just saves it as an empty document.
    PLEASE!!! Could someone help me? Im so nervous, I must print it already.
    Thank you so much!

    Thank you for answering I saved my doc, but every time i tried saving it in PDF it would save/export as an empty document.
    I tried to save it as a links doc, but it overwrote the original doc. and now I have like 2000 docs that are relinked to my original one. And i cant still save it on PDF

  • Number data-type saving problem through PL/SQL

    hi,
    I am having a field in my table called "amount" with type number(17,3). I am facing some problem while saving the data through pl/sql developer.
    while i am inserting data like 123456789012.567 its working fine but when I am inserting 1234567890123.567 for amount field its now showing any error while saving, but actually its storing "1234567890123.570" in DB. Similar thing is happening when I was saving "12345678901234.567",actually its saving "12345678901234.600".
    Whenever I was getting for 17 digits it's rounding last 3 and for 16 its rounding 2.
    I am using oracle10g as DB server.
    please suggest how to solve this particular problem as i am stuck or the alternate ways...
    Thanks,
    Shouvik

    It is a display problem, not a storage problem. i'm not sure what the equivalent in PL/SQL Developer is, but this sqlplus example seems to replicate your stated issue.
    SQL> create table t (num number(17,3));
    Table created.
    SQL> insert into t values (123456789012.567);
    1 row created.
    SQL> insert into t values (1234567890123.567);
    1 row created.
    SQL> insert into t values (12345678901234.567);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> set numwidth 16
    SQL> select * from t;
                 NUM
    123456789012.567
    1234567890123.57
    12345678901234.6
    SQL> set numwidth 25
    SQL> /
                          NUM
             123456789012.567
            1234567890123.567
           12345678901234.567You need to expand the display width for numbers.
    John

  • AR 10 Saving Problem

    I am running Windows 7 computer with Adobe Reader 10.1.8.   I have a problem where I have a PDF document that will not save any where on my computer.  The document opens and I can scroll up and down and read the docuement but I can't save it.   Each time I try to save the document, I am getting this message:  The document cannot be saved. There was a problem reading this docuement (110).
    I have unchecked the allowing fast viewing and I unchecked the optimized for fast viewing.  I close AR document and it opens up again.  I try to save it again and it starts to save then I get the above message.
    I know this is a common problem.

    How do you obtain that document; from a web page, or an email attachment?
    If web: right-click on the PDF link, then save the document to your local disk.
    If email: use the Save Attachments function of your email client.

Maybe you are looking for

  • How do I re-install Acrobat after hard drive has been replaced?

    I purchased and installed Acrobat XI in June. Shortly after this the hard drive on my laptop needed to be replaced and I now need to reinstall. Can I do this using the original code, as if installing a new product, or do I need to do something differ

  • Error in Export to CSV

    Hi all, Its one more new problem i'm facing. I have a search page (this doesnt uses oaquery, its fully custom handled search screen). I have added a exportButton to the page and i've choosen the option "Export All Rows" = True When i have some search

  • Subscription Denmark, cant call

    Hello, A few months ago I purchased a subscription for mobile and landline to Denmark. At first it worked perfectly but now it doesn't. When I try to call my moms mobile (I've only called mobiles when it worked) it says that I need to buy more credit

  • Copy video to dvd?

    We took a video with new canon camera. Can we burn it onto a dvd? Instructions only show how to burn photos. If not, how else can we do it? THx, Bev

  • Quick Share in Premiere Elements 10?

    Hi, I just upgraded from Premiere Elements 8 to version 10. And I'm missing the "Quick Share" function, where I can store carfully designed export settings for later use. Where can I find the "Quick Share" function in PE 10? Thanks Konrad