GDS: Getting an error of type R/3 Import

Hello All,
I'm working on GDS 1.0. The scenario is as follows:
- I am extracting some GDS relevant materials from SAP R/3 (the GDS relevant flag is set for the materials) using transaction se38 (Program Name: GDS_MATERIAL_EXTRACT).
- The idocs for these materials are successfully posted to XI (PI). PI  has also successfully processed the idocs but the corresponding material record was not updated in GDS repository.
- When I check the error message in GDS Console under Application Management --> Unprocessed Messages, the error message is "parentGlobalDataRecordId and childGlobalDataRecordId must not be the same" with Message Type: R/3 Import.
If anyone has faced the above mentioned error, please let me know what could be the problem? Also, where can I find the value for parentGlobalDataRecordId and childGlobalDataRecordId? Please note that parentGlobalDataRecordId and childGlobalDataRecordId are not a part of the idoc or the xml schema structure of the GDS repository.
Thanks and Best Regards,
Kaushik Koli.

Hi Kaushik,
from what you write, we assume this is a mapping problem, to solve this, I suggest to open a CSS ticket.
Kind regards
Felix Loecher

Similar Messages

  • I Get an error message when trying to import cd's

    I keep getting an error message when trying to import cd's - "You don't have write access for your media player"
    I already tried going to the itunes media folder and unchecking the "read only" box but it didn't help.
    I recently changed computers but since then I've copied cd's to my itunes folder with no problems. Now I get this message.

    Try a couple folders up - a parent folder's permissions can cause problems with a child subfolder.
    And don't just rely on the read-only box. Go to c/users/username/music, right-click and get permissions, go to the security tab and make sure your username has full control and ownership.

  • I keep getting an error code while trying to import a cd to my itunes: Error occurred while converting the file. The disc you are attempting to use is full. removing files and emptying the recycle bin will free up additional space.  What does this mean?

    I keep getting this error code while trying to import a cd to my itunes: "Error occurred while converting the file. The disc you are attempting to use is full. removing files and emptying the recycle bin will free up additional space."  What does this mean?

    Well it probably means exactly what it says... How much free space is there on your hard drive where the iTunes Media folder resides? I believe there is also an obscure bug that can occur when software doesn't read the true value of the free space properly, and the workaround is, perversely, to duplicate some content so that with less actual free space the software in question perceives it as more. I've no idea if iTunes is affected by such a bug.
    tt2

  • HT4489 I am attempting to import a vcard from my outlook into my icloud contacts. Exporting works fine but I get the error...could not import some contacts becaus ethere was a problem reading the vcard. Any suggestions?

    I am attempting to import a vcard from Outlook 2010 into my iCloud. Exporting to Outlook works fine but I get an error ..could not be imported there was a problem reading the vcard. Any suggestions?

    bmitch3 wrote:
    I am attempting to import a vcard from Outlook 2010 into my iCloud. Exporting to Outlook works fine but I get an error .
    You mean exporting from Outlook surely, what exactly are you you importing to?

  • Running KE27. Getting an error " Condition type XX12 is not active"

    Hi There -
    When running KE27 getting an error Copa Validation:  Condition Type XX12 is not active.
    Appreciate your time.
    Thanks
    Sri

    Hi Sri,
    is this a standard erromessage? Which code (ex: XY123)?
    br, Guido

  • Getting validation error "argument type mismatch"

    I have 2 dropdowns and submit button in jspx page. jspx page has corresponding backing bean with respective properties. When I select values in dropdowns and hit submit I am getting redirected to same page with validation error "argument type mismatch" beneath the dropdowns.

    Kate, I bet there is more to the error than you have given here. If I were a betting man I would say it has something to do with the difference between a jbo Number type and the java Number type. I have run into this particular problem twice before. Basically the oracle jbo Number type is not compatible or automatically caste-able into a java type Number. So, perhaps in your backing bean, you have some thing that is defined as a Number in one of jdeveloper's declaritive fields (jbo Number) and in a java program somewhere you have probably declared a variable as just plain-old Number which is a different class...coming from Java's built-in types classes.
    Hope that's your problem, and I hope this helps.
    Michael F.

  • I get an error message when trying to import pictures from iphone to iphoto(Imac)

    I get an error message trying to import photos from phone to imac. have 266 photos to get on my computer. how can i get these pictures off iphone onto my imac.?

    Try a couple folders up - a parent folder's permissions can cause problems with a child subfolder.
    And don't just rely on the read-only box. Go to c/users/username/music, right-click and get permissions, go to the security tab and make sure your username has full control and ownership.

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • Error:"Transaction type is not valid in GL Account(Asset Recon)",MIRO

    Hi,
    We are getting an error "Transaction type is valid in GL Account XXXX" while posting invoice through MIRO. This GL account is Asset recon. account.The PO is created for asset aquisition for a quantity of 9.
    Initially GR was done for 9 but IR was created for 8.
    Later when we tried to post invoice for 1, we are getting this error.
    Can anybody tell me the probable reason behind this error?
    Thanks,
    Mano.

    Hi Mano,
    could you please give me the code of the error message.
    regards Bernhard

  • Post Goods Issue - error : Class type does not exist - Message no. VK662

    Hi,
    I am trying to do Post Goods Issue and getting this error: Class type does not exist
    When double click on the error, it shows it is a message no vk662.
    Any help to resolve it is appreciated. Thanks in advance.
    -Sri

    Sri
    There is a problem in batch determination.
    The batch you assigned to the material does not have a class or if it has a class, that class does not exist.
    Display the batch from the delivery item  using MSC3N and go into the Classification tab. You should have a class of class type 22.  See if that class exists in CL03 and its status in basic data tab. Work on these lines and revert.
    Hope this helps.

  • After Effects Installation error: Invalid Type Context

    I am currently working with Creative Cloud CS6 After Effects on a Windows 7 Toshiba Satellite, Core i3. I've been having trouble opening the program suddenly. I thought it might be due to a plug in which I had been trying to get working with both my After Effects and Premier (which works fine btw) to use to read a specific video coversion file (AVS). It didn't ever work so I unistalled all the plug ins I could find, uninstalled After Effects and reinstalled it. Then I started getting the error "Invalid type context" and AE would crash. I've uninstalled and re-installed twice and still cannot get AE past this error.
    Edit: Got a chance to write dow the info message after the error:
    "After Effects error: Crash in Progress. Last logged message was: <1588> <ae.blitpipe> <2> Making new context"
    I've looked for help in the FAQ and also done a couple searches in the forums, but found no topics about this type of error. Any thoughts?

    1. I've uninstalled all files pertaining to AVS conversion from my computer.
    2. I've given After effects full permissions through my windows firewall and McAffe too.
    3. I've reinstalled twice since my first post.
    4. I've stopped Adobe QT32 from running while AE loads.
    5. I've run the program as an administrator and tried running it configured for Vista OS.
    6. I've removed all preferences and cannot find any folder for AE preferences in my AppData folder.
    I'm still unable to keep the program from crashing as it initializes the user interface (farther along than before). I'm still getting the Invalid Type Context file. It brings up a save project option, which I haven't tried as I haven't gotten far enough along in AE to have any work to save.
    I did get this detail report in an attempt to diagnose the problem:
      C:\Users\Darci\AppData\Local\Temp\WER3C3.tmp.WERInternalMetadata.xml
      C:\Users\Darci\AppData\Local\Temp\WER2104.tmp.appcompat.txt
      C:\Users\Darci\AppData\Local\Temp\WER2EBB.tmp.mdmp
    I really need help as I'm at the end of all possible suggestions for this type of problem.

  • Getting an error message while importing Thor.API.tcUtilityFactory in JSP.

    Hi All,
    I am getting below error message when i am importing Thor.API.tcUtilityFactory class in a JSP page as mentioned below
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.IOException" %>
    <%@ page import="java.io.PrintWriter" %>
    <%@ page import="javax.servlet.ServletConfig" %>
    <%@ page import="javax.servlet.ServletException" %>
    <%@ page import="javax.servlet.http.HttpServlet" %>
    <%@ page import="javax.servlet.http.HttpServletRequest" %>
    <%@ page import="javax.servlet.http.HttpServletResponse" %>
    <%@ page import="java.util.HashMap" %>
    <%@ page import="java.util.Map" %>
    <%@ page import="java.util.Properties" %>
    <%@ page import="java.util.*" %>
    <%@ page import="Thor.API.tcUtilityFactory" %>
    <%@ page import="Thor.API.Operations.*" %>
    <%@ page import="Thor.API.tcResultSet" %>
    and below is the error message that i am getting
    org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 19 in the generated java fileOnly a type can be imported. Thor.API.tcUtilityFactory resolves to a package
    An error occurred at line: 21 in the generated java fileOnly a type can be imported. Thor.API.tcResultSet resolves to a package
    can any one give me suggestions how can i overcome this issue.
    Thanks in Advance.
    Siva Pokuri.

    Can anyone please give me suggestions for my problem in the above post.
    Thanks
    Siva Pokuri.

  • Error Communication type  cannot be used

    Hi,
    I am trying to email an invoice using output type RD00 and output medium E. But get an error "Communication type  cannot be used" Message no. SVN 000.
    Please advise ASAP.
    Thanks in advance,
    Manish

    Hi,
    Output medium should be FAX for this ( i think it is 2, 1 for print and 7 for EDI)
    check that.
    Also check the Settings/config in SCOT transaction.
    regards,
    Anji

  • DynamicStream Class - why am I getting this error?

    I'm using AS 3.0 and am trying to use the DynamicStream class.  However, when I try to instantiate the class:
    var ds:DynamicStream;
    I get this error: 1046: Type was not found or was not a compile-time constraint: DynamicStream.
    Any ideas on how I can fix this would be greatly appreciated.  It seems like it would be something simple like importing a class but I haven't been able to find any info on it.

    Thanks for the help.  I thought the classes were part of AS 3.0 but I just realized that they're part of a separate DynamicStream API from Adobe.   I was able to download the classes and it's now working.

  • Error: conflicting types for 'myFunctionOne'

    Hello,
    The LabWindows/CVI 2013 help page for C Language Extensions appears to show function overloading being supported in the C99 extensions:
     "Function Overloading in C | Yes"
    The table in the following link shows the same thing:
    http://digital.ni.com/public.nsf/allkb/73AEAD30C8AF681A86257BBB0054A26B
    I tried compiling a source file with the following overloaded function definitions with C99 extensions enabled in the Build Options:
     void myFunctionOne(double d) {
      printf ("Value = %f\n", d);
     void myFunctionOne(int d) {
      printf ("Value = %d\n", d);
    and I get the error:
     "conflicting types for 'myFunctionOne'
    Is function overloading truly supported, and if so, how does one enable it?
    Thanks,
    Mark B.
    Solved!
    Go to Solution.

    Hello Mark,
    You have to add __attribute__((overloadable)) at the definitions of the functions you want to overload.
    void __attribute__((overloadable)) myFunctionOne(double d) {
    printf ("Value = %f\n", d);
    void __attribute__((overloadable)) myFunctionOne(int d) {
    printf ("Value = %d\n", d);
    You can see an examples of clang extensions here.
    Constantin

Maybe you are looking for