Status in incident is NULL when it is created from SC

HI All,
We are experiencing an issue with service catalog.
interface connector: Open a new incident
when we order an item from catalog, interaction is being created along with the related incident. But when i open the related incident, format still remains in IM.Open.incident where as display screen is chaging to apm.edit.problem. After debugging, i come to know that status is set to null instead of open for the related incident. This is working fine for normal interaction to incident relation. Issue lies only with service catalog items. please let us know from where status is being set to open in incidents.
also, recently we have installed src-1.40 in our server. we are facing issues with service portal as well, when we tried to submit a support request or service request we are receiving an error like "could not submit a request".
log entries are as follows:ERROR [http-bio-8080-exec-6] (Log4jTarget.java:45) - Message.General Exception when invoking service 'remoting-service': com.hp.siberia.exception.ServiceException: Could not submit a request
  incomingMessage: Flex Message (flex.messaging.messages.RemotingMessage)
Please help me to resolve these issues. Many thanks.....

Hi,
I have the same issue with SRC.140 and SRC 9.32 when requesting SVC items. The issue are probably inside SM.
error msg. Could not submit request
Have you solved yours??
BR/M

Similar Messages

  • Acrobat 8 Standard crashes when opening PDFs created from  Microsoft Project 2007

    Issue: Acrobat 8 Standard crashes when opening PDFs created from Microsoft Project 2007.
    OS: Win XP Pro SP3
    Error Message(s): None
    Details: This issue happens with multiple Microsoft Project files (including new files), multiple PDF creators (included Acrobat 8 Standard) and on multiple computers. We also tried opening the PDFs in Adobe Reader 8 instead of Acrobat Standard 8. There is no record in the event log on the computers of the application crashes.

    I may have a resolution now...
    I clicked Tools -> Options -> View and turned off Bars and shapes in Gantt views in 3-D" on the advice of someone on a Microsoft Forum. I made three PDFs from three Microsoft Project files (that were having trouble previously) and was not able to get these PDFs to crash when zooming or changing pages. So far so good!
    Regards,
    Josh Gold
    SERA Architects

  • Acrobat 9.5, file corruption when combining .pdfs created from Word or Excel (from Office 2010) into a larger .pdf document

    In Acrobat 9, when I combine .pdfs created from Word or Excel (from Office 2010) into a larger .pdf document, there is data corruption. Some of the text appears as blank boxes when the pages are inserted into the larger .pdf, the main document. I have so far solved this by "printing" the files to .pdf, and then inserting them into the larger .pdf main document, but this creates a fatter .pdf file that is much larger than would otherwise be the case. Are there any other solutions within Acrobat 9, please? If this bug has been solved in Acrobat X or XI, please advise. Thanks.

    As far as the images are concerned, that may be a result of your choice of job settings. You may want to use the Press or Print option if the image quality is important. I assume you are talking about bit images in this case.
    As to the hangup, have you checked to see if AcroTray is active on your system? It may not be running as needed. In the meantime, try checking print to file and then opening that file in Distiller to complete the conversion to PDF.
    Before you ever try a reinstall, you need to do a repair first to see if that resolves the problem. There are a lot of unknowns about your exact process for the printing and your job settings that may be part of the problem. The rest of your system setup is useful in some cases, but did not help me see your problem.

  • Adobe 8 crashes when closing doc created from PDDoc.OpenAVDoc

    I am having trouble closing Pdf objects using Acrobat Pro 8xx. The following VBA code has worked successfully with Acrobat 6 & 7, but not with 8. We are using current pc's with Windows XP (latest SP's) and we have just upgraded to Acrobat 8.1.2.
    In VBA I basically insert pages from any combination of PDF books into a new PDF book (using PDDoc.OpenAVDoc(temporary object)). Then I open the completed book for viewing (without first having saved the book). The book opens correctly, but the following error occurs when the document is closed by the user. Acrobat then crashes and needs to be restarted.
    The instruction at "0x03072b95" referenced memory at "0x00000008". The memory could not be "read". This doesn't happen with Acrobat 6 or 7.
    The problem is resolved when I save the book first and then open, but I dont want to do that because these books are temporary and a large amount of books are generated on a daily basis by many users and I dont want to have to clean them up.
    Also there are a couple of reasons why we insert pages from existing books into a temporary book, rather than just opening up the individual books:
    1. Each book is an individual part drawing. The temp book groups the individual part drawings to make a complete part assembly. Each book may have a different combination of parts inserted into it.
    2. Each book (part) is published from a CAD file and sometimes revisions need to be made to an existing part. If the part book was open for viewing when the revised part was published, then the PDF will not be able to overwritten because it is locked for viewing.
    The following is a watered down version of the VBA code that I use. Any suggestions would be appreciated.
    Option Explicit
    Public Sub CreateTempBook()
    Dim oPdfApp As Object
    Dim oPdfPartPdDoc As Object
    Dim oPdfTempPdBk As Object
    Dim sPdfDocPath As String
    Dim iResult As Integer
    sPdfDocPath = "C:\TestPart.pdf"
    Set oPdfApp = CreateObject("AcroExch.App")
    Set oPdfTempPdBk = CreateObject("AcroExch.PDDoc")
    Set oPdfPartPdDoc = CreateObject("AcroExch.PDDoc")
    iResult = oPdfTempPdBk.Create 'Create blank temp book to receive part PDF
    iResult = oPdfPartPdDoc.Open(sPdfDocPath)
    iResult = oPdfTempPdBk.InsertPages(-1, oPdfPartPdDoc, 0, 1, 0) ' Insert part page(s) into Temp book
    oPdfPartPdDoc.Close 'Close Pdf
    If iResult = 0 Then
    oPdfTempPdBk.Close 'Close book as no pages were inserted
    Else
    oPdfTempPdBk.SetPageMode 2 'PDUseThumbs - show Pdf with thumbnail (page) tab
    oPdfTempPdBk.OpenAVDoc ("TempDocName") 'Open the object (to make visible)
    oPdfTempPdBk.ClearFlags (-1) 'Clear flags so no prompt to save shown on close
    oPdfApp.Maximize 1 'Maximize Acrobat
    End If
    Set oPdfApp = Nothing
    Set oPdfPartPdDoc = Nothing
    Set oPdfTempPdBk = Nothing
    End Sub
    Note this message has been relocated from the Acrobat Windows forum.

    PDL,
    Thanks for advice on clearing the save prompt. I now understand the ClearFlags (-1) may not have bene used correctly, but note it did not cause Adobe 6 or 7 to crash.
    Ultimately I am not worried about the user being prompted to save the new document. They can always hit cancel. Removing the save prompt is just tidier.
    I have tried your suggestion, but when I close the oPdfTempPdBk document down in Acrobat I get asked to save the document (the save prompt is shown) and regardless of which selection I make Adobe still crashes. Updated code:
    If iResult = 0 Then
    oPdfTempPdBk.Close 'Close book as no pages were inserted
    Else
    oPdfTempPdBk.SetPageMode 2 'PDUseThumbs - show Pdf with thumbnail (page) tab
    oPdfTempPdBk.OpenAVDoc ("TempDocName") 'Open the object (to make visible)
    Dim oPdfJSObj As Object
    Set oPdfJSObj = oPdfTempPdBk.GetJSObject
    oPdfJSObj.Dirty = False
    oPdfApp.Maximize 1 'Maximize Acrobat
    End If
    I have also removed all reference to making the document clean and setting the Acrobat view, but Acrobat still crashes. Revised code:
    If iResult = 0 Then
    oPdfTempPdBk.Close 'Close book as no pages were inserted
    Else
    oPdfTempPdBk.OpenAVDoc ("TempDocName") 'Open the object (to make visible)
    oPdfApp.Maximize 1 'Maximize Acrobat
    End If
    Any further suggestions would be appreciated.
    Thanks Tony

  • LVOOP Parent private data returned when child instance created from constant

    I have created one Parent class, and one Child class.  For each of these classes, I have created a member VI that is a constructor, whose purpose will be to initialize some constants for each class, and return the class instance.  I also have a member accessor VI for each class that returns the private data of the class (in this case a single string for each class).
    The Parent class's private data "String" is set to"Parent text" as the default value.
    The Child class's private data "Child String" is set to"Child Text" as the default value.
    The Parent class constructor works just fine.  For testing purposes, I return the text from directly unbundling in the constructor VI, and as returned from the accessor VI. The Parent constructor starts from a class constant.
    However, in the case of the Child class constructor, if I start from a class constant, directly unbundling the private data (using an Unbundle By Name function, and choosing "Child String" as the element), I get the Parent's private data!
    If I use the Child class's member VI to retrieve the text, I get the Child's private data.
    If I change the constructor to start from a class Control instead of a class Constant, I get the Child's private data.
    This only occurs  before the Child class has existed as a
    Control/Indicator. i.e. If I unbundle the private data after the class 
    is returned by any member VI, I get the correct Child private data.  So obviously something changes once the class "data" has been a control at some point.
    I am using Labview 8.6.1, Windows XP
    I have attached a small project that illustrates the problem I am encountering, without actually doing any initialization, just reading.
    Is this the intended behaviour?  Why does it matter if I start with a class constant instead of a class control?  When you drag from the Project window to the Block diagram, you always get a constant.
    Solved!
    Go to Solution.
    Attachments:
    ParentChildClass.zip ‏54 KB

    Although I was able to replicate your issue in LabVIEW 8.6.1, it appeared to run correctly in 2009.  I could not find a CAR ID but at this point can only assume that the behavior was not intended but is fixed in 2009.
    Let me know if you need me to find any further details.
    Alex Person
    NI-RIO Product Support Engineer
    National Instruments

  • Artifacts when printing .pdf created from publisher

    I have some documents in microsoft Publisher 2007, i need them to be converted to pdf to send to people and for them to be able to print them. but when i convert them to pdf i loose a lot of quality all the sharp edges become blockey and fuzzy and then when i go to print one of these documents i get artifacts around the graphics and the back ground on some pictures that should be coming up white comes out a light blue.
    i have set the conversion to the highest level quality and this helps the fuzzyness alittle but i still get the artifacts
    any one know why this is happening?

    This is what happened to me:
    We are doing a job for someone that uses Publisher.  They gave us some PDF files saved out of Publisher with a Microsoft addin that lets you publish as PDF and has a preset for a 'commercial press'.  I had a look at the files, checked all elements were CMYK, checked resolution of images, checked that text was black only, printed off a digital proof, and before we printed the job did a high end ripped proof.  All looked fine.
    We printed the job and all looked OK, some of the blacks weren't that great though, but still acceptable.
    The next day the ink had dried and all areas in images that were supposed to be black were an insipid grey colour, compared to the bits around them that were for example 100C 100M.  What had happened is that Publisher had performed some extreme under-colour removal, so that anything black was 100K only and appeared weak, but the gradients leading up to it were multi colour and so appeared much stronger.  Of course now when we look at a separation proof we can see what was happening, but unless you check that, you just have to 'know' that you can't use that method of printing from Publisher.  Proofs and Press-pass looks fine, but once dry....  It's an expensive experience for us, as we're reprinting the job for no extra, because it hasn't come out like the proofs we supplied.

  • Charge Account Is Not Copied From PR to PO When Created From PR to RFQ to Quotation to PO

    Hi,
    We are using Autocreate functionality (Forms) for creating PO.
    Now when we create PO directly from PR, distribution account gets copied correctly from PR, but when when we create PR>>RFQ>>Quotation>>PO , it takes from Inventory org material account.
    I want to use the same account from PR to be copied into PO.
    Please Advise,
    Thanks Nikhil

    You may find the following links to be helpful
    Incorrect PO Accrual Account when PO is created from a Purchase Requisition (Doc ID 1136853.1)
    How to Set Up and Use Category-based Account Default in Purchasing (Doc ID 293046.1)
    How To Diagnose Issues In Autocreate (CREATEPO) Workflow (Doc ID 559009.1)

  • OWB 10gR2 map returning status = Complete and Result = Null in Process Flow

    Hi,
    I have an OWB process flow which invokes an OWB map. There are 2 outgoing transitions attached to the OWB map. 1st transition is a conditinal one (on SUCCESS) and the 2nd one is unconditional transition.
    I am monitoring the status of process flow execution in Oracle Workflow monitor. After the process flow is initiated, sometimes the OWB map within shows status = complete and result = OK in workflow monitor (in tab - status). But sometimes it shows status = Complete and Result = Null. In this situation the execution is following the unconditional transition path.
    Can anyone tell me what causes the OWB map to return a Result = NULL? Also sometimes I am getting the map returning a Result = Force (with the same status = Complete).
    The configuration that I am working with is as below ---
    OWB client version : 10.2.0.1.31
    OWB repository version : 10.2.0.1.0
    Oracle Workflow Version : 2.6.4.0.0
    Database version : 10g Enterprise edition release 10.2.0.1.0
    Regards,
    Swagata

    Hi Manohar,
    1. You need to install Oracle HTTP server in a separate Oracle home.
    2.Look for the dads.conf file in the installation. Edit the file, copy the sample code and paste it below and edit the pasted part as under ----
    <Location /pls/<SID>>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseConnectString <server name>:<port>:<SID >
    PlsqlAuthenticationMode Basic
    PlsqlDefaultPage wfa_html.home
    PlsqlNLSLanguage "AMERICAN_AMERICA.WE8ISO8859P1"
    </Location>
    3. STOP and START OPMN (Oracle Process Manager & Notification Server)
    4. Use the URL in your internet browser like --- <HTTP server URL>/pls/<SID>/wfa_html.home
    5. When prompted for user id and password, give the schema user id and password where the workflow engine is installed.
    Hope this helps,
    Swagata

  • Need to change status of incident after creating CR

    Hi Experts ,
    I am creating a CR from my incident as folloow up document  from CRMD_ORDER tcode. That is working fine .
    After creating CR i need to change the status of incindent to 'CR created" .
    Means at the time of creating CR i need to change the status of incident .
    1 .Please suggest me where to add code related to update incdent ?
    2 . Can i use ORDER_SAVE badi or any other BADI existed for that ?
    Thanks in advance ,
    Vijay vorsu

    Hi Rajiv ,
    Thnx for quick reply. I am new to CRM .I understood whats to be done.
    I  am following these steps :
    In my CR action profile i am creating a new action called Z_status_change.
    In process type- "permitted process type of action "  i am selecting as ' METHOD CALL" .
    Next i am clicking on "SET PROCESS' .
    Here i am getting problem . When i click on help for on METHOD system is showing existing methods .Here Which method i need to select to change the status .so i thought to create a custom method .
    So i created a BADI Z_STATUS_CHANGE and in attributes of BADI i have given filter type as PPFDFLTVAL .
    I created implementation for this BADI  Z_STATUS_CHANGE_IMP and in attributes in method i have given Z_STATUS_CHANGE .
    But if i search in method in process type of action defination i could not see the method.
    Is the process i am following is right or wrong ?
    If i miss any thing to do pl guide me .
    Thanks in advance ,
    Vijay Vorsu

  • OWB 10gR2 Process Flow returning status = Complete and Result = Null

    Hi,
    I have a process flows i ran lot of times with success (it shows status = complete and result = OK). It invokes a lot of mappings and other flows
    Sometimes one of invoked mapping or flows shows status = complete and result = Null and main process too.
    The main process i invoked by a PLSQL store procedure using wb_rt_api_exec package. When status = Null the store procedure hangs and I have to kill it.
    When it happens, owb service restart (new record in WB_RT_SERVICE_JOB_LOGS).
    Can anyone help me?
    The configuration that I am working with is as below ---
    OWB client version : 10.2.0.1.31
    OWB repository version : 10.2.0.1.31
    Oracle Workflow Version : 2.6.4.0.0
    Database version : 10g Enterprise edition release 10.2.0.3.0

    Sometimes transitions in process flows get scrambled and you have to fix them by hand.....this happens and I dont know why.
    Basically what happens is: every operator in process flow has three outgoing transitions (in general) marked as 0, 1 and 2, when you take a look at details property of your operator then in the outgoing transitions tab you should have ORDER collumn 0, 1, 2 for warning, error and success.
    If this is not the case (0,1,2) process will not know what to return as value, and what is more bizzare this works until it does not :)
    I dont know if this is your case but it's worth checking.

  • [svn:fx-trunk] 9407: Reordering the if-statement in isMeasureFixed() exposed that hostFormat can be null when measure() is called if styles changed and measure is done before the next commitProperties .

    Revision: 9407
    Author:   [email protected]
    Date:     2009-08-19 15:11:34 -0700 (Wed, 19 Aug 2009)
    Log Message:
    Reordering the if-statement in isMeasureFixed() exposed that hostFormat can be null when measure() is called if styles changed and measure is done before the next commitProperties.  This states test exposed this.
    We should rethink if we want to clear hostFormat rather than have a hostFormatChanged flag.  If there is no hostFormat at measure then it has to be fixed because there is no line break format to check for auto-size.
    QE notes:
    Doc notes:
    Bugs: SDK-22779
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22779
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/RichEditableText.as

    Oh my god, it is too long! You definitely check out types, casting and especially ODP.Net (it does everything for you)... etc. They can help you to simplify your code. I do not have enough time to copy paste it to Studio and understand and solve your issue, so I got title of your message as your main question.
    In Oracle, you can create an autonumber field by using sequences object. This is really useful when you need to create a unique number to act as a primary key.
    Basically you can create a sequence simply typing;
    CREATE SEQUENCE MY_SEQUENCE;
    now you have a sequence called "MY_SEQUENCE"... Then, I advice you select a number from sequence;
    select MY_SEQUENCE.nextval from dual;
    I said I advice actually kinda must, although it called sequence, I cannot be sequential. Do not even try to predict the value. You can be sure that it is unique number so you can use it.
    Then insert you record and use that number part of your primary key. I think that's it. Have fun.

  • I am getting "Fatal Error: null" when connection to P6v8.3.2 DB using P6 Integration API

    I am getting "Fatal Error: null" when connection to P6v8.3.2 DB using P6 Integration API.
    I can connect via P6 client using admin account but cannot connect using P6 API. If I provide invalid credentials it says that the credentials are incorrect. When correct credentials are provided, it comes up with the above error.
    Stacktrace is atteched.
    Please assist.
    Thanks
    Sunil

    Hi Sunil,
    In the absence of sample code it is difficult to identify the cause. If that is not possible, you can try logging SR with Oracle support.
    Regards,
    Sachin Gupta

  • Shopping Cart needs to be Held Status when created from Upload Program

    Hi All,
    Shopping Cart is created from Custom Upload Program. In Upload Program, we used BBP_PD_SC_CREATE, BBP_PD_SC_UPDATE, BBP_PD_SC_SAVE and BBP_PD_SC_COMMIT.
    Once the Shopping Cart is created from this upload program, I want ot put Shopping Cart as Helad Status.
    I exported the parameter I_PARK as 'X' in BBP_PD_SC_CREATE and BBP_PD_SC_UPDATE. But it is not working i.e., the SRM system is not keeping the Shopping Cart as Held Status.
    Scenario:
    I am uploading the Shopping Cart Items (Shopping Cart creation) on behalf of my manager. My manager has to approve Shopping Cart.
    If shopping cart is created maually and Shopping cart value is within the spending limit, work flow is not triggered approval proceess. If I am creating shopping cart behalf of some one, I am adding the approver manually while creating.
    When ever we create shopping cart through custom upload program, the shopping cart needs to be approved by the Requestor (my manager, to cross check shopping cart items). So I want to park the Shopping Cart and I want to add Approver as my manager.
    Please suggest me or guide me to get the solution for my issue.
    Thanks,
    Sudarsan
    Edited by: KOYYA SUDARSANA NAIDU on Nov 14, 2008 9:12 PM

    Completed

  • Flex 4.5.1 Setting VideoPlayer source to null when it is already null results in a runtime error

    I moved my project from Flex 4.1 to Flex 4.5.1 and I noticed that setting VideoPlayer source to null when it is already null results in a runtime error. The same thing applies to the case where you specified as a source url some invalid location (no video found there) and then you try to set the source to null.
    Here is the error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at spark.components::VideoDisplay/cleanUpSource()[E:\dev\4.5.1\frameworks\projects\spark\src \spark\components\VideoDisplay.as:1956]
        at spark.components::VideoDisplay/setUpSource()[E:\dev\4.5.1\frameworks\projects\spark\src\s park\components\VideoDisplay.as:1609]
        at spark.components::VideoDisplay/set source()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\VideoDisplay.as:1073 ]
        at spark.components::VideoPlayer/set source()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\VideoPlayer.as:1362]
    The problem is that in the VideoDisplay cleanUpSource function, in some of the cases there properties on the videoObject are modified like this:
    videoPlayer.displayObject.visible = true;
    without checking if displayObject is null which is done in the rest of the videoDisplay functions.
    So when it reaches this line: videoPlayer.displayObject.visible = true; it results in a runtime error.
    Is this supposed to work this way now ? I didn't have this problem on Flex 4.1. Not sure if it is a bug, but if it is please report it, I don't have the time right now to be checking in on this.
    I fixed it by checking if the source is set, of course... (that won't help me in cases where I provide a wrong or missing video url by mistake.. so it is important to be fixed!)
    F

    Hi
    I found the same error displaying video on flex !
    in my simple code, i have :
    videoInfoDataVideo.source = videoName;
    the full error is :
    TypeError: Error #1009: Il est impossible d'accéder à la propriété ou à la méthode d'une référence d'objet nul.
              at spark.components::VideoDisplay/cleanUpSource()[E:\dev\4.5.1\frameworks\projects\spark\src \spark\components\VideoDisplay.as:1956]
              at spark.components::VideoDisplay/setUpSource()[E:\dev\4.5.1\frameworks\projects\spark\src\s park\components\VideoDisplay.as:1609]
              at spark.components::VideoDisplay/set source()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\VideoDisplay.as:1073 ]
              at spark.components::VideoPlayer/set source()[E:\dev\4.5.1\frameworks\projects\spark\src\spark\components\VideoPlayer.as:1362]
              at Function/item/private:updateVideo/anonymous/resultGetVideo()[C:\Users\randev\Adobe Flash Builder 4.5\visurbaCMS\src\item.mxml:800]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at HTTPOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()[E:\dev\4.5.1\frameworks\projects\rpc\src\mx\rpc\http\HTTPService.as:993]
              at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[E:\dev\4.5.1\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:318]
              at mx.rpc::Responder/result()[E:\dev\4.5.1\frameworks\projects\rpc\src\mx\rpc\Responder.as:5 6]
              at mx.rpc::AsyncRequest/acknowledge()[E:\dev\4.5.1\frameworks\projects\rpc\src\mx\rpc\AsyncR equest.as:84]
              at DirectHTTPMessageResponder/completeHandler()[E:\dev\4.5.1\frameworks\projects\rpc\src\mx\ messaging\channels\DirectHTTPChannel.as:451]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/onComplete()
    did you solve the problem or someone else?
    Thanks

  • CAD VIEW Error : "Status can only be set when all originals are stored"

    Hi Friends,
    I have Proe to SAP integrated and when I open Proe model in CAD VIEW and try to create a document it shows an error "Status can only be set when all originals are stored" Also I see that the model is not having Status in CAD VIEW.
    When I double click on that object in CAD VIEW, it takes me to DIR creation screen with Document Type DES. Can someone help me in this  ?
    Rgds,
    SM

    Hello Sudharshan,
    "Status can only be set when all originals are stored" Also I see that the model is not having Status in CAD VIEW.
    This is error is indicating that your original CAD model is not checked in and as per your configuration you require the original to be checked in before moving to next status.
    Please:
    1. Check your document status network.
    2. ensure that you have proper set up for the fields "check in" in the current status. This indicator should be set. This ensures that the document is automatically checked in before moving to the next status. This will solve your problem.
    When I double click on that object in CAD VIEW, it takes me to DIR creation screen with Document Type DES. Can someone help me in this ?
    Because of the above set up missing the original DIR is missing the original document and hence the system assumes you are creating a new DIR when you click on the object in CAD view.
    regards,
    N K

Maybe you are looking for

  • I Need an In house Media Library, either as part of the Creative Cloud or stand alone - Do you??

    I'll explain why you might, as a small video production/graphics company, I mainly do repeat video & graphics work for the same 40+ businesses, year in and year out. When I'm out and about if I see anything that might be usefull as stock photo/video

  • How is the best way to remove something from a photo?

    How is the best way to remove something from a photo?

  • Invalid issuer or signature.

    I approached an app, and got this error when getting current sharepoint user. I'm not sure why this happens and it works normally in another sharepoint sites. Any help would be greate. Invalid issuer or signature. Description: An unhandled exception

  • Ipad not found in Finder on iMac

    I recently purchased a Nikon camera and installed the software that came with it.  I mistakenly made the application the default for photos.  When I connect my iPad to my iMac, that software automatically opened up.  I was unable to figure out how to

  • Adapter Definition

    Whats the Simple Definition of an Adapter? (When I say an adapter is a connector which is used to Translate from one format to the XI readable format or Vice Versa, then I am faced with another question then why we need a message Mapping?) Thanks.