Error in UWL when we click display form in Travel Request

Hi,
We configured ESS and we are using Travel functionality.
We configured tstandard work flow WS20000050
When the approver clicks on Display form in his UWl it is giving this error message,
"com.sap.aii.proxy.framework.core.DataAccessException: Type conversion error, field I_TRIPNUMBER, complex type class com.sap.xss.tra.tri.model.tripform.Ptrm_Web_Form_Pdf_Get_Input"
I checked with sap note number 1055416 according to that in Approve Travel Request step of above mentioned workfow Binding Exists and everything is fine with the work flow.
We are still facing this probelm.can anybody please guide me on this issue.
With Regards,
Pradeep.B

Hi ,
We have the same problem , did you fix our ? Can you share the solution . Thank you .
Regard's

Similar Messages

  • This "APPCRASH" error is occured when I click to connect my web-cam.

    Please help me for resolving the problem.
    This "APPCRASH" error is occured when I click to connect my web-cam.
    Program is downed.
      Problem Event Name: APPCRASH
      Application Name:  iexplore.exe
      Application Version:  8.0.7601.17514
      Application Timestamp: 4ce79912
      Fault Module Name:  IAT_YUV.ax
      Fault Module Version: 2.0.1.5
      Fault Module Timestamp: 470b5906
      Exception Code: c0000005
      Exception Offset: 000215bf
      OS Version: 6.1.7601.2.1.0.256.1
      Local ID: 1042
      Additional Info1: 0a9e
      Additional Info2: 0a9e372d3b4ad19135b953a78882e789
      Additional Info1: 0a9e
      Additional Info2: 0a9e372d3b4ad19135b953a78882e789
    Thanks for your Knowledge.

    Thanks for your answering.
    I downloaded it but It doesn't make any change.
    When I click 'start my web-cam', add-in program is stopped(learnt it from error pop-up) and adobe connect is shut down. I used Window.
    But if I try with Chrome, there's no error, even though it says adobe connect is not installed.
    We should solve this problem with Window. Because most of our users use it, not chrome.
    Please tell me what is the problem.

  • HT1657 I rented movies on my iPad, they all downloaded, but when I click 'play' it says 'The requested URL was not found on this server'. What does it mean and how can I restore my rented movies?

    I rented movies on my iPad, they all downloaded, but when I click 'play' it says 'The requested URL was not found on this server'. What does it mean and how can I restore my rented movies?

    See this previous discussion:
    https://discussions.apple.com/message/16962474#16962474

  • Edit HTML FORM for Travel Request in BADI

    Hi Experts,
    I'm trying to use the BADI FITP_REQUEST_HTML_FORM_BADIDEF to edit the HTML form for travel request.
    I need to add and hide fields in tables, but I don't need to create new tables in the form.
    The example is like the following:
      CALL METHOD co_dd_document->add_table
        EXPORTING
          no_of_columns = 2
          width         = '350'
          border        = '0'
        IMPORTING
          table         = lo_estc_table.
    set estc columns
      CALL METHOD lo_estc_table->add_column
        EXPORTING
          width  = '150'
        IMPORTING
          column = lo_col1.
      MOVE text-t04 TO lv_text.
      CALL METHOD lo_col1->add_text
        EXPORTING
          text = lv_text.
    We don't need to create new tables, we need to add fields in an existing table of the form.
    Somebody knows how can I do that?
    I hope you can help me.
    Thanks in advance.
    Oscar.

    work around!

  • MSS UCF_AcroForm error displayed when trying to display form in PCR

    I receive a pop-up UCF_AcroForm error when trying to display a PCR form. I believe it is a configuration problem. I wonder if anyone has ever received this type of error before, and if yes, how was it solved. Thank you.
    Edited by: Emmanuel Filosi on May 9, 2008 5:41 PM

    I have found a way to get rid of this by configuring my ADS Service (thanks to my colleague N.Pothuraj)
    Creating an ADS Service:
    ========================
    1) Add the following java settings for the server in the offline config tool
    "Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitialize". Restart the server after the settings
    2) create the ADS User in the R/3 system.
    3) create the destination of type "HTTP connection to External Server"service between R/3 and the ADS user.
    4) Define the destination service under destinations>HTTP>FP_ICF_DATA
        URL:http://usai4qpt.wdf.sap.corp:50077
        User: ADSUser ( ADS_AGENT1 in my case)
        pwd: initial ( in my case)
    This destination service is to establish the connection between R/3 and WebDynpro J2EE server
    5) Active the webservice clients ( establish connection between ADS server and the WebDynpro J2EE server.  This is the case only when the WebDynpro J2EE server and the ADS server are different, other use teh default URL service ).
    com.sap.tc.webdynpro.adsproxy.AdsProxy*ConfigPort_Document is the service, under custom type user the below mentioned URL http://pwdf3092.wdf.sap.corp:50090 /AdobeDocumentServices/Config?style=rpc  ( Remote ADS server )
    username: adsuser2 (Login for the remote ADS server)
    pwd:adobeads123    (Password for the remote ADS server)

  • Encountered error og-00609 when button click to display chart

    hi
    this application uses forms 6i client server environment, graph control is being used with og.interept libray,
    passing parameters run times thru forms to charts.
    issue is that, system is doing uncertain behavior sometimes it shows graph smoothly but when constantly click at button it shows "OG-00609: internal pl/sql execution error"
    when i close graph server and run form again, and click at button to shows charts it works properly untill shows above error again.
    below is the code is being used to run charts.
    begin
    declare
    pl_id ParamList;
    query0 varchar2(256);
    begin
    query0 := 'select deptno, sum(sal) from emp where deptno in( '||:dept1||','||:dept2||') group by deptno;';
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List(pl_id);
    END IF;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'dept1',text_PARAMETER,:dept1);
    Add_Parameter(pl_id,'dept2',text_PARAMETER,:dept2);
    if :ch_type = 'pie' then
    og.interpret('e:\mas\emp2.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp2.ogd','g1');
    elsif :ch_type = 'bar' then
    og.interpret('e:\mas\emp3.ogd','g1',query0,true,pl_id);
    og.close('e:\mas\emp3.ogd','g1');
    end if;
    END;
    end;
    thanks
    i'd be appreciated on early reply.
    ali

    Metalink Note: 1078734.6
    Problem Description:
    ====================
    You are integrating forms and graphics. You are using the og.interpret which comes with the og.pll, to update a chart.
    You are using:
    OG.INTERPRET('graph.ogd', 'chart', 'DO_UPDATE;', TRUE, pl_id);
    You get the following error during runtime.
    OG-00609 INTERNAL PL/SQL EXECUTION ERROR
    Problem Explanation:
    ====================
    1.The procedure(Do_Update) that you are referencing does not exist in the graph(.ogd file).
    2. There is a bug if you are trying to specify .ogr as extension in
    your graph name or no extension.
    Solution Description:
    =====================
    1. Make sure that the name of the procedure that you are using in the
    OG.INTERPRET, exists in the graph file. DO_UPDATE is not a
    built-in procedure.
    2. The name of the graph should have the .ogd extension only. If you
    give a .ogr extension or no extension, it would give you an error.
    .

  • Error in UWL when launching the corresponding workitem using webgui

    Hi Folks,
    I am trying to configure the UWL in EP6.0 almost everything is worked but at the last when i click on the work item in the UWL iview, it has to open the corresponding transaction in the R/3 webgui, instead of that it is giving the error as "  <b>Transaction *SWK1 is unknown "</b> if anybody of come across with this type of error, please put a solution here. It is little bit Urgent.
    Thanks & Regards,
    Sireesha.

    Hi,
      Have u checked the same in the SAP GUI? If its working fine there, then there will not b any problem in Portal.Moreover check the configuration of UWL whether it is connected with the R/3 correctly.
    Regards,
    Sivagami

  • Why am i getting error 150;30 when i click on edit

    Why am i getting error code 150:30 when I click on edit in Photoshop Elements 8. Says my licencing has stopped working.

    Exactly, and if using IE the error code doesn't appear and the media with play straight away, so it does seem to be directly related to Firefox...

  • SCC gives, unknown error has occurred when we click the Agentry app in SCC.

    Hello Experts,
    I am working on SAP Work Manager-60 with SMP-2.3.3.0.
    Some times I require to check the active users for this app. in SCC but when I click this app, SCC gives me an error as below.
    Error :-  An Unknown server error has occurred, Please check log files.
    Error Log :- Gives Null pointer exception while trying to read getLastCommunication date and time.
    Please help me If any body has already faced this issue or knows the solution.
    PFA logs and errors for the same.
    Thanks,
    Sudhir.

    Hi Shiv,
    Thank you so much for the quick reply.
    It does not create any issue to users but some times we need to kill/disconnect the user session(some times WPF client shows "Already Logged in else where" ) for which we want to resolve this error.
    I get this error only when any user does a transmit other than that It does not give any error.
    In our case background sync is active So at any point of time at least one user will be connected with the server.
    Please help me If you know any other way to disconnect the user from SCC.
    Thanks,
    Sudhir.

  • My iCal keeps giving me an error message. When I click ok it crashes the program. Ideas?

    It says "The server did not recognize your user name or password for account “US Holidays.” Make sure you enter them correctly." and also "The server did not recognize your user name or password for account “[email protected]” Make sure you enter them correctly"
    When I click ok it crashes the whole thing. How can I fix this sync problem??

    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Security error in Planning when accessing a data form

    Hi,
    I have a question regarding dimension level security and user access.
    We have a user who has been assigned a data form but still he is not able to access it. There is dimension level security applied to each user. When he tries to access the form it throws an error –
    “Security and/or filtering has resulted in a required dimension not being represented on this data form”.
    How do you know which dimension is it??? Is there any other way other than the manual method of going into each dimension and checking it?
    Please let me know your ideas.
    Thank you so much in advance.
    ~ Adella

    I am not sure of any other way apart from Alp's Suggestion of cross checking security export or play with USER_ID and OBJECT_ID in HSP_Access_Control Table or take a LCM export of just security and have a look at users.xml.
    Cheers..!!!

  • SOFFICEINTEGRATION143 Error in ISR when trying opening adobe form layout

    Hi,
    I'm running into SOFFICEINTEGRATION143 error when trying to open any adobe form layout in the ISR secenario definition. Can anyone let me know why I'm getting this error and what the solution is?
    FYI, I'm using SAP gui version 640 Final Release, File Version 6404.4.14.2987, build 781208, Patch level 14
    I do have Adobe LifeCycle Designer 7.1, Reader 8 and MSOffice 2002.
    Thanks in advance.
    Giri.

    Hi, Giri. Did you solve your problem?
    I think I m having similar problem. I installed Sap Gui 7.1, SAP interactive form and Adobe LiveCycle Designer ES.
    I was able to open abode form layout in the transaction SFP. However, after I upgraded my Adobe to 7.0.9. (previous version is 7.x.x). I get the error SOFFICEINTEGRATION143 when try open again.
    I uninstalled Adobe 7.0.9 and installed Adobe 8.1 but it still get the same error.
    Can anyone help?
    Thanks in advance.

  • IE crashes to desktop when attempting to display forms on OAS

    This is on a server running Windows 2003 server SP2:
    - Install OAS 10g R2 (Infrastructure + Forms/Reports)
    - From the OAS server, start IE and enter the URL to call the formservlet to display the test.fmx form
    - IE crashes to desktop
    - Attempting to access the Jinitiator console via Control panel --> Jinitiator does not work
    - Attempting to uninstall Jinitiator via Control panel --> Add/Remove programs does not work
    - Only affects IE on the OAS server. From other machines, using IE to access the formservlet to display the test.fmx form works perfectly
    We have come across this problem once before on another server, which we solved by adding the Jinitator x.x.x\bin folder to the PATH environment variable. However, this time, this solution does not work.
    Any clues?
    Thanks
    Edited by: user577087 on Nov 4, 2008 2:02 AM

    Thanks for the advice BGrant, we appreciate the replies.
    We managed to get Jinitiator working thanks to an email from Rolf Weilenmann and thought we would share it.
    Apparently Windows 2003 server SP2 Data Execution Prevention (DEP) thinks java is a dangerous piece of code and blocks execution which is why:
    - IE closes immediately upon trying to run the Jinitiator plug in (with no error message and nothing in the server logs either)
    - Jinitiator console cannot be started
    - Jinitiator cannot be uninstalled using Add/Remove programs
    The solution sent by Rolf which we used and found working was to exclude java.exe from the Data Execution Prevention:
    1. Go into Control Panel --> System --> Advanced --> Performance --> Settings --> Data Execution Prevention.
    2. Select "Turn on DEP for all programs and services except those I select".
    3. Browse to \program files\oracle\jinitiator 1.3.1.28\bin (or whichever version of Jinitiator is installed) and add java.exe to the list.
    If more than 1 version of Jinitiator is installed, pick the one that is used by the Forms server (Check <oraclehome>forms\server\formsweb.cfg for parameters prefixed by jinit*)

  • NullReferenceException when double clicking on form while report generating

    We have an Plugin application that allows a user to generate a Crystal report based on the selected row in a data grid.  If the report is large and takes a few moments.to load on a new tab, and the user double clicks on the grid an exception below is thrown (causing the application to close):
    System.NullReferenceException: Object reference not set to an instance of an object.
       at CrystalDecisions.Windows.Forms.PageControl.TabTo(Int32 sectionIndex, Int32 objectIndex, Boolean scroll)
       at CrystalDecisions.Windows.Forms.PageControl.OnMouseDown(MouseEventArgs e)
       at System.Windows.Forms.Control.WmMouseDown(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.UserControl.WndProc(Message& m)
       at CrystalDecisions.Windows.Forms.PageControl.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Is there any way (or place) I can trap this error and handle it (meaning swallowing/ ignore it).  I have tried using the CrystalReportViewer (crv) Error event and various other crv events but to no avail.  I also tried disabling the grid while the report is running but the double-click still causes the exception.  Any suggestions are appreciated.
    Thanks!
    Mike

    Figured out a work-around for this.  What I did in the form that hosts the CrystalReportsViewer was disabled the CrystalReportsViewer after it's report source is set and visible is set to true.  I then enable the CrystalReportsViewer right before it's focus is set (which is set in a timer tick event).  No more exceptions!  Weird but functional!
    Mike

  • HT2638 This is not working for me, it brings me back to the same error message and when I click on it the screen disapears, any help

    need help

    There are 9 different versions of iPhoto and they run on seven different versions of the Operating System. The tricks and tips for dealing with issues vary from version to version and OS to OS. So before anyone can help, they need information to work with. Basic stuff:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. What were you doing when the problem arose?
    - Did it ever work properly?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    Anything else you can think of that might allow someone else to understand your issue.
    With this kind of information somebody can develop a starting point for troubleshooting the issue.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. More information means you get better assistance. (And no, more exclamation marks do not get help faster or make your issue seem urgent. They just make it seem like you have a stuck key )

Maybe you are looking for

  • Database link in forms 6i stopped working in database 10g release 2.

    Hi, We have Forms 6i with all patches added. We were able to recompile the form that contains database link in database 10g release 1 environment. Recently we migrated to database 10g release 2. We still can run the form (previously compiled in datab

  • WiFi on iPad 2 randomly goes out, but WiFi on other Apple devices is fine???

    I have an iPhone 5 and an iPad 2. Randomly, the wifi on my iPad will just disappear. I know it isn't a problem with the wifi shutting on - because it is still working completely fine on my iPhone. If I leave it for a few hours it usually turns back o

  • IDoc packing with PI 7.1 EHP1

    Hello, how does IDoc packing (EHP1) work within a IDoc sender channel? Has anybody already tried it? Can I simply recieve "collected" IDoc from ECC (e.g. invoic IDocs) which are not splitted by IDoc adapter? So that I do not have to use a collect BPM

  • Camera issue with Lollipop

    Hi! I can't take portrait pictures after the Lollipop update. Solution?

  • Backing up files/folders

    I know this is going to sound like I'm a bit dim, but I just want to check first. I have all my photos on an external drive, which is backed up by time machine to another external drive. Now I want to make yet another backup of the photos to a third