Easydms: Problem linking to objects - Shortdump and wrong mask

Hi everybody,
   we are looking into EasyDMS (ED) for a customer. We are having problems adding a Objectlink to a newly created document using ED.
When we try to add a new Building using a mask like xx01/9999/1  using CV01N, this gives us no problems, even the fm OBJECT_CHECK_VIBDRO does not exist but still no problems.
When we repeat the same procedure using the ED interface, we get a message which says that the FM OBJECT_CHECK_VIBDRO does not exist. When we save the document and look at the results in R/3, we see a different masking of the same building. We see xx01//9999/1.
Does someone know if the flow is different with ED? Does it use other checks on the input? Is there a kind of mask which is defined in the customizing? I tried the different conversionexits behind the original fields but the result stays the same.
Any easy way to debug this interface?
Any help would be great!
Cheers!
Laurens
ps: all related notes are implemented but we are having the same shortdumps

Hi Laurens,
please check if the correct dynpro number is maintained in table TDWOD. The entry should look like:
MANDT    DOKOB        SCREEN     ONLY_NEW_AUTH
002          VIBDRO         0500          1
You can maintain the necessary object in transaction SPRO under
Cross-Application-Component
    > Document Management
         > Control Data
             > Define screen for object links
To grant that always the current screens and authorizations were
called please maintain also the value "1" into the "Authorization"
column. Just for further information on this maintainance please see
the attached note 375452. It's important that you not enter the
mentioned screen number without the leading "1" as this number is added
automatically by the system (e.g. object MARA 1201 maintain like MARA
201).
Maybe this settings could help here!
Best regards,
Christoph

Similar Messages

  • Link of Object ID and Description to MARA/MBEW

    Hello,
    Please help me find the relationship of fields DOBJT (Object ID) and OJTXB (Object Description) to tables MARA and MBEW. These fields are found in structure STPOV_ALV. I need to find a link for these two objects as I will have to display them. Are there database tables which I can use to retrieve these data? Here is how I got DOBJT and OJTXB - Go to transaction CS15, fill up Material Number, Valid From and check Direct and Material BOM chkboxes, F5 then on the next screen fill up Plant and Usage then F8.
    Please help me. Your help will be greatly appreciated. Thanks in advance.
    CLA2005

    Instead trying to find out the tables, may be you can use these function modules to get your data.
    CS_WHERE_USED_CLA              Bills of material; class use                                        
    CS_WHERE_USED_CLA_ANY          Bills of material; direct class use or via other class              
    CS_WHERE_USED_CLA_VIA_CLA      Bills of material; class use via classes                            
    CS_WHERE_USED_COP                                                                               
    CS_WHERE_USED_DOC              Bills of material; document use                                     
    CS_WHERE_USED_DOC_ANY          Bills of material; direct and (indirectly) document use via classes 
    CS_WHERE_USED_DOC_VIA_CLA      Bills of material; document use via classes                         
    CS_WHERE_USED_KNO              Bills of material; use object dependency                            
    CS_WHERE_USED_MAT              Bills of material; where-used list                                  
    CS_WHERE_USED_MAT_ANY          Bills of material; where-used list as material or class item        
    CS_WHERE_USED_MAT_VIA_CLA      Bills of material; where-used list via classes                      

  • Problems with Data Objects, streams, and openDoc

    When I try to use this.openDataObject("myObject") in Acrobat 8, I get
    NotAllowedError: Security settings prevent access to this property or method.
    Doc.openDataObject:1:Console
    I have checked that the attachment type is allowed in the registry (and it is by default since the attachment is PDF), so is there a setting that can prohibit JavaScript from opening attachments?  If so, can I change this setting somewhere?
    I have discovered that while the above issue needs to be resolved, it is only part of the problem.  I am trying to read in a PDF file using Net.HTTP.request, convert the response using stringFromStream, then feed the response to createDataObject.  The result is not a valid PDF file.  Is this process possible or am I going about this the wrong way?  I have also tried app.openDoc, but since the PDF is located on our intranet https://someserver.com/doc.pdf I get a security error.  Using only folder level JavaScript, is it possible to open a remote file from a web server, evaluate its Doc object (fields, etc), then save the file back out to the local file system?
    Thanks,
    Scott
    Message was edited by: AcroBishop

    I have hundreds of Acrobat PDF forms out on the company web server.  There is a web service that produces an xml feed which lists all of the documents hosted on that server.  I read in the XML and query it to return the URL of a desired PDF.  What I need is a way to import the Doc object of that PDF so that I can enumerate over all of the fields and populate a listbox in the current document with those field names.  If I could then save the imported PDF to a local folder, well... that would just be icing on the cake.  The way I have been trying to go about this is to feed the URL to Net.HTTP.request which should (in theory) return the PDF as a stream object.  I run util.stringFromStream on that object because I want to feed it to createDataObject which requires a string to act upon.  My problems at this point in the operation are:
    1. I don't think this creates a valid PDF document object and I'm not sure if it should or if I am doing something wrong.  Though I am passing the correct MIME type to the createDataObject (application/pdf)
    2. regardless of the type or validity of the attachment, I get the error message that I mentioned in my original post which leads me to believe that somehow this company has disabled opening attachments via JavaScript.  If that is the case I need to know how to change that configuration.

  • Display Scorecard Link in Objective Settings and Appraisal

    Hi,
    How can I change the delivered text 'Display Scorecard' that appears on a button on an Appraisal Document when the Link (Display Scorecard) is configured on the Layout section of an Appraisal Template?
    Any help is greatly appreciated!
    Mary Ann Kolnik

    Hi Suresh,
    I have looked at the BAdi 'HRHAP00_LINK' and the associated implementation 'HRHAP00_LINK_001' and all the methods.  Where would I be able to change the value?
    I did see in the 'GET_INFORMATION' method where it mentions transaction SE61 and 'TX' to change documentation, but I couldn't find in SE61 how to add an entry to change the verbiage on the 'Display Scorecard' button.
    Thanks,
    Mary Ann

  • Problem using Oracle Object Types and Arrays.

    I'm currently trying to work with oracle object types in java and I'm running into some issues when trying to add an item to an array.
    The basic idea is that I have a header object and a detail object (both only containing an ID and a description). Inside of my java code I'm trying to add a new detail line to the header that has been retrieved from the database.
    Here's what I'm working with.
    --Oracle Objects:
    CREATE OR REPLACE TYPE dtl_obj AS OBJECT
        detail_id INTEGER,
        header_id INTEGER,
        detail_desc VARCHAR2(300)
    CREATE TYPE dtl_tab AS TABLE OF dtl_obj;
    CREATE OR REPLACE TYPE hdr_obj AS OBJECT
        header_id INTEGER,
        src VARCHAR(30),
        details dtl_tab
    CREATE TYPE hdr_tab AS TABLE OF hdr_obj;
    /--Java test methods
         public static void main(String[] args) throws SQLException,
                   ClassNotFoundException
              // Initialize the objects
              Test t = new Test();
              t.connect(); //Connects to the database
              //The oracle connection will be accessible through t.conn
              // Create the oracle call
              String query = "{? = call get_header(?)}";
              OracleCallableStatement cs = (OracleCallableStatement) t.conn.prepareCall(query);
              cs.registerOutParameter(1, OracleTypes.ARRAY, "HDR_TAB"); //Register the out parameter and associate it with our oracle type
              int[] hdrs = { 240 }; //we just want one for testing.
              ArrayDescriptor descriptor = ArrayDescriptor.createDescriptor(
                        "ARRAY_T", t.conn);
              oracle.sql.ARRAY oHdrs = new ARRAY(descriptor, t.conn, hdrs);
              cs.setARRAY(2, oHdrs); //Set the headers to retrieve
              // Execute the query
              cs.executeQuery();
              try
                   ARRAY invArray = cs.getARRAY(1);
                   // Start the retrieval process
                   Class cls = Class.forName(Header.class.getName());
                   Map<String, Class<?>> map = t.conn.getTypeMap();
                   map.put(Header._SQL_NAME, cls);
                   Object[] invoices = (Object[]) invArray.getArray();
                   ArrayList<Header> invs = new ArrayList(
                             java.util.Arrays.asList(invoices));
                   if (invs != null)
                        for (Header inv : invs)
                             System.out.println(inv.getHeaderId() + " " + inv.getSrc());
                             t.addDetail(inv, "new line");
                             for (Detail dtl : inv.getDetails().getArray()) // Exception thrown here
    //                              java.sql.SQLException: Fail to construct descriptor: Invalid arguments
    //                              at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    //                              at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    //                              at oracle.jdbc.driver.DatabaseError.check_error(DatabaseError.java:861)
    //                              at oracle.sql.StructDescriptor.createDescriptor(StructDescriptor.java:128)
    //                              at oracle.jpub.runtime.MutableStruct.toDatum(MutableStruct.java:109)
    //                              at com.pcr.tst.Detail.toDatum(Detail.java:40)
    //                              at oracle.jpub.runtime.Util._convertToOracle(Util.java:151)
    //                              at oracle.jpub.runtime.Util.convertToOracle(Util.java:138)
    //                              at oracle.jpub.runtime.MutableArray.getDatumElement(MutableArray.java:1102)
    //                              at oracle.jpub.runtime.MutableArray.getOracleArray(MutableArray.java:550)
    //                              at oracle.jpub.runtime.MutableArray.getObjectArray(MutableArray.java:689)
    //                              at oracle.jpub.runtime.MutableArray.getObjectArray(MutableArray.java:695)
    //                              at com.pcr.tst.DetailTable.getArray(DetailTable.java:76)
    //                              at com.pcr.tst.Test.main(Test.java:91)
                                  System.out.println(dtl.getDetailDesc());
              catch (Exception ex)
                   System.out.println("Error while retreiving header");
                   ex.printStackTrace();
              public void addDetail(Header hdr, String desc) throws Exception
              if (hdr == null)
                   throw new Exception("header not initialized");
              // Convert the current list to an ArrayList so we can easily add to it.
              ArrayList<Detail> dtlLst = new ArrayList<Detail>();
              dtlLst.addAll(java.util.Arrays.asList(hdr.getDetails().getArray()));
              // Create the new detail
              Detail dtl = new Detail();
              dtl.setDetailDesc(desc);
              // add the new detail
              dtlLst.add(dtl);
              Detail[] ies = new Detail[dtlLst.size()];
              ies = dtlLst.toArray(new Detail[0]);
              DetailTable iet = new DetailTable(ies);
              hdr.setDetails(iet);
         }I know its the addDetail method causing the issue because if I comment out the t.addDetail(inv, "new line"); call it works fine.
    Message was edited by:
    pcristini

    Oracle® Database Object-Relational Developer's Guide
    Also note that object relational database design is often less performant and scalable than relational. It is not very often used in production environments.
    However, the object orientated programming feature that is provided with Oracle object feature set are used and can make development and interfaces a lot easier.
    So in a nutshell. Say no to ref and nested table columns. Say yes to most of the other object features. IMO of course...

  • BP change documents ( linking problem between Object id and Business Partner)

    Hi,
    We need to create a report for documents changed for a Business partner.
    This will be done in sap bw.
    on source side I have created the datasource with function module changedocument_read and I am getting most of the information
    which I want. Only missing part is Business Partner number.
    Can somebody suggest , how I would be able to link Object Id to business partner.
    I need to pull everything that is changed at BP level and the Object class selection around 30 in number.
    So I am looking for any standard function module which can provide me the link between Object id and Business partner.
    If I establish the rules to determine the Business partner from Object id , its getting bit difficult.
    Can somebody please help/suggest.
    I have gone through many documents and scn posts but unable to find anything on this.
    Thanks !

    Hi, looking at the change history header table CDHDR it seems that object ID simple equals the internal format of the business partner number.

  • Link between structure indicator and labellig system (PM-FL)

    Hello,
    I'm facing a problem to associate one of my alternative label with a precise structure indicator.
    In our system (R/3 4.6c), we have activated the alternative system in order to use a 40-char-long label for our functional locations. We also created a structure indicator to represent these 40 characters.
    When changing this alternatice label, the system shows the structure indicator of the main label. On my opinion, it is normal because I've found no customizing point that allows me to link the alternative labelling and the structure indicator. Am I wrong?
    If you ever encountered this problem, could you please help me find a way to solve it?
    Best regards,
    Annabelle

    Hello,
    sorry I couldn't answer your question sooner.
    The situation is this one :
    - functional locations have assigned  primary labels. These labels are created according 43 (out of 44) structure-indicators which help in representing a structure of technical objects. Thanks to the object type, we created a link between object type and structure indicator through a specific table.
    - Two functional locations can have the same ID with distinct localisations.
    - a secondary label has been created in order to generate a 40-character-long ID that is necessary to have a unique ID for each functional location.
    - We have a specific structure indicator (the 44th) that represents a 40-character-long text.
    As both labels are mandatory in the solution, is there a customizing point where we can link a non-primary label with a defined structure-indicator?
    Thanks for your help.
    Annabelle

  • Action Link to link Custom Object 3 to Task

    Hello,
    Im creating a weblink on the task screen that runs a report on Custom Object 3 wtihin a new windows for the user to select the option on the report that the user would like to add. How can i create a action link that when selected will pass the selection on the report back to the activity screen?
    Or can i create a weblink on the account record that will run a report then on the results depending on the row create a task linking Custom Object three and Accounts Automatically
    Any suggestions would be approcaited

    Thanks Shilei,
    There is what i have been able to create so far:
    https://secure-ausomxXXX.crmondemand.com/OnDemand/user/ApptNew?OMCR0=AXXX-90ZIJC&OMTGT=ApptEditForm&OMTHD=ActivityNewNav&OMCBO=OnDemand+Custom+Object+3&OMRET0=CustomObj3Detail%3fCustObj3DetailForm.Id%3dAXXX-90ZIJC%26ocTitle%3dASAHI+BOM%26OMTGT%3dCustObj3DetailForm%26OMTHD%3dCustomObject3DetailNav%26ocEdit%3dY%26OCTYPE%3d%26ocTitleField%3dName&OCNOEDITTYPE=Y&OCTYPE=
    But how do i also link this to an account and default the Subject?

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • Please can you help me to solve my problem  ( I have iphone is linked with Apple ID and I forgot that Apple ID and I can't remember it , I need thats Apple ID to activate my iphone ,,, what should I do ?

    please can you help me to solve my problem  ( I have iphone is linked with Apple ID and I forgot that Apple ID and I can't remember it , I need thats Apple ID to activate my iphone ,,, what should I do ?

    mohammed aljasim wrote:
    there are many people that error is happened with them and one of this people is me ,, Apple must be find the solution for this problem
    You are absolutely WRONG. Apple bears no responsibility in this at all. YOU purchased a STOLEN phone. You are guilty of receiving stolen property at best. Take it back to wherever you bought it and demand a refund. Failing that, turn it over to the police. You got ripped off. I'm sorry you wasted your money, but there is NOTHING Apple or anyone else can do for you. Only the rightful owner of the phone can unlock it.

  • Linked Smart Object:  Allowed File Type and Editor

    Please forgive my lack of knowledge.  I'm evaluating PS CC 2014, own PS 5.1 and am a hair shy of being a novice.  Presently I'm doing Photomerge Focus Stacking.  What I'm hoping is that DNG files can be Linked Smart Objects and that I can modify the merged photo by editing the DNG files in Adobe Camera Raw.  Is this possible?  The Adobe Help article has a rather cryptic "You can’t perform operations that alter pixel data", that leads me to believe no but, I don't understand that fully.
    Thanks.

    Currently you can not use any of the merge options: pano, hdr, or focus stacking with a smart object. So you would not be able to do that with dng files and retain the ability to edit them in Camera Raw. It would be nice though!

  • I dont remember the first apple id that link with my clash of clans apps. the problem now is i need to link my COC village and it keep saying "please log in with correct game center" is there anyway that i can retrieve my old apple id? please help me

    i dont remember the first apple id that link with my clash of clans apps. the problem now is i need to link my COC village and it keep saying "please log in with correct game center" is there anyway that i can retrieve my old apple id? please help me i dont want to lose my village, i have spent my money on that game to much. hmmm

    thanks mate, but the problem is im using different apple id now, and after about 1 year play coc and today i want to link the village , suddenly coc said that
    thats mean im playing this village with different apple id and it not saved. and the problem is i dont remember the first apple id and password that i use first time to download this game. hmmm it was so confusing, why coc and game center just make this thing saved with a new game center account.

  • Problem With Business Object and printing job

    Hello,
    We are encountering a problem with the application "Business Objects FINANCE", and we would need your help quickly.
    In the application , itu2019s impossible to print Consolidated Subsidiaries nor the Securities Held. If we try so, the application freezes and we can't do anything but killing the application via the task manager.
    Though, other states can be printed without problem.
    We tried on several different PCs, and the problem occured equally on each one.
    The version installed is 10.5, and we can do any tests that you think would be useful to diagnose problem.
    Our society is AUBAY SA, and our credential to enter in your support website are : S0005386617
    In attachment youu2019ll find a screenshot of the event viewer from the server where the application is install.
    Thanks in advance for your answer,
    best regards.

    check the export parameters of the event triggering workflow.
    If there is a problem, try instantiating the object in your wf based on the key.
    Also check if the wf is able to import the data.
    regards,
    Sandeep Josyula

  • Find table wich link business object and contact

    Hi experts,
    Wich TABLE or BAPI link the BUSINESS OBJECT With CONTACT?
    Thanks for help.

    Hello Nicolas,
    I assume you speak of contacts in the IS-U system. There the BCONT table links the business partner and the contact.
    Kind regards,
    Fritz

  • Cant download PDFs and 'report problem link wont send anything

    All links to PDFs on sites supposedly do a download, but then do not display anything. When I tried to use the Report a Problem link I filled in all the details and then pressed submit but it did nothing - could only go back

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox).
    Or you could see if the second half of Kappy's reply in this thread helps : https://discussions.apple.com/message/20357006#20357006

Maybe you are looking for

  • E-mu 1212m v2 and vista

    hi,i have purchased a 22m v2 one week ago but i have?vista x64 on my pc that required certified drivers to install it. i see that drivers for vista are "in development"...how i must wait for install it on my pc?exists a beta driver to try?thank youMe

  • Client_image problem in 10g

    Dear ALL I have oracle forms 10.1.2.0.2 and i configure webutil for this version i test the webutil and its working fine i can read text and save text and do every thing , except the client_image read file how i can solve this problem thanks in advan

  • Another vibration question

    Hello All, I'm new here on the forum but I'm using Labview for a several years now (mainly as a user, not as much as a programmer). Now I'm working on a multichannel vibration project and ran into some problems. The thing I want is a 3 or 5 channel (

  • VSTS Controller and Agent don't communicate

    We are doing an exercise of load testing a website using VSTS 2010 with multiple machines as clients. To do so, we have tried setting up controller and agent in 2 different machines, Machine1 (Controller) and Machine2 (Agent). When the test is initia

  • GUI freezes in 10.4.11

    Hi, I originally wrote about this problem in 10.4.10. I just experienced it again. I'm wondering whether other people are experiencing these symptoms: 1. Occurs upon waking from sleep 2. UI/Screen (including menu clock) do not update and are "frozen"