RWCONVERTER giving cancelled message

I am trying to create a new form which wil compile forms and reports in the mid tier and generate the fmx, plx and reps. I created a form with multiple record blocks and have the following code in WBP trigger.
declare
staging_folder_linux varchar2(1000) := '/oastest/staging/';
v_filename varchar2(100);
v_connect_String varchar2(100);
v_module_type varchar2(10);
v_script_to_execute varchar2(25);
v_filename_no_ext varchar2(100);
v_file_ext varchar2(50);
begin
V_Connect_String := Upper(Get_Application_Property(Username))||'/'||Upper(Get_Application_Property(Password))||'@'||Get_Application_Property(Connect_String);
First_record;
loop
v_filename := substr(:file_path,instr(:file_path,'/',-1)+1);
v_file_ext := substr(v_filename,instr(v_filename,'.',-1)+1);
v_filename_no_ext := substr(v_filename,1,instr(v_filename,'.',-1)-1);
if lower(v_file_ext) in('fmb','pll') Then
v_script_to_execute := 'compile_one_fmb.sh';
Elsif lower(v_file_ext) = 'rdf' Then
v_script_to_execute := 'comp_one_rdf.sh';
End if;
if v_file_ext = 'fmb' then
v_module_type := 'form';
Elsif v_file_ext = 'pll' then
v_module_type := 'library';
End if;
if v_script_to_execute = 'compile_one_fmb.sh' then
host(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string||' '||v_module_type||' > '||staging_folder_linux||v_filename_no_ext||'.log');
Elsif v_script_to_execute = 'comp_one_rdf.sh' then
message(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string);pause;
host(staging_folder_linux||v_script_to_execute||' ' ||staging_folder_linux||v_filename||' '||v_connect_string||' '||staging_folder_linux||v_filename_no_ext||' > '||staging_folder_linux||v_filename_no_ext||'.log');
End if;
exit when :system.last_record = 'TRUE';
Next_record;
End Loop;
End;
Form consists of three records
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/oastest/staging/abc1.fmb
/oastest/staging/abc2.pll
/oastest/staging/abc3.rdf
Shell scripts
~~~~~~~~~
compile_one_fmb.sh
~~~~~~~~~~~~~~~~~~
export LD_LIBRARY_PATH=/u01/app/oracle/product/infra/FormsReports/lib:/u01/apps/lib_src:/u01/apps/lib:/u01/apps/fmx:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/server:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/native_threads:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386/client:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/../lib/i386:/usr/lib
export FORMS_PATH=/u01/apps/lib:/u01/apps/fmx:/u01/apps/lib_src:/u01/apps/rdf:/u01/app/oracle/product/infra/FormsReports/forms
frmcmp_batch userid=$2 module=$1 module_type=$3 compile_all=yes
comp_one_rdf.sh
~~~~~~~~~~~~~~~
export LD_LIBRARY_PATH=/u01/app/oracle/product/infra/FormsReports/lib:/u01/apps/lib_src:/u01/apps/lib:/u01/apps/fmx:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/server:/u01/app/oracle/product/infra/FormsReports/jdk/jre/lib/i386/native_threads:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386/client:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/lib/i386:/tmp/OraInstall2006-08-04_12-39-45PM/jre/1.4.2/../lib/i386:/usr/lib
export FORMS_PATH=/u01/apps/lib:/u01/apps/fmx:/u01/apps/lib_src:/u01/apps/rdf:/u01/app/oracle/product/infra/FormsReports/forms
rwconverter.sh userid=$2 source=$1 stype=rdffile dtype=repfile batch=yes overwrite=yes
When I run the form i am able to generate fmx and plx. But on Rep i am getting this information on log file.
abc3.log
~~~~~~~
Report Builder: Release 10.1.2.0.2 - Production on Thu Nov 2 12:54:07 2006
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Conversion of '/oastest/staging/adm_error_logs.rdf' cancelled.
I am stuck here. any help appreciated.
Thanks
Muthu

Hi Prathap,
There is some problem in the definition of the Query.
Please click on the check button before saving the query, it gives where the problem exists in it.
Hope it helps.
Veeerendra.

Similar Messages

  • USER Cancelled message while navigating report.

    Post Author: sreeraj_vinod
    CA Forum: General
    One of our clients are facing a peculiar problem. We have a VB 6 application with crystal report 9 reports assocaited to it. When the user generates a report which has a large amount of data, and he tries to navigate to the next page, he gets and message "User Cancelled". If it is sent to printer directly, it says "Error printing".  This report has 3 small sub reports embeded into it.
    Request you to let us know, what could be casing this issue.
    Thanks in advance.
    Sreeraj

    Post Author: ygregersen
    CA Forum: General
    It's possible that one of the items in your scenario has a time out limit. When it goes beyond that limit the error message defaults to a 'user canceled' message. This happens in Access all the time because the queries in there default to 60 seconds - your scenario seems to be a similar issue. Maybe look for something about a time out limit.

  • Cancel message is not shown in the page

    Hi All,
    This is my code for cancel in controller:
    if ( "Cancel".equals(pageContext.getParameter(EVENT_PARAM)) ) {
    am.invokeMethod("Cancel");
    MessageToken[] token = {};
    OAException confirmMessage =
    new OAException("MTH", "MTH_SETUP_CANCEL", token,
    OAException.INFORMATION, null);
    pageContext.putDialogMessage(confirmMessage);
    pageContext.setForwardURLToCurrentPage( null, false, OAWebBeanConstants.ADD_BREAD_CRUMB_NO, OAWebBeanConstants.IGNORE_MESSAGES);
    this is cancel code in AM
    public void Cancel() {
    getTransaction().rollback();
    but when I am clicking on cancel button ,message is not dispalyed.
    Is there something wrong in the code ?How can I get the cancel message in the page.

    PutDialog would redirect the page automatically. You dont need setForwardURLToCurrentPage().
    --Prasanna                                                                                                                                                                                                                       

  • I have a 16GB 3GS phone. For the last few days, my phone is constantly giving me message that the accessory attached to my phone is not optimized for this iphone. You may experience noise or poor communication, while there is no acessory attached to it.

    I have a 16GB 3GS phone since about20 months now. For the last few days, my phone is constantly giving me message that the accessory attached to my phone is not optimized for this iphone. You may experience noise or poor communication, while there is no acessory attached to it. I always used standard headphones and charging cable. Now when i recall, it started at one of the sync sessions with my itunes. I have turned my phone off and aon again and again but the message keeps coming every one or two minutes.I have also started loosing voicce on different applications like youtube etc. Also the ringer volume up and down key does not show me the small boxes increasing or decreasing on screen. The phone is playing crazy. Can someone help please
    Thanks
    Zia

    It helped earlier but it has come back again. I don't know what to do. I tried what you said earlier but this time even this is not working either. And quite intrestingly my phone won't turn off. I turn it off, it goes off and then restarts on its own and then keep giving the same message again and again.
    Could it be a charging cable, is there any chance that the cable which was working fine one day could turn to be "incompatible" with iphone the other day????????
    Please help

  • FM SSF_CLOSE failing and giving error message while printing a smartform

    Hi,
    for language spanish the smartform is not getting printed for output type SG11 but for english it is getting printed? What could be the reason? I debugged and found that SSF_CLOSE is failing and giving error message.
    Thanks and regards,
    AP.

    Hi Aparajita,
    for changing from one languages to another translations in SE63 is to be done, either search on SCN for using SE63 , or atleast see these wiki help .
    Transaction SE63 - Translation Tools for Translators (BC-DOC-TTL) - SAP Library
    Transaction SE63 (SAP Library - Translation Tools for Translators (BC-DOC-TTL))

  • Giving error message when saving the Query

    Hello,
    I have added a new calculated key figure to the structure in a Query but when I try to save the Query it is giving error message is below.
    Error Message:
    u201CThis internal error is an intended termination resulting from a program state that is not permitted.
    Procedure
    Analyze the situation and inform SAP.
    If the termination occurred when you executed a query or Web template, or during interaction in the planning modeler, and if you can reproduce this termination, record a trace (transaction RSTT).
    For more information about recording a trace, see the documentation for the trace tool environment as well as SAP Note 899572u201D.
    Could any one please suggest me how can I over come with this problem.
    Thanks
    Prathap.

    Hi Prathap,
    There is some problem in the definition of the Query.
    Please click on the check button before saving the query, it gives where the problem exists in it.
    Hope it helps.
    Veeerendra.

  • ABAP program to Cancel messages in Scheduled/Recorded status?

    Hi,
    Thanks for reading my post...
    Can anyone tell me whether there is an ABAP program available (or a variant) that will Cancel messages that are in Scheduled (or Recorded) status?
    Messages to be sent from ECC to PI were not sent and are left in Recorded status in ECC.  I cannot find the documentation to explain what this status is, but I'm presuming that it's similar to the Scheduled status in PI (though there's not much documentation about that either - for example, what's the difference between the 'green flag' Scheduled and the 'green flag' Released for Processing (WS)? ).  {Note to SAP: Could we have a state transition diagram please? Simple, concise and effective.}
    Anyway, the 'tick-pencil' button in SXMB_MONI (aka. CTRL-F8) can be used to cancel the messages in Scheduled/Recorded status.  But I'm looking for an ABAP program to do this.  The documentation seems to 'suggest' that this button might do the same thing as the ABAP program RSXMB_CANCEL_MESSAGES.  However, this ABAP program does not cancel messages in Scheduled status (only the messages in Error), whereas the SXMB_MONI CTRL-F8 'tick-pencil' will cancel messages in Scheduled status if they are selected.
    Is there another ABAP program available to cancel messages in Scheduled status - or is it possible to create a variant of RSXMB_CANCEL_MESSAGES that will do this?  (I'm not an ABAP programmer and I've never created a variant, but looking at the code, it seemed it might be possible to get the program to read messages in Scheduled status rather than Error status.)
    Many thanks for any help.
    Mark

    Messages are in scheduled status because they still in the queue in either 'READY' status or 'EXECUTING' status (see SMQ1/SMQ2). You don't want to automatically cancel messages that are in scheduled status because that means you are also going to cancel good messages. However, in some cases, you may want to cancel such messages especially when the message in the queue has been in 'Executing' status for long time (happens in case of long running mapping program or dropped connection etc). Such cases warrant manual intervention and hence the behavior as noted by you.
    If you can tell me why exactly you want to cancel messages that are in scheduled status, I can help you more.
    Thanks
    KK

  • PI 7.1 RWB - find user cancelled message

    hi,
    simple question.
    Where can i find the username of a cancelled message in the RWB (adapter engine monitor) ?
    I can´t find the username in the audit log, message log or somewhere else.
    The audit log is only showing the entry: Admin action: The message was successfully set to status failed.
    I ´ve searched the nwa logs without success.
    any ideas ?

    Therefore please apply the patches recommended on the note below.
    > 1401840 - User name in Audit Log entries for administrative actions
    "Symptom
    When a user performs administrative actions on XI messages of the
    Adapter Engine, the user name is not included in the Audit Log entries.
    It's afterwards impossible to determine the user who canceled or retried
    an XI message."

  • HT1483 my iPod is not responding. It is giving a message low battery, please wait and is displaying the apple support link

    my ipod is not responding. It is giving a message pleases wait low battery and showing me a link to apple support 

    Hey,
    Welcome to Apple Support Communities.
    Well leave it for few minutes then try plugging it to the charger, if that does not work. Try restoring it from revious backup. This will change the software and hopefully earase the error. If that did not fix it i guess you need to take it to the Store for a check.
    I really hope this helps you. Let me know if it does. If not feel free to give me a shout. Best of luck.

  • Elements 7 giving error message

    Elements 7 is giving  an message that it has stop working and is shuting down. how can I fix this.

    I had the same error. Restarting the iphone fixed it.

  • "Submit Canceled" message appearing after clicking e-mail buttons

    On the forms I've been creating, a "Submit Canceled" message window has been appearing for users whenever they click the e-mail button on the form, although the functionality of the e-mail button works fine and does what it is supposed to do (opens the e-mail window with the proper addresses, subject, and text, no problem).
    Anyone know how to get rid of this "submit canceled" message?  A sample of one of my documents is here:
    https://acrobat.com/#d=40jQ4MZutn-BPLswgv37PA
    I'm using Acrobat 9.3, LS 8.2, and e-mail client is MS Outlook 2007.
    Thanks!

    Try this corrected file..
    https://acrobat.com/#d=NYCyBXSnCrbUHu*4PC2ApA
    I changed the control type of the button to Regular and moved the code to Click event.
    Thanks
    Srini

  • MRP giving error message

    MRP giving error message
    1) No rows in Item Master
    2) Bill Level generation failed
    However Item master is well defined.
    need help urgently.
    Thanx in advance.
    Deven

    Dear Dinesh,
    I allready checkd my item its active & inventory item. What do u mean by inactive_ind flag not set up right, can u giv me some idea on that setup.
    by the way i allready raise SR for this. & oracle had suggestd me a patch.

  • Acrobat XI returns a "Scan Cancelled" message

    I've read an older post about Acrobat X doing it; I have a trial copy of AA XI and I can't scan with a Samsung SCX-4521 scanner; other programs make use of the scanner without any issue.
    Any idea why and how can it be fixed?   I've installed the latest update and still does not work.
    Thanks.

    The answer is YES.
    To summarize: operating System Win 7/64
    Scanner: SAMSUNG SCX-4521F, current driver installed
    Adobe Acrobat XI trial
    TWAIN driver does not work, returns a "Scanning cancelled" message, every time
    WIA driver works
    TWAIN works with most other programs I have that have the ability to acquire images from a scanner
    Use to work with Win 7/64 before I reinstalled and updated it.
    I don't know more than that.
    Thank you.

  • How to cancel messages in SXMB_MONI with status "No receive found"

    Dear All,
    I need to cancel message with error status as mentioned in captioned subject.
    Can you please guide me how to do it?
    Regards,
    Saras Jain

    One more thing to check.....confirm if there is any background job scheduled to cnacel the message once it goes into error....if it is cancelled in this manner...if so you wont be allowed to cancel the (already cancelled) message manually
    Regards,
    Abhishek.

  • V51VP - item was not found - process cancelled, Message no. HUGENERAL 056

    Dear Experts,
    When i am going to delete the handling units, its throws the error
    V51VP - item was not found - process cancelled
    Message no. HUGENERAL 056
    I am not able to delete the delivery, expecting the earliest solution,
    checked the same in SDN also, Not available,
    Expecting earliest reply,
    Thanks and Best Regards,
    Muralidharan S

    Thanks, user go head for billing without reverse the delivery

Maybe you are looking for