Runtime error while i add a node in ALV Tree in oops

i am adding a node to alv tree using oop am passing a work area and when i execute it is going for a dump and it says UC_OBJECTS_NOT_CONVERTIBLE
and the below where it is bold and italic it is where the dump is occuring
METHOD ADD_NODE.
FIELD-SYMBOLS: <TAB1> TYPE standard TABLE,
<wa> type any.
assign mt_outtab->* to <tab1>.
insert line in outtab
DATA: L_INDEX TYPE SY-TABIX.
if is_outtab_line is initial.
create initial line
data l_dref_wa type ref to data.
create data l_dref_wa like line of <tab1>.
assign l_dref_wa->* to <wa>.
l_index = 0.
append <wa> to <Tab1>.
else.
APPEND IS_OUTTAB_LINE TO <TAB1>. endif.
L_INDEX = SY-TABIX.
add node to model
CALL METHOD ME->ADD_MODEL_NODE
EXPORTING
I_RELAT_NODE_KEY = I_RELAT_NODE_KEY
I_RELATIONSHIP = I_RELATIONSHIP
IS_NODE_LAYOUT = IS_NODE_LAYOUT
IT_ITEM_LAYOUT = IT_ITEM_LAYOUT
I_NODE_TEXT = I_NODE_TEXT
I_INDEX_OUTTAB = L_INDEX
IMPORTING
E_NEW_NODE_KEY = E_NEW_NODE_KEY.
ENDMETHOD.

HI Mohsin,
please refer to the below ....
might be helpful for u .....
https://scn.sap.com/thread/2050188
http://scn.sap.com/message/6407195
http://r0005001.benxbrain.com/de%28bD1lbiZjPTAwMQ==%29/index.do?onInputProcessing=brai_thread&001_thread_id=1759814%20&001_temp=R3TR|PROG|RCSBI010||P01|
Hope thiw will help ....
Regards,
AKS

Similar Messages

  • Runtime Error while Displaying End of Page in ALV

    Hi,
    This is the Code i have written.. The top of page is printing when i comment the end of page in the program (BOLD FORMAT)..But when Uncomment the End of page Code this is going to Short dump..and the Runtime Error is..
    A PERFORM was used to call the routine "END_OF_LIST" of the program "ZPROGRAM
    This routine contains exactly 0 formal parameters, but the current
    call contains 1 actual parameters.
    *&      Form  DISPLAY_ALV_VBAP
    FORM DISPLAY_ALV_VBAP .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM          = V_REPID
          I_CALLBACK_TOP_OF_PAGE      = 'TOP_OF_PAGE1'
          I_CALLBACK_HTML_END_OF_LIST = 'END_OF_LIST'
          I_GRID_TITLE                = 'THIS IS LAST'
          IS_LAYOUT                   = WA_LAYO
          IT_FIELDCAT                 = I_FIELDCAT
        TABLES
          T_OUTTAB                    = IT_VBAP
        EXCEPTIONS
          PROGRAM_ERROR               = 1
          OTHERS                      = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_VBAP
    *&      Form  top_of_page1
          text
    FORM TOP_OF_PAGE1.
      DATA:IT_LISTHEAD2 TYPE SLIS_T_LISTHEADER.
      DATA:WA_LISTHEAD2 TYPE SLIS_LISTHEADER.
      WA_LISTHEAD2-TYP = 'H'.
      WA_LISTHEAD2-INFO = 'THIS IS TOP OF PAGE FOR SECOND LIST'.
      APPEND WA_LISTHEAD2 TO IT_LISTHEAD2.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = IT_LISTHEAD2
          I_LOGO             = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "top_of_page1
    *&      Form  end_of_list
          text
    FORM END_OF_LIST.
      DATA:IT_LISTHEAD1 TYPE SLIS_T_LISTHEADER.
      DATA:WA_LISTHEAD1 TYPE SLIS_LISTHEADER.
      WA_LISTHEAD1-TYP = 'H'.
      WA_LISTHEAD1-INFO = 'THIS IS END OF PAGE FOR SECOND LIST'.
      APPEND WA_LISTHEAD1 TO IT_LISTHEAD1.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
       IT_LIST_COMMENTARY       = IT_LISTHEAD1
       I_LOGO                   = 'ENJOYSAP_LOGO'
       I_END_OF_LIST_GRID       = 'X'
    ENDFORM.

    Hi
    The "END_OF_LIST" event is not called as you have called it.
    First capture END_OF_LIST as an event in your events table.
    Then use it.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = V_REPID
    I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE1'
    I_CALLBACK_HTML_END_OF_LIST = 'END_OF_LIST'  <----- Wrong
    I_GRID_TITLE = 'THIS IS LAST'
    IS_LAYOUT = WA_LAYO
    IT_FIELDCAT = I_FIELDCAT
    TABLES
    T_OUTTAB = IT_VBAP
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " DISPLAY_ALV_VBAP
    Build an events table like this :
    FORM build_events.
      DATA: ls_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = gt_events[]
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_page
                  INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_PAGE' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_list
                  INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_LIST' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
    ENDFORM.                
    And then use the END_OF_list form as you have defined.
    Hope that helps.
    Cheers
    Ravish

  • Runtime error when am adding a node to oop alv

    i am adding a node to alv tree using oop am passing a work area and when i execute it is going for a dump and it says UC_OBJECTS_NOT_CONVERTIBLE
    and the below where it is bold and italic it is where the dump is occuring
    METHOD ADD_NODE.
      FIELD-SYMBOLS: <TAB1> TYPE standard TABLE,
                     <wa> type any.
      assign mt_outtab->* to <tab1>.
    insert line in outtab
      DATA: L_INDEX TYPE SY-TABIX.
      if is_outtab_line is initial.
      create initial line
        data l_dref_wa type ref to data.
        create data l_dref_wa like line of <tab1>.
        assign l_dref_wa->* to <wa>.
        l_index = 0.
        append <wa> to <Tab1>.
      else.
      <i><b>  APPEND IS_OUTTAB_LINE TO <TAB1>.</b></i>  endif.
      L_INDEX = SY-TABIX.
    add node to model
      CALL METHOD ME->ADD_MODEL_NODE
                  EXPORTING
                     I_RELAT_NODE_KEY  = I_RELAT_NODE_KEY
                     I_RELATIONSHIP    = I_RELATIONSHIP
                     IS_NODE_LAYOUT    = IS_NODE_LAYOUT
                     IT_ITEM_LAYOUT    = IT_ITEM_LAYOUT
                     I_NODE_TEXT       = I_NODE_TEXT
                     I_INDEX_OUTTAB    = L_INDEX
                  IMPORTING
                     E_NEW_NODE_KEY    = E_NEW_NODE_KEY.
    ENDMETHOD.

    Hi Mohsin,
    Check the program : BCALV_TREE_MOVE_NODE_TEST
    Regards,
    Basha
    Rewards points if it helps you.

  • Runtime error while executing rule

    Hello All,
      While executing the DTP for a cube, im facing the error as Runtime error while executing rule -> see long text .
      For this source is another Cube, where im loading the data from Cube to Cube.
    Error Description are as follows:-
    Error Location: Object Type    TRFN
    Error Location: Object Name    0T9SCR6Q4VWS1SOPNRRBOY1YD51XJ7PX
    Error Location: Operation Type ROUTINE
    Error Location: Operation Name
    Error Location: Operation ID   00034 0000
    Error Severity                 100
    Original Record: Segment       0001
    Original Record: Number        557
    and Also descripton is :-
    Diagnosis
        An error occurred while executing a transformation rule:
        The exact error message is:
        Division by zero
        The error was triggered at the following point in the program
        GP4H0CW3MLPOTR3E8Y93QZT2YHA 4476
    System Response
        Processing the data record has been terminated.
    Procedure
    The following additional information is included in the higher-level
    node of the monitor:
       Transformation ID
       Data record number of the source record
       Number and name of the rule which produced the error
    Let me know ur valuable suggestions on these error...
    thanks.

    Hello,
    I have checked all the transformation and End Routines.All are working fine.Yesterday i have loaded some data into it, but today its gettting errored out.
    Checked completely in the forum for threads related to this, but couldnt find proper thread which had solutions....
    thanks,
    srinivas.

  • Error while installing add on

    Hi Experts,
    error while installing add on
    in add on installation wizard
    setaddonfolder(c:\.....)returned 1
    even i tried as run as administrator
    also tried creating a new folder but same error is showing
    Please help

    Step 1:
    Ensure that the Company Databases are upgraded to the same patch as
    the SBO-COMMON.
    Please see the SAP Note 979083.Also
    check that the DB Version which is displayed in the 'Choose From'
    window is the same for all databases. Please select the Refresh button
    to ensure the information is up to date.
    Step 2:
    Ensure that the DI API is updated to the same patch as the databases.
    Please do follow the steps described below to make sure the DI Version
    is updated on the affected machine:
    1. Disconnect from the DI (close all AddOns)
    2. Deinstall the DI API via Add and Remove Programs
    3. Open the temporary folder via
    > Start > Run > enter %temp%
    4. Locate the folder SM_OBS_DLL and delete this folder.
    5. Install the DI API of the same Patch than the Software version of
    the system. The Setup.exe is located in the folder:
    ...\Packages\DI API
    6. Connect to the DI again.
    See SAP Note 870207.
    Step 3:
    Recreate the SBO-COMMON.
    0. Ensure that no user or addon is connected to any Business One
    database.
    1. Create a backup of the current SBO-COMMON.
    2. Delete the SBO-COMMON from the Server.
    3. Create a new SBO-COMMON by running the Upgrade.exe for the
    Business One Installation Files under
    ...\Packages\Upgrader Common
    Step 4:
    Reinstall the ServerTools. The installation files can be found under
    ...\Packages\Server Tools
    Step 5:
    Test if there are any open connections which might prevent the new connection.
    Please test to restart the server and connect to the database where you were getting the error first.
    I think this might resolve ur issue.

  • Runtime error while trying to convert script to pdf and sending in mail

    Hi all,
    I m trying to convert the standard script into pdf using convert_otf fm and trying to send it as an attachment using 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    I m using fm 'SSF_FUNCTION_MODULE_NAME' to get the function module name.
    But i m getting a runtime error while executing the program..
    Can anyone help me in this issue please.
    Thanks in advance,
    Ashok

    Hi Ramesh,
    I m getting an runtime error function module not found. I ll paste the code here.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
    error handling ent_retco = sy-subrc.
    perform protocol_update_i.
      ENDIF.
      ls_control_param-getotf = 'X'.
      DATA: l_document_output_info TYPE ssfcrespd,
            l_job_output_info TYPE ssfcrescl,
            l_job_output_options TYPE ssfcresop.
    check ent_retco eq 0.
      CALL FUNCTION 'lf_fm_name'
      EXPORTING
        archive_index = toa_dara
        archive_parameters = arc_params
        control_parameters = ls_control_param
        mail_recipient = ls_recipient
        mail_sender = ls_sender
        output_options = ls_composer_param
        user_settings = ' '
        zxekko = l_doc-xekko
        zxpekko = l_doc-xpekko
    zxaend = l_doc-xaend
        IMPORTING
          document_output_info = l_document_output_info
          job_output_info = l_job_output_info
          job_output_options = l_job_output_options
          TABLES
            l_xekpo = l_doc-xekpo[]
            l_xekpa = l_doc-xekpa[]
            l_xpekpo = l_doc-xpekpo[]
            l_xeket = l_doc-xeket[]
            l_xtkomv = l_doc-xtkomv[]
            l_xekkn = l_doc-xekkn[]
            l_xekek = l_doc-xekek[]
            l_xaend = l_doc-xaend[]
            l_xkomk = l_xkomk
            EXCEPTIONS
              formatting_error = 1
              internal_error = 2
              send_error = 3
              user_canceled = 4
              OTHERS = 5.
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
          max_linewidth         = 132
        IMPORTING
          bin_filesize          = v_len_in
        TABLES
          otf                   = l_job_output_info-otfdata
          lines                 = tb_pdf
        EXCEPTIONS
          err_max_linewidth     = 0
          err_format            = 1
          err_conv_not_possible = 2
          OTHERS                = 3.

  • Runtime Error while summing a column in ALV output

    Dear All,
    I have developed an ALV Report and the report is giving output without any flaws.
    I have defined proper field catalog and displaying the results using REUSE_ALV_GRID function module.
    Now the report is generating Runtime Error while the user selects a column and click the SUM icon.
    The fields like Qty, or amounts are also theowing runtime error while summing up their column in the ALV output.
    What might be the reason and how to resolve this issu?
    Regards
    Pavan

    Hi ,
    I don't know how you have write  down the code but follow the below coding example:
    FOR TOTAL:
    there is a property of fieldcatalog, that is do_sum.
    USE COED LIKE:
    PERFORM fieldcat USING:
    '1' 'MATNR' 'I_MARD' 'MATERIAL NO' 'MARD' 'MATNR ' ' ',
    '2' 'NETWR' 'I_MARD' 'PLANT' 'MARD' 'WERKS' ' ',
    FORM fieldcat USING value(p_0029)
    value(p_0030)
    value(p_0031)
    value(p_0032)
    wa_fieldcat-col_pos = p_0029.
    wa_fieldcat-fieldname = p_0030.
    wa_fieldcat-tabname = p_0031.
    wa_fieldcat-reptext = p_0032.
    wa_fieldcat-do_sum = 'X'.
    APPEND wa_fieldcat TO i_fieldcat.
    ENDFORM. " FIELDCAT
    in final output you will get the total of currency field.
    FOR SUB TOTAL:
    decleare: i_sort type standard table of slis_sortinfo_alv,
              wa_sort type slis_t_sortinfo_alv.
    wa_sort-spos = '1'.
    wa_sort-fieldname = 'field1'.
    wa_sort-subtot = 'X'.
    append wa_tab to i_sort.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    it_fieldcat = it_fieldcat
    it_sort = i_sort
    Hope this can solve your pbs.
    If you need more inputs let me know.
    Regards,
    Tutun

  • Runtime error while posting a document (FB70/FBS1)

    Hi
    I am getting a runtime error while posting a document through FB70 or FBS1 .
    The erro description tells The type "CL_BCS_OBJHEAD" is unknown.
    And the program dumps in Function module SO_KPRO_DECIDE.
    Has any one faced this problem?

    Hi,
    Please check the psoting date and also the reversal  date in FBS1. Please check when you have posted the document and when you want ot reverse the same.
    Thank you,
    Shilpa.

  • Getting Runtime Error while Activating Characteristics in BW sandbox system

    Hi, i m getting  runtime error while activating Characteristics. Error as All InfoObjects Already Saved(locked)
    Short Text
    SQL error 1691 occurred when accessing program "GP4H8Z73D1WOGH7XBIZ54N5GXEG "
       Runtime Errors         DBIF_REPO_SQL_ERROR
    even if creating a new Characteristics same error is comming.
    Key Figures are getting created successfully but problems is comming only with Characteristics. Please Help...
    Edited by: kush kumar on Mar 23, 2010 11:56 AM

    Hi,
    Follow bellow steps:
    a) Once check the Lock entries by useing SM13.
    Goto SM13--> Select your object lock entries --> Select delete.
    b). Acitvate the Infoobject.
    Regards.

  • Runtime error while executing rule - see long text RSTRAN 301

    Hi BW Gurus,
    When I executing the DTP, the following error occured.
    Runtime error while executing rule -> see long text     RSTRAN     301
    Diagnosis
        An error occurred while executing a transformation rule:
        The exact error message is:
        The argument 'GBP' cannot be interpreted as a number
        The error was triggered at the following point in the program:
        GP46DQFOYRZTUS0QITMO07IFTS0 1137
    Appreciate any useful suggestions.
    Thanks in advance.
    Maruthi

    Guess you are doing some calculation in your routines ..based on Currency Key i.e USD or INR , GBP..etc ..it should be currency value..rather than currency key. Check your field caluclation

  • Diadem runtime error while executing command "SchemeMeasStar"

    Hello:
    I used DIAdem9.0 and DAQCard6062E to acquire 16 channel data. I collected 65536 data for every channel. Whereas After the data acquisition stopped, an Error Message would poped up, but the data is still stored in data portal. the Error is like follows:
    -Error- DIAdem
    Runtime Error While Executing Command "SchemeMeasStar"
    Error Type: UNKNOWN
    Error Address:00001720
    Module Name:GFSBase.Dll
    Would you like to give me some suggestions?
    thanks very much
    jing

    Dear MarcusP:
    Thank you very much.
    your solution really works. The attached is the detailed information of the problem. Would you like to tell me more about the prolem and how to solve the problem thoroughly.
    Thank you very much.
    yours
    Jing
    Attachments:
    DIAdem_Error.doc ‏305 KB

  • Runtime Error While executing the WebDynpro Application

    I am getting the Runtime Error While executing the WebDynpro Application. The error message is "TSV_TNEW_OCCURS_NO_ROLL_MEMORY".
    It says like "
    Short text
        No roll storage space of length 9728 available for OCCURS area.
    What happened?
        Each transaction requires some main memory space to process
        application data. If the operating system cannot provide any more
        space, the transaction is terminated.
    But while executing some other Web Dynpro Applications, i am not facing this problem.

    Generally this error is a result of an infinite loop on internal table or select endselect statement where by severs  temporary memory gets full. With no memory to insert new records in temporary memory system generates the dump.
    Check your application or ask basis consultant to look at the memory parameters in instance profile.
    Regards
    Rohit Chowdhary

  • Runtime error while AttachPathAndPropagateNotifications()

    Hi!
    I am trying for "replace <column>" expression in a "Derived Column" transformation operator(programatically).
    Before this, I tried this through SSIS Business Intelligent Studio and it worked! So, I moved towards programatical approach.
    In my program, while connecting Derived Column with the FlatFileDestination, I am getting run time error:
    {"Exception from HRESULT: 0xC004705F"}
    at AttachPathAndPropagateNotifications()
    // Map a path between the transformation component to the FlatFileDestination  
                try  
                    this.dataFlowTask.PathCollection.New().AttachPathAndPropagateNotifications(  
                        this.TransformationDataFlowComponent.OutputCollection[0], this.DestinationDataFlowComponent.InputCollection[0]);  
                catch (Exception e)  
                    System.Console.WriteLine(e.Message);  
    My Expression is:(mm/dd/yyyy)
    SUBSTRING(purchase_date,4,2)+"/"+SUBSTRING(purchase_date,1,2)+"/"+SUBSTRING(purchase_date,7,4)
    And my transformation component code is:
    public IDTSComponentMetaData90 AddDerivedColumn(ref MainPipe dataFlowTask, ref IDTSComponentMetaData90 sourceDataFlowComponent)  
                //Note that MainPipe and IDTSComponentMetaData are passed as references  
                // Add the component to the DataFlow task.  
                this.addderivedcolumn = dataFlowTask.ComponentMetaDataCollection.New();  
                // Set component's stock properties.  
                this.addderivedcolumn.ComponentClassID = "DTSTransform.DerivedColumn";  
                this.addderivedcolumn.Name = "DerivedColumn";  
                this.addderivedcolumn.Description = "Adds a derived column";  
                CManagedComponentWrapper instance = this.addderivedcolumn.Instantiate();  
                instance.ProvideComponentProperties();  
                // Attach path between the flat file source components output, and the Sort Component's Input.  
                dataFlowTask.PathCollection.New().AttachPathAndPropagateNotifications(  
                    sourceDataFlowComponent.OutputCollection[0], this.addderivedcolumn.InputCollection[0]);  
                this.addderivedcolumn.InputCollection[0].ExternalMetadataColumnCollection.IsUsed = false;  
                this.addderivedcolumn.InputCollection[0].HasSideEffects = false;  
                IDTSVirtualInput90 vInput = this.addderivedcolumn.InputCollection[0].GetVirtualInput();  
                foreach (IDTSVirtualInputColumn90 vColumn in vInput.VirtualInputColumnCollection)  
                    //get a handle into the input column and specify the transformation  
                    if (vColumn.Name == DateTimeColumnName)  
                        IDTSInputColumn90 col = instance.SetUsageType(addderivedcolumn.InputCollection[0].ID, vInput, vColumn.LineageID, DTSUsageType.UT_READWRITE);  
                        col.Name = vColumn.Name;  
                        IDTSCustomProperty90 Property = col.CustomPropertyCollection["Expression"];  
                        Property.Value = GetExpressionString(DateTimeFormat, DateTimeColumnName);  
                        Property = col.CustomPropertyCollection["FriendlyExpression"];  
                        Property.Value = GetExpressionString(DateTimeFormat, DateTimeColumnName);  
                this.addderivedcolumn.OutputCollection[0].TruncationRowDisposition = DTSRowDisposition.RD_FailComponent;// RD_NotUsed;  
                this.addderivedcolumn.OutputCollection[0].ErrorRowDisposition = DTSRowDisposition.RD_FailComponent;// RD_NotUsed;  
                return this.addderivedcolumn;  
    Please suggest a solution/way to handle such type of situation.
    What is a correct way of connecting between transformation component and destination component?
    When I see in BIDS, Derived Column OutputColumn Collection Count is 0. So, I wonder, how is it passing the output to destination component?
    Regards,
    Mandar.Developer

    Hi,
    I am getting error while trying add path between two derived columns components at "AttachPathAndPropagateNotifications" method. 
    Here, dcMetada is existing Derived Column component and I am creating another Derived Column component - dcDataConversion.
    And while creating path between these two, getting exception.

  • Getting Portal Runtime Error while accessing one link in Portal Page.

    Hi,
    Can anyone tell why I am getting below error while accessing one of the portal page link:
    " Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 01:19_27/02/09_0046_16441150
    Refer to the log file for details about this exception. "
    Also please let me know how to get rid of this if possible.
    Thanks in Advance
    Vaibhav Srivastava

    Thank you for your prompt reply.
    Could you please elaborate the same.
    I am getting Portal runtime error while I am acessing an iveiw in E-recruiting. We have setup the role and user in both portal and Backend. But still the error. Could you pls send me the setting you have done.
    Portal runtime ERROR
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 02:27_27/04/09_0042_113148050
    Refer to the log file for details about this exception.
    regards
    Justin

  • Runtime Error while using Dynamic Selection

    Hi,
      We are getting a runtime error while using a dynamic selection. One of the fields has got an apostrophe in the middle of the text and so the condition is returning an error SAPSQL_WHERE_PARANTHESES.
      Let's say the value in the field is SCV's. So the WHERETAB is filled as 'SCV's' or `SCV's`. An exception is caught in this case as there is no closing apostrophe.
    Let us know if anyone has come across a similar issue and any help is appreciated.
    Regards,
    Sarves

    Hi Sarves,
    as Rob said.
    check also the [ORACLE FAQS|http://www.orafaq.com/faq/how_does_one_escape_special_characters_when_writing_sql_queries] or [SQL SERVER u2013 How to Escape Single Quotes|http://blog.sqlauthority.com/2008/02/17/sql-server-how-to-escape-single-quotes-fix-error-105-unclosed-quotation-mark-after-the-character-string/]
    Honestly: Before posting here and getting a whole lot of more or less useless comments just use your favorite search engine.
    Regards,
    Clemens

Maybe you are looking for

  • Messages are in hold state due to one message at receiver JDBC adapter

    Hello, I am using a receiver JDBC adapter and trying to send an XML file which has an insert query to insert some data into the database i.e., Oracle 9i. Here at the receiver side due to one message (  which is in to be delivered state) all other mes

  • Automatic update loop in rpm version

    When I install the recent rpm version of sqldeveloper 1.1.2.25.79-1 and start it, it immediately says that there is an update version 1.1.2.2579 is available. I suspect that the missing decimal in the version number is the culprit. In any case, when

  • Regarding MM

    Hi Experts, My question is if  i want to create a new material via copy from another material through MM01, and i need that only those views of material get activated which were in material from which iam copying and i am not aware about the views of

  • How to check for locks on a table inside a program?

    Hi Gurus, Kindly let me know how to check for a lock on a particular table inside a program.I know that we can see locks on table held by a user from transaction SM12 but my requirement is to check for lock on MARA/MARC/MARV if lock exist then bypass

  • Synchronize Outlook Contact Pictures

    Hi there! I recently bought a Nokia 6233 and have managed to synchronize my Microsoft Outlook contacts to it via Nokia PC Suite 6.8. However I cannot manage to synchronize the contact pictures that I have added in outlook. Please help! Thanks loads!