In iReceivables ARREGTNA.htm is missing

Hi
We are implementing iReceivvabels in 11.5.10.2 and in the AR top the file ARREGTNA.htm missing so that we cant call the self Registration form.
Regards
Suresh P

hsawwan wrote:
schavali wrote:
Pl see if MOS Doc 1238214.1 (Where is an Example of a Static Page for iReceivables Self Registration Setup?) can help
Already referenced above.
Thanks,
HusseinThat's because you went back and edited your response above :)
Srini

Similar Messages

  • BL.htm file missing

    Windows7 64-bit
    Dreamweaver CS5 Version 11.0 Build 4993
    All was working fine until today, when I got "Unable to find file BL.htm in Configuration/Floaters directory. The floater will not be shown."
    After trying to find the missing BL.htm file, I uninstalled DW CS5 and reinstalled it and get the same error message.
    The program is updated.
    How do I fix this?

    Hi John,
    As you can probably tell, I am a real 'tyro' with DW.
    I did Google the error message first. That is how I was directed to your #2 suggestion, and got me to post the question in this forum.
    I read the forum post you suggested before I posted my question, and saw that it didn't apply to my set of circumstances. I am using Win7 64-bit and the 'fix' offered there didn't work.
    However, your first suggestion gave me enough info to steer me right to a 'fix'!
    I hit Window> Workspace layout> Reset and got the same error message when I restarted DW. 
    Then I hit Window> Workspace layout> Coder and got EXACTLY what I wanted for the layout, and when I closed DW and then restarted it, ...NO ERROR MESSAGE!  woo-hoo!
    Thank you for your time, your help and your sage advice.
    And now, back to building a website! 

  • Application hang for long time (unable to load)

    hi and a very good day to all..
    i am a new user of J2ME and i am currently using Sun Wireless Toolkit to run a sample program. But, there are some error occur when i open it from the Open Project in Sun Wireless Toolkit. Once i click the launch button on the emulator, it will show the graphic but with a statement 'Please Wait'. it seems like my application is going happen to hang for quite a long time (i even can't open it at all). it happen every time i open my project and i unable to load my program successfully. i want 2 ask, is it because of teh coding? or my pc? or the Sun Wireless Toolkit itself? i never change/edit the coding, since this the sample application of Mobile Compass i downloading from the internet.
    there are bundle of code in my application (single application)..but the error 'Please Wait' basically come from 1 of the coding. i'll show it below:
    **THE CODE**
    package org.qcontinuum.compass;
    import javax.microedition.lcdui.*;
    import java.util.*;
    abstract public class Progress extends Form implements CommandListener, Runnable {
    private Displayable mParent;
    private Command mCancelCommand;
    private Thread mThread;
    // private Timer mTimer;
    public Progress(String title, Displayable parent) {
    super(title);
    mParent = parent;
    append(new StringItem(null, "Please wait...\n"));
    addCommand(mCancelCommand = new Command("Cancel", Command.CANCEL, 0));
    setCommandListener(this);
    mThread = new Thread(this);
    public void start() {
    mThread.start();
    abstract public void run();
    public void commandAction(Command c, Displayable d) {
    if (c == mCancelCommand) {
    Compass.display(mParent);
    p/s: is it the above error related to java.lang.NullPointerException? this is because, with unexpected situation, suddenly the compass program able to download successfully (only sometime), but still it give some error like below, and i still can select the Time Zone for my destination chosen from the given map.
    java.lang.NullPointerException
         at java.io.DataInputStream.read(+4)
         at java.io.DataInputStream.readUnsignedShort(+4)
         at java.io.DataInputStream.readUTF(+6)
         at java.io.DataInputStream.readUTF(+4)
         at org.qcontinuum.compass.TimeZone.load(+6)
         at org.qcontinuum.compass.TimeZone.<init>(+9)
         at org.qcontinuum.compass.TimeZone.getZones(+36)
         at org.qcontinuum.compass.LocationTimeZone.<init>(+89)
         at org.qcontinuum.compass.LocationMap.locationSelected(+22)
         at org.qcontinuum.compass.MapCanvas.moveImage(+282)
         at org.qcontinuum.compass.MapCanvas.keyPressed(+22)
         at javax.microedition.lcdui.Canvas.callKeyPressed(+19)
         at javax.microedition.lcdui.Display$DisplayAccessor.keyEvent(+198)
         at javax.microedition.lcdui.Display$DisplayManagerImpl.keyEvent(+11)
         at com.sun.midp.lcdui.DefaultEventHandler.keyEvent(+127)
         at com.sun.midp.lcdui.AutomatedEventHandler.keyEvent(+210)
         at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+114)
         at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.run(+57)
    can someone help me on this. i really need the answer for this solution. i am still new and in the process of leaning. Thanks a lot and hope all of u can help me. May God bless u. The reference for the above sample program is at http://http://qcontinuum.org/compass/index.htm
    Regards,
    Miss Iera

    Hi,
    Do you have variable replaced by another query? If that is case, you will get performance issue, when the prequery is runnig when call var screen.
    Do you have variable replaced by authorization? If that is case, for the user will complicated authroization, it will take some time to fill it.
    In general, when the variable screen is calling, have you check in sm66, what is the work process doing? In RSRT->run this query with statistics, which part takes most time?

  • Oracle Spatial 10g R2 Java API

    Hi All,
    I have a JAVA tool said to be written for Oracle Spatial 10g R2 Java API which uses for example the class oracle.spatial.georaster.JGeoRaster. I have to port it to 11g R2. The tool is definitely written for an earlier version, because compilation fails on for example JGeoRaster.getProperties() method which is not present in the new API. For this new API I have a fine Javadoc documentation here:
    http://download-llnw.oracle.com/docs/html/E11829_01/
    I have searched for a similar one for 10g R2 but found only like
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14373/toc.htm
    which misses the oracle.spatial.georaster package. Is there such a package and if so, where can I find docs for it?
    thank you in advance, best regards: Balázs Bámer

    Hi Balázs,
    the GeoRaster Java API was first released with 11gR2. Your first link points to that, or this link:
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e11829/toc.htm
    your second link points to 10g Oracle Spatial Java API, which doesn't include any GeoRaster related API. your tool might have been developed based on the old INTERNAL georaster jar file, which is not supposed to be used by your java program. But if you do want the api doc, you can run javadoc or jdeveloper to find out the api from the old sdogr.jar file.
    jeffrey

  • How to send a mail in html format from a send mail workflow node ?

    Dear all,
    Do you know if it is possible to send an e-mail in HTML format (instead of RAW) from a "send mail" node in a workflow ?  ... if "yes", please, let me know.
    (I need to do that because I want to use the "href" tag to insert an hyperlink inside the e-mail)
    - I haven't found any parameter to specify the format of the e-mail.
    - Inside SCOT I tried to change the parameters for the SMTP node... without success.
    - I don't want to use a task calling the FM SO_OBJECT_SEND.
    Nicolas

    Hi Nicolas!
    Have you tried to set "Output Format" for "RAW Text" to HTM in SCOT.
    If HTM is missing in your dropdown-list, you could check out table SXCONVERT2. Copy the line with category T/format TXT, and change the format from TXT to HTM. The existing function
    SX_OBJECT_CONVERT__T.TXT does not need to be changed. Now you should be able to choose HTM in SCOT. You will probably need som HTML-tags in your text to make it look good.
    Hope this helps!
    Regards
    Geir

  • How to send a mail with HTML body from Oracle

    Hi Team,
    Can somebody guide me how to send a mail with HTML body from oracle.
    Here is the piece of code i am trying to send a mail.
    procedure SEND_MAIL is
    cursor c_1 is select * from table_name;
    l_mail_id varchar2(40);
    -- ls_mailhost VARCHAR2(64) := Mailhost;
    ls_from VARCHAR2(64) := ‘[email protected]
    ls_subject VARCHAR2(200);
    ls_to VARCHAR2(64);
    l_mail_conn UTL_SMTP.connection;
    ls_left_menu_name VARCHAR2(64);
    ll_emp_num number(8);
    begin
    for i in c_1 loop
    begin
    l_mail_conn := UTL_SMTP.OPEN_CONNECTION('IP');
    UTL_SMTP.HELO(l_mail_conn, 'IP');
    UTL_SMTP.MAIL(l_mail_conn, LS_FROM);
    UTL_SMTP.RCPT(L_mail_conn, LS_TO);
    UTL_SMTP.DATA(l_mail_conn,'From: ' ||ls_from || utl_tcp.crlf ||
    'To: ' ||ls_to || utl_tcp.crlf ||
    'Subject: ' ||ls_subject|| utl_tcp.crlf);
    UTL_SMTP.QUIT(l_mail_conn);
    exception
    when no_data_found then
    null;
    when others then
    RAISE_APPLICATION_ERROR(-20000, 'Failed to send mail due to the following error: ' || sqlerrm);
    end;
    end loop;
    end;
    Thnx

    Hi Nicolas!
    Have you tried to set "Output Format" for "RAW Text" to HTM in SCOT.
    If HTM is missing in your dropdown-list, you could check out table SXCONVERT2. Copy the line with category T/format TXT, and change the format from TXT to HTM. The existing function
    SX_OBJECT_CONVERT__T.TXT does not need to be changed. Now you should be able to choose HTM in SCOT. You will probably need som HTML-tags in your text to make it look good.
    Hope this helps!
    Regards
    Geir

  • Bookmarks manager has disappeared. How do I get it back?

    I am using Firefox 6.

    ''bookmarks manager has disappeared. How do I get it back?''
    In Firefox 4.0 and up it is now "Show All Bookmarks" (item #7)
    still in the Bookmarks (menu) with the same keyboard shortcut ("Ctrl+Shift+B")
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface (see item #7)
    * http://dmcritchie.mvps.org/firefox/keyboard.htm
    Restore missing shortcuts on menus using Windows 7 (approx item #9)
    * http://dmcritchie.mvps.org/windows-7/win7.htm
    You can make '''Firefox 6.0''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 6.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • Steps to Add stock in Warehouse bins

    Gurus,
    Please give me the transaction and  steps to add Stock in Warehouse Bins without reference to Inventory management......
    We dont user Inventory management. We only use Warehouse Management in our company. So How do I update the initial stock entry in the respective bins...Please provide me the steps....
    Thanks in Advance

    still not totally clear if you have a stand alone WM or only a decentralized WM,
    If you have decentralized Warehouse Management, all your business transactions, including inventory management of quantities, are executed in the ERP system, while all the processes required for the physical and logical goods movements run in the decentralized WMS.
    The leading ERP system communicates planned goods movements to the decentralized Warehouse Management system (WMS) through deliveries (BAPI method)
    for details look here:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/57/803c35975f0054e10000009b38f839/frameset.htm
    dont miss the the menu on the left to navigate to stock transfer ,goods receipt etc.

  • Publish Failed: Captivate 6.1, Mac OSX 10.8.5

    I am experiencing the dreaded and unhelpful "Publish Failed" error message as well. I receive the message only when I am publishing a project with a quiz; projects without quizzes publish without any issue. I am publishing only to SWF output. I am running the latest build of Captivate: 6.1.0.319. I'm running a MacBook Pro Retina on OSX 10.8.5.
    Reading through similar previous threads, I saw mention of a file named "Default.html" to be found in ../Publish/SCORM/Default/1_2.
    But the file I find residing there is named "Default_HTML5.html". I don't know if this makes any difference.
    I have deleted the plist file as well. Still no joy.
    Please, I am open to any suggestions. Thanks in advance.

    Hi There,
    Greetings from Adobe.
    Please try the below steps and see if it works for you:
    It seems that Defaul.htm is missing from your SCORM folder . I am sending you the Zip file. Please unzip it and replace it with the SCROM folder already located on Captivate installed location. Please follow the below steps:
    Download the zip file from the following link -  https://workspaces.acrobat.com/?d=pjLGDuZsiduZy79qoEcDEw
    Unzip it.
    Take the backup of the SCORM folder present at “/Applications/Adobe Captivate 6/Templates/Publish/”
    Replace the one with the unzipped folder.
    Re-launch the captivate.
    Open the captivate project which has SCORM1.2 reporting.
    Re-Publish it.
    Let me know if you still face the same issue.
    Regards,
    Mayank

  • Creating Flash Video

    Hello Everyone and thanks for your help in advance.  I am extremely new to Flash (using CS4) and want to create flash videos for display in web pages.  I have used a few of the wizards and have gotten some rough, very amateurish looking results, but at least they work.  I owuld now like to create a more professional looking product that has a nice looking player skin, a thumbnail preview that is typically included, and some sort of "Click to Play" button.  Would someone be able to point me to a tutorial of this or walk me through the basic steps?  Any help would be greatly appreciated.

    Here are a few links that might help you
    Creating skins:
    http://www.adobe.com/devnet/flash/articles/flv_tutorial_pt2.html
    http://www.adobe.com/devnet/flex/videotraining/ - check the skinning section
    Creating thumbnails:
    http://animation.about.com/od/flashanimationtutorials/ss/flashlesson24.htm - dont miss out on the page numbers. Take the complete tutorial
    Hope it helps

  • BSP iviews in BP

    Hi,
    I have installed "Business Package for Sales mySAP ERP 2004 60.1" in portal. ITS based iviews are working fine, where as the BSP iviews are not working. When I check in SE80, for the BSP application "sls_worklist", some of the pages like customers.htm, billblocked_doc.htm,dlvblocked_doc.htm,expiring_doc.htm,
    completed_doc.htm is missing.
    What should I do inorder to bring up these pages.
    There are 2 files present now. If I test "default.htm" I am getting this response,
    No task set available. Inform your system administrator.
    Where as for "pers.htm", I am able to see the personalize contents
    Regards
    Message was edited by: Rem Swa
    My mistake, looked at the wrong application

    Hello Leandro,
    Look SSO is the process to that u have to specify Credentaials only once and u can connect to backend system without giveing Credentials again.
    Now the basic Thing is that user that u have loged in portal and User in Ur Backend Should be same for SSO to Work.
    once SSO is configured properly then u can call ur BSP application's from back end without Giveing Credentials again for backend login.
    Hope this help's
    Regards.
    Soni Vinit

  • BSP Page not found

    I created a BSP application, created the SICF entry, and have been running the application for months.  All of a sudden I am getting a page cannot be found error.  It's like it can't find the initial page. 
    When I go into an application that IS working, and I look at the url, I see something like this:
    https://www.mysite.com/ss(bD1lbiZjPTEwMA==)/selection.htm?sap_client=100
    The SICF application alias is /ss, and the initial page in the BSP application is selection.htm.  This works fine.
    When I go into the application that is NOT working, this is the url:
    https://www.mysite.com/ss(bD1lbiZjPTEwMA==)/?sap_client=100
    It looks like it is not recognizing what the initial page is.  No change have been made to the application for a month, so I don't know why this started happening all of a sudden.

    We have our own extranet site that we are running these from.   The BSP application has an initial page, and the sicf was used to create an alias for the bsp application.
    One thing I noticed that i had wrong in my original message, the application that works looks like this:
    https://www.mysite.com/ss(bD1lbiZjPTEwMA==)/selection.htm?sap_client=100
    The one that doesn't work looks like this:
    https://www.mysite.com/ss?sap_client=100
    The whole "(bD1lbiZjPTEwMA==)/selection.htm" is missing.

  • Any tool or shortcut to get SQL tuning suggestion???????

    Hi I have to tune an application and need to go throught alot many SQL their PLAN and ti tune them.
    I want to know ether is there any tool online or may be from oracle to get the tuning suggestions straighytway.my oracle version is 9206
    Can i use 10g SQL tuning advisor with 9i database????
    Thanks
    Gagan

    Hi Gagan,
    Can i use 10g SQL tuning advisor with 9i databaseNo, but you can do the same thing manually, and often do a better job:
    Tune SQL with optimizer parms:
    http://www.dba-oracle.com/t_sql_optimizer_parameters.htm
    Find missing indexes:
    1 - Search for unnecessary large-table, full-table scans
    2 - Compare consistent gets to rows returned
    http://www.dba-oracle.com/art_sql_tune.htm
    Hope this helps. . . .
    Donald K. Burleson
    Oracle Press author

  • What are the steps to convert any jQuery Plugin to Apex Plugin?

    Dear Apex Experts,
    What are the steps to convert any jQuery Plugin to Apex Plugin?
    Best Regards

    you might also want to have a look at the documentation at http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/advnc_plugins.htm#HTMDB27009
    Missed this Patrick
    We (Oracle) also provide some plug-in examples at http://apex.oracle.com/plugins which you can use as a blueprint. The "Masked Text" would be a good example for you on how to wrap a jQuery plug-in as APEX plug-in.
    Never used that, So don't know that it was a jquery
    Thanks

  • Webutil with IE=native, can't get it up and running

    Hi,
    I'm impressed on the WebUtil functionality. Got it up and running smoothly using JInitiator. Great Stuff!
    My problem appears with a customer that wants me to deploy this functionality through native JVM of IE6.0.
    Did anyone of you manage to get Webutil up and running not using JInitiator but the native IE JVM??
    (When will webutilbase.htm be included in WebUtil?)
    Any help would be appreciated!!
    Kind Regards, Marc Vahsen
    =====================================================
    Details:
    I managed to:
    - create cab files for webutil.jar and jacob.jar, resulting in webutil.cab and jacob.cab
    When I try to invoke the first form that uses the webutil object group, I get errors:
    - FRM-92100 (connection to server lost)
    - Details: FRM-92040 Java class not found, javax.swing.JLabel
    Trying to analyze this with my restricted java knowledge, I see that this class is present in rt.jar, which is added to my (server) classpath in default.env.
    Should I make a cab file for this one also??
    Further analysis shows that the webutiljini.htm contains an extra "section" that calls oracle.forms.webutil.common.RegisterWebUtil.
    As the file 'webutilbase.htm' is missing in webutil_102.zip, I tried to create this htm file myself, with extra section:
    <!-- Registration applet definition (start) -->
    <APPLET CODEBASE="%codebase%"
    CODE="oracle.forms.webutil.common.RegisterWebUtil"
    WIDTH="0"
    HEIGHT="0">
    <PARAM NAME="cabbase" VALUE="webutil.cab,jacob.cab">
    <PARAM NAME="serverURL" VALUE="%serverURL%">
    <PARAM NAME="networkRetries" VALUE="%networkRetries%">
    </APPLET>
    <!-- Registration applet definition (end) -->
    This however does not work, and reduced my left options to 1: post a topic on OTN!

    Extra information:
    The code section that is unreadable in the topic description above (without the less than / greater than signs reads:
    APPLET CODEBASE="%codebase%"
    CODE="oracle.forms.webutil.common.RegisterWebUtil"
    WIDTH="0"
    HEIGHT="0"
    PARAM NAME="cabbase" VALUE="webutil.cab,jacob.cab"
    PARAM NAME="serverURL" VALUE="%serverURL%"
    PARAM NAME="networkRetries" VALUE="%networkRetries%"
    /APPLET

Maybe you are looking for

  • Sharing Music Between Users Accounts on a Single Computer

    I know that you can listen to music belonging to another user account on the same computer (as long as that user remains logged in), however, is there a way to COPY (drag and drop) music from one user account to another user account (on the same comp

  • Messages Stuck in ECC SMQ2

    Hello Experts, I have a scenario like File system to PI to SAP ECC 6.0 in Asynchronous mode. Messages are successfully processed in PI. Issue:- In Server Proxy Method, I have used the ABAP Information message statement (Message with TYPE I). When thi

  • Wireless in Italy?

    I am heading to Italy in a week or so and am bringing my iPad.  However there is no wifi in the hotel... only wired internet connection in the rooms.  Is there a way to connect my iPad to the internet still.  Should I buy a router? Or some sort of ho

  • Does Office 2007 work with CVI automation

    We've used Office with CVI with varying degrees of success over the years, typically to generate reports or to populate excel spreadsheets with measured data. Now I'm running XP SP3 and Office 2007 with CVI 2009. Office 2007 seems to be so significan

  • BBPGETVD - error:backend systems with release 700 are not supported

    Hi, When I am trying to replicate vendor data from EEC to crm 4.0 via BBPGETVD. I get the error message"backend systems with release 700 are not supported" Is anyone have Idea what is wrong? and how can fix it? Thanks, Rachel