Problem in triggering NWDS7.0

Hi,
I have installed NWDS7.0 in my system. But when i try  to start it, its giving me an error "Problems during start up. Check the ".log" file in the ".metadata" directory in your workspace.
JDK version is 1.4.2_12
Following are the contents in the log file.........................
C:\Program files\sap\ide\ide70\eclipse\plugins\org.eclipse.swt.win32_2.1.2
os\win32\x86\swt-win32-2135.dll already loaded in another class loader
Regards,
Athulya

Hai,
Check the below link.....
Re: I get an error while opening the NWDS
Regards,
Yoganand.V

Similar Messages

  • Problem in Triggering the Mail to SAP Inbox

    Dear Experts,
                     I have a problem for triggering the Mail option to SAP Inbox.
    We created a Job assigning the program RSEIDOCA,RSWUWFML2 by creating a variant for those programs. We are scheduling the job,  It is showing as
    24.11.2010 12:43:46 Job started                                                                     00           516          S
    24.11.2010 12:43:46 Step 001 started (program RSEIDOCA, variant ZRSEIDOCA, user ID__ )        00           550          S
    24.11.2010 12:43:48 Error situation found by evaluation                                             E0           596          S
    24.11.2010 12:43:48 Step 002 started (program RSWUWFML2, variant ZRSWUWFML2, user ID__)      00           550          S
    24.11.2010 12:43:49 Job finished                                                                    00           517          S
    But while checking in SOST, we are unable to see those mails. eventhough the user is unable to get those mail in SAP INBOX.
    I think, is there any authorization problem while triggering the mail for that particular user id.. Please tell me the solution, this is very high requirement for me.
    Thanks in Advance.
    Regards,
    Srini

    Hi Chandra,
              Thanks for your reply. Actually i am not workflow consultant, thats why i asking this question. Where to assign the Receipient Type and Recipient Notification.
    you give Recipient Type as position and Recipient of Notification must be position of the reciepient,
    Regards,
    Srini

  • Problem in triggering the correct workflow on  AdobeForm submission for PCR

    Hi All,
    I am facing a problem involving triggering of workflows through Adobe form submission. I have created a scenario for "Employee seperation" in QISRSCENARIO transaction and assigned it to an approval workflow. I have also activated and assigned the BUS7051-Created event in the workflow Basic Data. My workflow also triggers perfectly when i submit the adobe form. Everything is perfect till here.
    Now i have to create another scenario for "Request for Transfer" Now for this i had to create a seperate workflow. My problem is since both these workflows are assigned to the same event whenever i submit the "Employee seperation" form both the workflows get triggered. <b>Is there a setting where i can configure the corresponding workflow to be triggered for the respective scenario's alone?</b> How do we handle this situation?

    Hi Jocelyn/Raja,
    I am trying to use SWB_COND for differentiating between the different workflows. I have created a virtual attribute W_SCENARIO_KEY for this. I tried populating this scenario key by using the following staement,
    <b>
    CALL FUNCTION 'ISR_SPECIAL_DATA_GET'                       
      EXPORTING                                                
        notification_no                     =  object-key-number
    IMPORTING                                                 
        SCENARIO                            = w_scenario_key.  
      SWC_SET_ELEMENT CONTAINER 'W_SCENARIO_KEY' W_SCENARIO_KEY.</b>
    When i try to include W_SCENARIO_KEY as a start condition the workflow shows up an express message and fails to trigger. In ST22 i can see that there is an exception "INVALID_NOTIF_NUMBER" raised.
    But if i don't set this as a start condition all the workflows activated to BUS7051-CREATED are triggered and in the WF logs i can see the correct value of W_SCENARIO_KEY for the respective notification number.
    I am not sure why this happens when i set it as a start condition alone.
    I instead used a select statement as shown below,
    <b>select * from viqmel into table itab_VIQMEL          
                  where qmnum = object-key-number.       
    loop at itab_viqmel where qmnum = object-key-number. 
    w_scenario_key = itab_viqmel-auswirk.                
    endloop.</b>
    After inserting this statement it works fine without any issues. Any idea on why ISR_SPECIAL_DATA_GET cant be used in the virtual attribute implementation?
    The following is the dump i get if i use ISR_SPECIAL_DATA_GET,
    Information on where terminated                                                                 
        The termination occurred in the ABAP program "SAPLQISR9" in                                 
         "ISR_SPECIAL_DATA_GET".                                                                    
        The main program was "RSWDSTRT ".                                                                               
    The termination occurred in line 39 of the source code of the (Include)                     
         program "LQISR9U01"                                                                        
        of the source code of program "LQISR9U01" (when calling the editor 390).                                                                               
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    9 *"  EXCEPTIONS                                                                               
    10 *"      NO_INTERNAL_SERVICE_REQUEST                                                       
       11 *"      INVALID_NOTIF_NUMBER                                                              
       12 *"      INT_SERVICE_REQUEST_NOT_FOUND                                                     
       13 *"----
       14                                                                               
    15 * local data                                                                               
    16   DATA: lt_dummy TYPE qisrsgeneral_param.                                                 
       17                                                                               
    18   DATA: lr_isr_document TYPE REF TO cl_isr_xml_document.                                  
       19                                                                               
    20   DATA: ls_notif TYPE qmel.                                                               
       21                                                                               
    22 * MAIN                                                                               
    23 * try buffer first                                                                      
       24   CALL FUNCTION 'ISR_SPECIAL_DATA_BUFFER_GET'                                           
       25     IMPORTING                                                                               
    26       ET_SPECIAL_DATA       = special_data                                              
       27       ED_SCENARIO           = scenario                                                  
       28     EXCEPTIONS                                                                          
       29       BUFFER_EMPTY          = 1.                                                        
       30                                                                               
    31   IF sy-subrc eq 0.                                                                     
       32     EXIT.                                                                               
    33   ENDIF.                                                                               
    34                                                                               
    <b>   35 * check notification number                                                             
       36   SELECT SINGLE * FROM qmel INTO  ls_notif                                              
       37                             WHERE qmnum = notification_no.                              
       38   IF sy-subrc NE 0.                                                                     
    >>>>>     RAISE invalid_notif_number.                                                         
       40   ELSEIF ls_notif-auswirk IS INITIAL.                                                   
       41     RAISE no_internal_service_request.                                                  
       42   ENDIF.     </b>                                                                               
    43                                                                               
    44 * set scenario                                                                          
       45   scenario = ls_notif-auswirk.                                                          
       46                                                                               
    47 * read ISR XML document                                                                 
       48   CALL METHOD cl_isr_xml_document=>read_for_display                                     
       49     EXPORTING  id_notif_no         = notification_no                                    
       50     IMPORTING  er_isr_xml_document = lr_isr_document                                    
       51     EXCEPTIONS bds_error = 1.                                                           
       52                                                                               
    53   IF sy-subrc NE 0.                                                                     
    54     RAISE int_service_request_not_found.           
    55   ENDIF.                                           
    56                                                    
    57 * read data from XML document                      
    58   CALL METHOD lr_isr_document->get_data_from_xml

  • Logical problem in triggers

    hi all
    i have a table like this
    EMPNO NOT NULL NUMBER(4)
    HIREDATE DATE
    OFF_DAY NUMBER(3)
    now what i want is i want to restrict the user with out entering the data in off_day column continuesly for three days
    ex
    10 22-09-2004 8
    10 23-09-2004 8
    10 24-09-2004 8
    so in this case i don't want to enter in 3rd row of 24th day for inserting or updating the data.
    i am trying it using triggers but i am fail please tell me how to solve this problem
    Thanks & Regards
    -Chandu
    [email protected]

    You could use:
    WHEN-VALIDATE-ITEM trigger to reject changes made
    PRE-TEXT-ITEM trigger to hinder the user to enter the field if date isn't in range
    Regards,
    Martin Malmström

  • Problem with triggering process chain

    Hi
    We have a remote process chain that calls a process chain in another system.The process chain in the other system is not getting triggered with the remote chain.
    We have 3 such remote chains and we are facing such a problem with only one of them.
    The process chain in the other system has a start variant which gets triggered( i suppose) and gives an instance id...the next step in the process chain is to load data into a ODS.Now this step remains yellow forever.When i manually try to schedule this step it gives me records and the request in the monitor screen turns green.But the process chain step continues to remain yellow.
    What can be a way out for triggering the process chain or where could the problem be?
    Please help
    Thanks,
    Suchi

    Hi Suchitra,
    Even though ur process seems to be in yellow your data loading may be completed and the  reason for it may be the delay in activation of ODs by ur PC.
    For your information please go through the below infm provided in SAp Library
    Note when loading into an ODS object and for the subsequent, event-controlled update:
    If you switched on the automatic activation in the ODS maintenance or administration, the monitor status for the request remains yellow after the load was successfully completed. Nevertheless, the subsequent processing for the InfoPackage is started, because the loading process is successfully completed.
    [http://help.sap.com/saphelp_nw04/helpdata/en/65/163d3873130057e10000009b38f842/content.htm]
    I hope ur doubt is clear.
    Regards,
    Rajkandula

  • Problem regarding triggers

    hi
    I have implemeted before row and after statement triggers on a table T1. My requirement is i need to get some values from another tables, say T2 and T3 , and perform some calculation and update one of the columns in T1 with that calculated value.
    Initially i have written that logic in after statement . but i have used update on the same table in the after statement trigger. when i executed that it went infinite loop because of the update on same table.
    update T1
    set c1 = calc_value
    where seq = p_rec.new.seq;
    [\pre]
    So i have moved that before row level trigger as shown below:
    [pre]
    p_rec.new.c1 := calc_value;
    [\pre]
    now i tried to entering the values for tables T1,T2 and T3 through the oracle form and pressed save button. but it was raising an error that the values for the T@ and T3 are not available to calc the value .
    Is there a way that i can do the update on the same table without any problem.
    Please suggest.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    It would have been easy for me to do all the logic in forms but my manager wants all the logic to be put into database triggers. In the trigger, i am selecting the values of tables T2 and T3 , then performing the calculation and then assigning it to the column in the before row trigger. I have used the POST command in the oracle form to make sure that the values are posted to the database . But also i could see the trigger raise error message in the form.

  • Event Problem constant triggering

    I am having problems using an event structure.  I am not quite sure how to explain the undesired behavior I am seeing.
    I have an event that when triggered takes a few seconds to complete.  I don't want to lock the panel because I would like to still receive input during this time and have the events queue.  The problem I am seeing, however, is that if the event is queued it somehow keeps the trigger enabled. 
    For example, if I trigger the event and while the task is running the event is triggered again; like it should, it will run the task again after the completion of the first.  The problem that is arising is that it will the keep triggering the same task over and over again (executing over and over again) even without any addition triggers.  This will continue until a different task is triggered in the same event structure.
    How can I stop this continuous triggering of the event?  And why is it occuring in the first place?
    LV 8.0 through 2013, Win 7
    CLA

    The Q wrote:
    The problem that is arising is that it will the keep triggering the same task over and over again (executing over and over again) even without any addition triggers.  This will continue until a different task is triggered in the same event structure.
    I still would like to see the code that does this. It should not happen, so maybe you discovered a bug that NI should be made aware of.
    Remember that value changes of "analog style" controls such as slides will typically trigger quite a few indentical events, not just one.
    Maybe that's what you are seeing?
    One workaround for this particular problem is described HERE. See if applies to your situation.
    LabVIEW Champion . Do more with less code and in less time .

  • Problem in triggering the code for CO02 User Exit

    Hi,
    I am using the code for the Tcode CO02 (User Exit) and i am facing a problem that when i am using the code as a normal program it is executing fine and displaying the pop up window and showing the data in it.
    But when i am using that code in the USER EXIT code it is not trigerring that pop up window.
    I am using the enhancement:-
    *PPCO0007 * - Exit when saving production order
    And the include in which i am writing the code is :-
    INCLUDE ZXCO1U06
    plzz provide me guidelines for solving this problem.

    hi ,
    i am using the following: -
    Enhancement No.  ->  PPCO0007 (Exit when saving production order)
    When i click on the enhancement the following is displayed:-
    Function exit  ->   *EXIT_SAPLCOZV_001 *
    When i double click the function exit  the code i had written in the following include:-
    INCLUDE ZXCO1U06
    plzz tell me whether i am doing it right or worng?

  • Problem is triggering ABAP proxy

    Hi All,
            My scenario is to create a sales order in R/3 system using ABAP proxy and to get the Sales Order number as the response from the synchornous BAPI.
    While triggering the proxy, I'm gettin the error as follows,
    Please help me out in clearing this issue.
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIProxy</SAP:Category>
      <SAP:Code area<b>="ABAP">SERIALIZE_APPLICATION_DATA</b></SAP:Code>
      <SAP:P1>Response Message</SAP:P1>
      <SAP:P2>CX_XSLT_RUNTIME_ERROR</SAP:P2>
      <SAP:P3>: 0000000000</SAP:P3>
      <SAP:P4>Error Text: No valid XSLT program supplied Kernel ErrorId: CX_XSLT_RUNTIME_ERROR</SAP:P4>
      <SAP:AdditionalText>Error when handling Response Message; XSLT error: CX_XSLT_RUNTIME_ERROR: XSLT program and source line: : 0000000000; Error Text: No valid XSLT program supplied Kernel ErrorId: CX_XSLT_RUNTIME_ERROR</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Regards,
    Dhana

    Hi
    Go thru SAP Note:<b>546048</b>
    It says that application data is incorrect tht's why can't post the message.
    So plz chk ur ABAP Server Proxy code.
    Regards
    Arpit Seth

  • Problem in triggering abap program in process chain

    i m running a infopackage in a process chain .
    this infopackage creates the request in the DSO .
    after infopackage i m including the abap program to delete the same request in the process chain .
    but the abap program is not getting triggered .i have maintained the variant correctly for the program in the process chain .
    what can be done so that the program gets triggered .

    Hi,
    You can trigger you ABASP program from
    1. SM64  : copy the ABAP program's Afer event and parambeter and give it there and execute
    2.or go to
    SE37 >>Program : BP_EVENT_RAISE  >> say test execute
    and give the same after event and parameter ..and execute
    this might trigger your program
    Hope this helps you,
    Regrads,
    shikha

  • Problem while triggering IDoc

    hi,
    When i am triggering idoc from R/3 , it is saying idoc transferred to port,
    but when i am checking the idoc in XI system idx5 , i am not able to view the idocs,
    What could be the reason for this?
    Also when i am creating distribution model in BD64 and then saying distribute , it is giving this message:
    <b><b>Model view BANK_CREAT has not been updated
    Reason: Maintenance systems for model view BANK_CREAT are not identical
    ..... Maintenance system in sending system DMYCLNT702
    ..... Maintenance system in receiving system DMYCLNT100</b></b>
    Note:DMYCLNT702 - Testing client
            DMYCLNT100 - Development
    Urgent help needed,
    Thanks,
    Loveena

    Hi,
    Chk the following details which will be helpful:
    A Summary of the Steps to be carried out to enable a SAP R/3 System send Idocs to SAP Exchange Infrastructure.
    First - Maintain the Sender R/3 System:
    SM59 : Create a RFC destination to XI
    WE21 : Create a TRFC Port ->Specify the RFC Destination Created
    BD54 : Create a Logical System for the Idoc Receiver
    WE20 : Create Partner Profile ->Maintain Outbound and the Inbound Parameters
    Second - Log on to XI System:
    SM59 : RFC Destination for Sender System
    IDX1 : Create the port to get Idoc Metadata from Sender System ( The Port Name must match the port name in the idoc header - Usually in format SAP<System ID>. eg. SAPID1 [Optional Step. Not mandatory]
    IDX2 : Maintain the Idoc Metadata. This is needed only by XI, and not by other SAP systems. IDX2 is needed because XI needs to construct IDoc-XML from the IDoc. No other SAP system needs to do that.
    Also chk the following link providing details of pushing idocs:
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi

  • Problem about Triggering BPM and Process monitor

    Hi all,
    I am new on the BPM domain. Now i got some problem working on it.
    First, i want to execute a FM or Program in ECC, and then trigger the process of BPM, how to do this?
    or maybe i can say like this, i want to start a BPM from ECC screen, how could i do?
    Second, the requester could find the completed tasks in UWL with some simple text only,
    if he wants to see the whole process status, is that possible?
    Regards,
    Fisher

    Hi Harsha,
    Thx for your reply.
    For First, is the URL which in Process Repository, after clicking "start process", something like "http://www.example.org/bpem/..... "?
    but seems i cannot open the URL for detail XML data. Could you give some more details?
    For Second, go to UWL page, in Tasks tab, choose "completed tasks" in first dropdown box, you can get the task list then.
    And it returns only "priority, completion date, status".
    If the task is in progress, yes, process visualization will picture the state of the process.
    But my customers (requesters), not admin, want to see the diagram after they submit, with status better. Any suggestion?
    Regards,
    Fisher

  • Problem in triggering of workflow

    Hi All,
    We have custom events assigned to bus2104.In Event linkage transaction SWW_WI_CREATE_VIA_EVENT is passed to Receiver Function Module and "Linkage Activated" = 'X'.
    In  quality server after approval request (t.code IMA1N) is created and status of approval is changed to "Request for POP inclusion" the workflow is triggered. But in testing workflow is not triggering.
    In test system if i am manully executing the workflow using SWUE t.code & selecting "trigger receive FM synchronus" then only the workflow is triggered.
    If i execute workflow manully through SWUE & unselecting " trigger receive FM synchronus"  the workflow is not triggered.
    Could you plz let me know why the worklfow is not triggered in qualtiy system automaticly.
    *Please do not use words like "Urgent" in the forum.Hence i edit the message as per the forum guidelines. Edited by: Saujanya GN on May 12, 2008 5:41 AM

    Hi
    Thanks for your response.
    The settings in SWEL are identical in Quality & test system.But if i am manually running the workflow fro SWUE with "tigger receiver function module  synchronouly" = X
    in workflow graph its shown that the workflow is triggered through event but in SWEL data is not available.
    Regards
    Deepthi

  • Problem in triggering the component after firing raise evnt from taskflow.

    Hi,
    I have a dashboard screen in which there are a number off panel boxes each containing an individual reusable task flow. There is one input text declarative component on the screen on change of which I am setting the values in the helpers of the task flows so that in there respective refresh region's they can use this value to populate the data. After the change event code of the DC is finished and all the refresh regions are fired one by one, which raise some event and I am capturing that event in consumer if my screen, based on that event I delegate the call to my backing bean and set the rendered property of the panel boxes, which is not getting triggered until I click on some button, I have added the partial trigger to the panel box of my DC and even added AddPartialTarget but both are not working,I have even tried queue event that too doesn't work. This Partial Trigger and Partial Target were working until i wasn't using the raise event but after using that It stopped triggering.
    Can any body suggest something ..?
    Any Help Appriciated
    Thanks
    Shashank Vij

    Hi,
    don't think anyone here understood what the issue is. Any chancwe to simplify the question ?
    Frank

  • Problem with triggers

    An Oracle 8 application isn't working apparently because the triggers are messed up. How can I fix this?

    There are a number of ways to do this.
    The simplest is to keep an extra column on each table that indicates which table a record originated in. Check this column in your triggers to prevent looping.
    Other options would include package variables that you could set or using a third table as a variable.
    But the real question, I think, is what you are attempting to do. It seems to me that you are implementing a mutli-master replication system. It is much easier to synchronize two-tables by using Oracle's built-in replication features than it will be by hand.
    Steven

Maybe you are looking for

  • Inbound delivery creation through VL01N

    Hello, I wud like to create inbound(return) delivery through VL01N t-code with reference of sales/repair order. following things i am passing to VL01N screen: 1. Shipping point 2.delivery date = current date 3.repair / sales order number 4.delivery t

  • BI Ssytem Conenction

    Hi, I have installed CE 7.1 ehp 1 on my system along with SAP NetWeaver ABAP 7.01 on the same system. I followed the steps mentioned in the help document to connect the ABAP system to the CE. I want to use the BI queries in Visual composer. I have ma

  • CS5 trial installation - Preparing to install

    I've tried to install the new Photoshop CS5 Extended trial on my laptop but I just can't seem to get it installed. When I start the installer nothing happens (PDapp.exe appears in my task manager though) until I go to my task manager and remove the t

  • Application Manager da error, esta dañado. Qué puedo hacer para repararlo?

    He reinstalado varias veces Adobe Application Manager y siempre me da error al arrancarlo, esta dañado.

  • About Function Module customer_update

    Hi SAP Experts, Can anyone explain to me what parameters should I pass to the importing and tables parameters of FM customer_update. But I don't know what values should I pass. I only need to update field SORTL which is only found in KNA1. Thanks in