Problem in data element

hi experts,
i am developing a report to display details of equipment number(transaction ie03).
in that to get the partner function details (parvw ' vw ' person responsible)
we have partner (PARNR I_PARNR CHAR 12 0 Partner) and name of that person. so based on parnr we get details from table pa0001 .
here we have PERNR (PERNR PERSNO NUMC 8 0 Personnel number)
(here pernr is equivalent to parnr of ihpa but data elements differ) so we get the details that is ename(employee name ).
but when i write select query i get the following error
select objnr parvw parnr
from ihpa
into table it_ihpa
for all entries in it_itab
where objnr = it_itab-objnr
and parvw = c_vw.
select pernr ename
from pa0001
into table it_pa01
for all entries in it_ihpa
where pernr = it_ihpa-parnr.
error : when using the addition "for all entries in itab",
the field pernr and it_ihpa-parnr must have same type and length.

Hi,
The field PERNR and PARNR are different.So u can't directly write in the where condition.Try like this as given jayanti
if not it_ihpa[] is initial.
select pernr ename
from pa0001
into table it_pa01
for all entries in it_ihpa
where pernr = it_ihpa-parnr+4(8).
endif.
Regards,
Nagaraj

Similar Messages

  • A problem when using a data element in BAPI

    Hi there,
    I build a function module, and want to use it as a BAPI. But when I add the function module as a method of a BAPI object, it gives me the following error: data type xxxxx cannot be used for methods.
    I guess the problem happens because of the type of data element I used for the input parameter of the function module. Thus I tried many other data elements, but I keep getting the same error. I am really out of the game. Could anyone tell me which data element I should use for the input parameter of the function module? The function module has only one input parameter, which should be a string with length less than 100.
    Thank you so much!!
    Sincerely,
    Bing

    The function module has only one input parameter, which should be a string with length less than 256. (I tried many predefined data element like RPLM_STRING, but when I tried to add the function module as a method of BAPI, the SAP always gave me the error: data type xxxxx cannot be used for methods)
    It only has one output parameter: RETURN (associated type: BAPIRETURN)
    I am really not familiar with ABAP program, let alone BAPIs. Any suggestions would be very helpful to me. I sincerely appreciate your help.
    Bing

  • Problem when define Value range for data element

    Dear
    When I define a new data element in ABAP Dictionary, for example, ZDATA_ELEMENT_TEST.
    I use domain ZDOMAIN_TEST.
    (Data type is DEC, the length is 10, and decimals is 2 with sign.)
    Now, I want to restrict that, user can ONLY input the value from 10 to 100.
    From ABAP course and the Internet, I switch to "Value Range" tab, and define 10 for Lower Limit, 100 for Upper Limit in Intervals section.
    And write the simple program.
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST.
    WRITE: test.
    And run it.
    Line: -
    But, there is a problem.
    When I input 200 for test, the program still run and display 200 to screen without any error report or notification. The ABAP runtime system doesn't check the input value.
    I want to config for the domain that can satisfies, if the user input the wrong value (e.g: 200 in the previous case), the program will auto raise the error report, or exception, or sth like that.
    Any help is welcome.

    Hi Hanni,
    Welcome to forum.
    Try to attach key word VALUE CHECK to your PARAMETER statement.
    I.e:
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST VALUE CHECK.
    Note: The addition VALUE CHECK cannot be used together with the additions AS CHECKBOX, RADIOBUTTON, or NO-DISPLAY.
    Regards,

  • Problem when using a different data element in Employee Tab Contact Info

    Hello,
    My version: Nakisa OrgChart 4.1
    I created a data element whose fields I wanted to show in the Position details (in the Employee Profile panel, which use the default Static layout 'Employee Tabs'). I am trying to display some contact info, and I used the Employee Tab Contact Info section within Employee Tabs to do it. Somehow the fields captions do not show once I do that (see picture attached). I tried using the 'Employee Tab Data Sheet' section to display the same information, and it works fine.
    Any thoughts what could cause this behavior? All the fields captions have values that were configured in the data element.
    Thanks
    M.E.

    Sorry, just re-reading from the start, you are saying this is purely dependent on the type of section you select. Right?
    With "Employee Tab Contact Info", you say it doesn't show; Have you tried using Field/Value Section (Multiple)?
    Also, when it doesn't work, what <presentation> is referenced in your custom section within "OrgUnitPositionEmployeeDetail.xml" (in \.delta\AppResources\detailconfiguration)?
    Stephen

  • Problem while creating a new Data element in a new table?

    Hello Everyone,
    I have downloaded Netweaver 7.1 trail version from internet and while creating a data element through the data dictionary: i got this input box:
    Register Object
    SAP Release 701
    Access key needed?
    Installation DEMOSYSTEM
    What could an access key be here in this demo version?
    please help experts. thanks for writing back.
    Cheers
    lastw0nd3r
    P.S:
    I tried this access key already which was in devaccess table
    29671482393151224771  but it didn't worked.
    Edited by: lastw0nd3r on Jun 8, 2010 5:30 PM

    in processformrequest() i wrote this:
    if ((tableBean.getName().equals(pageContext.getParameter(SOURCE_PARAM)))
    &&(ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM))))
    am.invokeMethod("createRecordInv") ;
    in Amimpl.java
    i wrote
    public void createRecordInv()
    try
    OAViewObject vo = getARTransactionLineVO1();
    if (!vo.isPreparedForExecution())
    {   vo.executeQuery();     }
    if (vo != null)
    vo.setMaxFetchSize(0);
    ARTransactionLineVORowImpl row1 = ( ARTransactionLineVORowImpl)vo.createRow();
    if (vo.getFetchedRowCount() == 0)
    {vo.insertRow(row1); }
    else
    { vo.insertRowAtRangeIndex(vo.getFetchedRowCount(),row1); }
    row1.setNewRowState(row1.STATUS_INITIALIZED);
    catch(Exception ex)
    { ex.getMessage();  }
    i am getting error
    oracle.apps.fnd.framework.OAException: java.lang.ClassCastException

  • Data element problem

    Hi Experts
           I have used EBELN domain for my field, its length is 10,
          now i want to increase the length of the data element, what can i do.
          can i change the data element to the field ebeln.
          If i change it, will it affects the data in the production server which already transported to production.
    Pls advise me on this same.

    hi,
    You cant change directly.It will ask Access Key.
    changing SAP standard data element is so critical and it will never give the result you expected.
    Because so many tables and programs use ebeln and do some validations on field size also.
    Its like playing with standard programs.
    Please do in other way like creating zebeln in se11 tcode and give size according to your requirement and use this for your field.
    Reward if useful
    Thanks
    Sivaparvathi
    null

  • Data element-reward point guranteed

    Hi all,
             i am in a peculiar problem.I have to go through a hell lots (50+) of ztable and find the domian used and corresponding data element.
    going thorugh SE11 and finding the things are going to take lots of time.
    i have a report program , sending it to you, it displays details of info of listed table.
    just run the report.
    but the thing is , it rerieves the data type, instead of data element and domain.
    somehow if i get those two things(domian & data element instead of data type of each field) , my work will be easier.
    i will simply run this report and download the content of the priniting internal table int an excel ****.
    can you just do some modification in this report to print DATA ELEMENT AND DOMAINS OF RESPECTIVE.
    here it is ,
    REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
           LINE-SIZE 178 LINE-COUNT 65.
    TABLES: DD03L, DD04T, DD02T, DD02L.
    SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
    *SELTEXT E  'SAP Table Name(s)'
    DATA: BEGIN OF TAB OCCURS 500,
         TABNAME LIKE DD03L-TABNAME,
         POSITION LIKE DD03L-POSITION,
         FIELDNAME LIKE DD03L-FIELDNAME,
         STXT LIKE DD04T-DDTEXT,
         KEYFLAG LIKE DD03L-KEYFLAG,
         DATATYPE LIKE DD03L-DATATYPE,
         LENG     LIKE DD03L-LENG,
         DECIMALS LIKE DD03L-DECIMALS,
         CHECKTABLE LIKE DD03L-CHECKTABLE,
         REFTABLE LIKE DD03L-REFTABLE,
         REFFIELD LIKE DD03L-REFFIELD,
         END OF TAB.
    DATA: LINE-COUNT TYPE I.
    SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
      MOVE-CORRESPONDING DD03L TO TAB.
      IF TAB-FIELDNAME CS '.inc'.
      ELSE.
        SELECT * FROM DD04T WHERE ROLLNAME   = DD03L-ROLLNAME
                              AND DDLANGUAGE = SYST-LANGU
                              AND AS4LOCAL   = 'A'.
        ENDSELECT.
        IF SYST-SUBRC = 0.
          TAB-STXT = DD04T-DDTEXT.
        ENDIF.
        APPEND TAB.
      ENDIF.
    ENDSELECT.
    DESCRIBE TABLE TAB LINES LINE-COUNT.
    IF LINE-COUNT EQ 0.
      MESSAGE E009 WITH 'Table Not Found'.
    ENDIF.
    SORT TAB BY TABNAME POSITION.
    LOOP AT TAB.
      ON CHANGE OF TAB-TABNAME.
        NEW-PAGE.                          "Page Break for New Table
      ENDON.
      WRITE: /  TAB-FIELDNAME, 20 TAB-STXT,
               81 TAB-KEYFLAG,  85 TAB-DATATYPE,
               90 TAB-LENG, 100 TAB-DECIMALS,
               110 TAB-CHECKTABLE,
               121 TAB-REFTABLE,
               132 TAB-REFFIELD.
    ENDLOOP.
    TOP-OF-PAGE.
      FORMAT INTENSIFIED OFF.
      WRITE: /  SY-REPID,
               'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
               'System', SY-SYSID(4), 'Client', SY-MANDT.
      WRITE: / SY-TITLE CENTERED.
      FORMAT INTENSIFIED ON.
    *include zconinc3.
    FORMAT INTENSIFIED OFF.
    CLEAR DD02T.
    SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
                          AND DDLANGUAGE EQ SYST-LANGU
                          AND AS4LOCAL   EQ 'A'.
    ENDSELECT.
    CLEAR DD02L.
    SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
                          AND AS4LOCAL   EQ 'A'.
    ENDSELECT.
    WRITE: / 'Table Name   ', TAB-TABNAME,
             'Type=', DD02L-TABCLASS,
              DD02T-DDTEXT.
    WRITE: /  'Field',       20 'Description',
             81 'Key',        75 'Type',
             90 'Length', 100 'Decimals',
             110 'Check Table',
             121 'REF Table',
             132 'REF Field'.
    FORMAT INTENSIFIED ON.

    Here you go:
    REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
    LINE-SIZE 255 LINE-COUNT 65.
    TABLES: DD03L, DD04T, DD02T, DD02L.
    SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
    *SELTEXT E 'SAP Table Name(s)'
    DATA: BEGIN OF TAB OCCURS 500,
      TABNAME LIKE DD03L-TABNAME,
      POSITION LIKE DD03L-POSITION,
      FIELDNAME LIKE DD03L-FIELDNAME,
      STXT LIKE DD04T-DDTEXT,
      KEYFLAG LIKE DD03L-KEYFLAG,
      DATATYPE LIKE DD03L-DATATYPE,
      LENG LIKE DD03L-LENG,
      DECIMALS LIKE DD03L-DECIMALS,
      CHECKTABLE LIKE DD03L-CHECKTABLE,
      REFTABLE LIKE DD03L-REFTABLE,
      REFFIELD LIKE DD03L-REFFIELD,
      rollname like dd03l-rollname,
      domname like dd04l-domname,
    END OF TAB.
    DATA: LINE-COUNT TYPE I.
    SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
      MOVE-CORRESPONDING DD03L TO TAB.
      select single domname from dd04l into tab-domname
        where rollname = dd03l-rollname.
      IF TAB-FIELDNAME CS '.inc'.
      ELSE.
        SELECT * FROM DD04T WHERE ROLLNAME = DD03L-ROLLNAME
        AND DDLANGUAGE = SYST-LANGU
        AND AS4LOCAL = 'A'.
        ENDSELECT.
        IF SYST-SUBRC = 0.
          TAB-STXT = DD04T-DDTEXT.
        ENDIF.
        APPEND TAB.
      ENDIF.
    ENDSELECT.
    DESCRIBE TABLE TAB LINES LINE-COUNT.
    IF LINE-COUNT EQ 0.
      MESSAGE E009 WITH 'Table Not Found'.
    ENDIF.
    SORT TAB BY TABNAME POSITION.
    LOOP AT TAB.
      ON CHANGE OF TAB-TABNAME.
        NEW-PAGE. "Page Break for New Table
      ENDON.
      WRITE: / TAB-FIELDNAME, 20 TAB-STXT,
      81 TAB-KEYFLAG, 85 TAB-DATATYPE,
      90 TAB-LENG, 100 TAB-DECIMALS,
      110 TAB-CHECKTABLE,
      tab-rollname,
      tab-domname.
    ENDLOOP.
    TOP-OF-PAGE.
      FORMAT INTENSIFIED OFF.
      WRITE: / SY-REPID,
      'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
      'System', SY-SYSID(4), 'Client', SY-MANDT.
      WRITE: / SY-TITLE CENTERED.
      FORMAT INTENSIFIED ON.
    *include zconinc3.
      FORMAT INTENSIFIED OFF.
      CLEAR DD02T.
      SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
      AND DDLANGUAGE EQ SYST-LANGU
      AND AS4LOCAL EQ 'A'.
      ENDSELECT.
      CLEAR DD02L.
      SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
      AND AS4LOCAL EQ 'A'.
      ENDSELECT.
      WRITE: / 'Table Name ', TAB-TABNAME,
      'Type=', DD02L-TABCLASS,
      DD02T-DDTEXT.
      WRITE: / 'Field', 20 'Description',
      81 'Key', 75 'Type',
      90 'Length', 100 'Decimals',
      110 'Check Table',
      141 'Data Element',
      172 'Domain'.
      FORMAT INTENSIFIED ON.
    Message was edited by: Erik Verbeeck

  • Description of field from data element in table control

    hello people !!! I need help !!
    I’m using a table control in my module pool program. I create this table through wizard, taking the fields from an internal table. This internal table was defined like this:
    Table Control ; posting items
    DATA: t_postitems  TYPE stucture_fd OCCURS 0 WITH HEADER LINE.
    Where  <b>stucture_fd</b> is strucuture with the fields.
    The problem that I have is that the titles of the fields does not take their description from the data element.
    How I create this table control from the internal table and that takes the description from the data element? It is very important this, because this development will be used in different languages.
    From already I am thanking for any answer.
    Thank so much.
    Best regards, Esther.

    Gracias, es mas facil para mi en espanol.
    tables: tab_prb.
    types: begin of <b>ti</b>.
               include structure <b>tab_prb</b>.
    types: end of <b>ti</b>.
    data: <b>ti_b</b>kpf type table of ti,
             <b>wa_bkpf</b> type ti.
    Explicacion:
    tab_prb, es una tabla transparent que contiene la estructura <b>struct_fd</b> que tiene los campos mas un flag para la seleccion de fila (flag).
    Defini esta tabla transparente, para que los campos tomen su decripcion desde los elementos de datos.
    Si creo el TB directo de la tabla tab_prb, no me permite seleccionar el campo flag como campo de seleccion, cuya funcion es marcar linea simple.
    Si yo hago la definicion anterior en mi programa, cuando creo el TB, va todo bien, hasta <b>ti_bkpf</b> que seria mi tabla interna, pero cuando me pide el work area, le ingreso <b>wa_bkpf</b> me indica que no esta definido en mi programa o ne es una estrucutura.
    Espero haber aclarado un poco mi respuesta.
    Muchas gracias !!!
    Esther.-

  • Creation of field without data element

    Hi all,
    i want to create a field SLNO without data element, i.e. by assigning direct data type NUMC.
    by doing so while activating it is giving the below message.
    "The table must be adjusted by unloading and reloading
    it in the database. This function has a long runtime and should
    not be performed while the table is being used for production."
    "If you want to start the adjustment nevertheless,
    select a processing type and choose 'Adjust'.
    Otherwise choose 'Terminate'."
    pls let me know which is better i.e. by assingning direct data type, or else can i create a data element with type as 'NUMC'.
    Regards,
    venkat

    hi venkat,
    when creating the db table in se 11 ,if u want to use predefined data type ie char,numc,date etc ... With in se14,in fields tab, click predefined type button which is placed in the first row along with cut ,delete icons.
    When u click predefinedtype button, the field named data type will be enabled and its there ready for editing.Choose the data type u need and data length etc.
    If u r creating the db for the first time, there is no need for , adjusting the db table using se14.
    But if u r trying to edit a db ,that is already been created , then make neccessary changes in the db and go to se14. There give ur edited db name, and click "activate and adjust database " button...Ensure that "save data " option button is selected.
    Note:
    If u r making any structural  changes in already existing db ,then use se14 to adjust ,save and activate the db.
    Hope the content is usefull
    please change the problem  status if its resolved .Thank you.
    thanks
    rajeshwari
    Edited by: Rajeshwari padmanaban on Jan 16, 2009 11:24 AM

  • Creation of Data Element

    Hi,
    I am working on special project of Automation of all utility billing and housing system for a big company in SAP.
    For that I have to create 26 tables and obviously I am creating a lot of dataelements.
    Now the problem is my quality dept says that I should use the inbuilt data elements and refrain from creating new ones. In this case the field label is not matching my field. He says that who is going to see the table and says that you can change the field description in reports as you like. Is it justified.
    I can see that there are more than 500 standard datalements created for  a char field of length 4 by SAP. but none of the description matches my field description. if the case is of reducing the load then does sap recommend not to create z data elements. 
    Can we create dataelement just for the sake of field label and what is the other purpose of a dataelement if not
    How much load will be generated by creating a dataelement.
    kindly give some insight into the need to create dataelements.

    Hi!
    If your Quality people are that much particular about creation of data elements, there is one way to solve this problem. Use standard data elements.
    I know here you will get a doubt that after creating a maintenance generator you will not be able to see the description whatever you want in SM30. For this follow the below procedure.
    While creating maintenance generator you will give the function group name right, go to SE80 -> and give the function group name there -> double click on the screen number of maintenance -> click on element list tab -> click on 'Texts/I/O templates' tab -> now against the field names under 'Text or I/O Field' column remove the value '+____________' and type the field description there -> repeat the procedure for all the fields -> now save, check and activate the screen as well as function group.
    Now if you go to SM30, you can see the field description for every field.
    This is somewhat time consuming, but it may help you.
    Reward points, if useful.
    Regards,
    Venkat.

  • Problem with Photoshop Elements Printing

    I have been using Photoshop Elements for a couple of years now and know it pretty well.  Today while attempting to print, a strange problem came up:  After going through the protocol to make a print, just before the image prints PE does a very fast auto correction that basically ruins all the color correction I have made on the image.  How do I disable this function?

    Hi and thanks for your reply. I checked the settings under "Print", "More Options", then "Color Management" and it only has "Print Space", none of the three options that you said I should have.  Am I looking in the wrong place?
    Date: Mon, 3 Sep 2012 11:14:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problem with Photoshop Elements Printing
        Re: Problem with Photoshop Elements Printing
        created by 99jon in Photoshop Elements - View the full discussion
      Check your color management by clicking More Options in the print dialog There are basically three options:1) Printer Manages Color2) Elements Manages color3) No color Management Make sure everything is consistent e.g. if you choose Elements manages color make sure color management is switched off in the print driver. 
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4669848#4669848
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4669848#4669848. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Problems installation Photoshop Elements 8 on Windows 7

    I tried to install Photoshop elements 8 on my Windows 7 computer, but the installation gives a failure after a certain time. A file "...cab" is not working and may be corrupt ( exact failure code I can give, if necesary). Is there any possibility to get this file or the program Photoshop Elements 8 as download file so that I can complete the installation? Thank you in advance for your answers. 

    Hello,
    I just got the same problem already some time ago when I tried to install this programm in my computer. At that time (March 2012) the program crashed my computer, I had to reinstall all the Software completely including system software. The program I purchased in December 2011 from Amazon together with a Reflecta crystal Scan slide scanner as bundle, so I thought it will work.
    I will try to install the program from the download link you gave me, in case it does not work, what can I do next without having to buy a newer version?
    Regards
    Franz-Josef Laven
    Date: Tue, 6 Nov 2012 14:57:39 -0700
    From: [email protected]
    To: [email protected]
    Subject: Problems installation Photoshop Elements 8 on Windows 7
    Re: Problems installation Photoshop Elements 8 on Windows 7 created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    You can download a fresh copy of the install files by following the directions listed at http://prodesigntools.com/direct-download-links-for-lightroom-3-and-ph otoshop-elements-8.html.
    I am curious did you have this installed previously or did you just purchase a copy of Photoshop Elements 8?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4828039#4828039
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4828039#4828039
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4828039#4828039. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Extended Withholding Tax Certificate Printing-Missing data elements

    Hi
    I am working in 4.7 version and am faced with some issues in TDS.
    (1)  In the TDS certificate printing, the certificate number is not appearing even though the number ranges are exactly maintained for the current year.  I note that for some Official tax keys, it is printed perfect, but for some others it is not printed.
    (2) Another problem is the Cheque number details are not appearing in the certificate.
    (3) Eventhough the PAN number is mentioned in the Vendor Master, the same is not picked up rather it is coming from the J1ID data elements.
    Your valuable comments will aptly rewarded.
    Regards,

    1.In print preview certificate number will not generated, when ever you have given printing then only number will be generated.please note that
    back from preview and give print out, dont give print out from preview.
    2.For getting the cheque number,you need to
    write your own code inside the Function Module
    J_1I7_USEREXIT_CHEQUENO_CERT.This FM is present in the
    note 912767.
    The code needs to be written at the customer end.It was not there in note no.912767
    Kindly take the help of your abaper in this regard.
    for sample coding please use the following link.
    Check/Cheque No. is not printing on the TDS Certificate
    3. Pan number of vendor in form 16A is coming if you update the pan no.from the following areas
    vendor master -Withholding tax-cin details-Pan number
    or In JI1D- Vendor Excise Details- PAN number
    assign points

  • Has anyone had a problem installing PSE Elements 8.

    I have installed PSE Elements 8 from a new boxed CD onto a new Dell running Windows 7 Professional (64 Bit).
    PSE has loaded without any warnings and I get to the welcome screen OK. Organiser works fine but if I try and start Edit it just circles around back to the Edit prompt. I have tried getting in via Fix in Organiser which then advises Loading Elements workspace but then drops me back to menu.
    I have tried all the Tech Note suggestions but after hours of trying am still no further forward.
    I even downloaded and installed the trial version but I this performs in the same way.
    All suggestions welcome.  Thanks

    No luck.
    PE Editor does not open with Ctrl/Alt/Shift nothing...zilch
    Running PE Editor from this point using Open produces error message. PE Elements has stopped working - Close Program.
    Thanks anyway.
    Problem has now been escalated to senior tech team within Adobe.
    Date: Mon, 1 Mar 2010 02:47:01 -0700
    From: [email protected]
    To: [email protected]
    Subject: Has anyone had a problem installing PSE Elements 8.
    The only other suggestion is try re-setting the Editor preferences as this often fixes conflicts. You will also be able to check that this part of the application installed correctly.
    Hold down the windows key to the left of Alt and press the letter E to launch Explorer
    In the left side pane click on Computer
    In the right pane double click on Program Files, then double click Adobe, then double click Photoshop Elements 8.0
    Use the right hand  scroll bar to move down the list of files and locate Photoshop Elements Editor With one hand holding down all three keys CtrlShiftAlt right click on the Editor file in the list and select open.
    You should see a pop up box with the words Delete Adobe Photoshop Elements Settings File?
    Click on Yes
    Close down Elements and re-open it in the normal way.
    Please let us know if that works.
    >

  • ORABPEL-77005 Uninitialized data element

    Hi,
    I created BPM process and I used BusinessRuleTask in it.
    During testing I get:
    Non Recoverable System Fault :
    <bpelFault><faultType>0</faultType><subLanguageExecutionFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpmn:getDataOutput('ruleOutput'). The XPath expression failed to execute; the reason was: ORABPEL-77005 Uninitialized data element. DataOutput ruleOutput is not initialized in flow element BusinessRuleTask. Make sure to initialize DataOutput ruleOutput before using it in flow element BusinessRuleTask. Contact oracle support to resolve the issue. . Check the detailed root cause described in the exception message text and verify that the XPath query is correct. </summary></part><part name="code"><code>XPathExecutionError</code></part></subLanguageExecutionFault></bpelFault>
    Before BusinessRuleTask step I initialized ruleOutput, but the result is the same..
    have you any idea what's wrong?

    Sharing another scenario as it might help others.
    Instead of "DataOutput [variable] is not initialized" I encountered
    Uninitialized data element.
    DataInput execData is not initialized in flow element [task name]
    Make sure to initialize DataInput execData before using it in flow element [process name]
    The issue was in the log-handler (Before Output association) of the human-task, I logged the task execData (which is a system variable that gets populated with task execution data).
    ora:getContentAsString(bpmn:getDataOutput('execData'))
    The problem was resolved after I removed the above statement from the log handler.

Maybe you are looking for

  • Parameters in Url..how do I use login information to insert the primary key

    Uggg, it is 3 am, I am so tired. Please help. I have made a registration page for my site. Hurray it works. Login Page. It works Protected some pages. Works Now I am trying to make a page that the users can go to and update their user information. Us

  • How to Restore from Time Machine in Single-user mode?

    Hi there, I am trying to fix a Macbook Pro that has had its /private folder trashed and emptied. Obviously it won't boot unless you you boot in to Single User mode and I'm wondering if its possible to do a Time Machine restore from the terminal, I wo

  • TSV_TNEW_PAGE_ALLOC_FAILED Error

    Dear Experts, I have received multiple short dump Like "TSV_TNEW_PAGE_ALLOC_FAILED" in weekly twice Server : Sun solaris/Oracle 10g- 64 Bit, 32GB Ram, SAP NetWeaver 2004s one CI+DB and 3 APP servers. When I checked Work process level it says A Tue Au

  • Invoice reference on Bill of Exchange

    Hello, When using F110 for Customer Bill of Exchange payment requests, I am trying to get the invoice number onto the Bill of Exchange document in the reference field (BKPF-ZBLNR) of the payment request document. I have set the single payment for eac

  • CANNOT OPEN FILES CS6

    CS6 illustrator and photoshop not allowing me to open documents due to different reasons...damaged files, badly formatted, not compatible etc. However, these files were all created on the same computer and program therefore should be compatible. Is t