How to establish the route where I appoint in OAMessageFileUploadBean?

Hi
I want to direct default route in OAMessageFileUploadBean.But I failed.Can help me, thanks

You need to understand the Layouts in ADF. this blog post might help you get started http://blogs.oracle.com/shay/2010/05/adf_faces_layouts_demo_-ahid.html
further you can explore it in Web user interface guide http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/toc.htm

Similar Messages

  • How to establish the connection between crm and r/3

    Hi,
    Sorry for posting this question in this forum, i did not find any CRM forums.My question is,How to establish the connection between CRM and R/3...in my office i installed standard alone CRM system,but it is not talking to R/3.
    Could any one tell me where to find adapters and plugins for this.
    Thanks in advance.
    Ajey

    Hello Ajey,
    in the case you mean the connection between R/3 and SAP CRM you should read the Best Practice Guides:
    B01: CRM Generation
    C71: CRM Connectivity
    B09: CRM Replication
    from http://help.sap.com/bp_crmv240/index.htm. There is a CRM Forum at http://www.sap.com/community/ and also at http://www.sapfans.com/.
    Regards
    Gregor

  • How to establish the ODBC connectivity for Hyperion Brio

    Hi Every One,
    Please some one let me know how to establish the ODBC connectivity for Hyperion Brio/ interactive reporting studio.?
    Thanks & Regards,
    Raj

    check out the manual
    http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/ir_user.pdf
    chapter 15
    Edited by: [email protected] on Feb 9, 2010 7:00 AM

  • How to reset your secret question, when you have forgot the answer. And how to change the email where the reset confirmation will be send towards?

    can anybody help with the question below?
    how to reset your secret question, when you have forgot the answer. And how to change the email where the reset confirmation will be send towards?

    You won't be able to change your rescue email address until you can answer your questions, if you don't have access to your current rescue account then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use steps 1 to 7 half-way down this page to update your rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • How strong is the router that is built into the iMac

    How strong is the router that is built into the iMac??
    Can you give me a internetadress??
    Thanks a lot.

    How strong is the router that is built into the iMac??
    Router do give some protection, but firewalls provide more security.
    For more security, you should look into:
    Little Snitch
    http://www.obdev.at/products/littlesnitch/index.html
    Can you give me a internetadress??
    Thanks a lot.
    Software routers do not give out internet addresses. A program called DHCP gives out internet address.   Your ISP will give your router an internet protocol address.  If you have a separate router box, it's DHCP program will dish out another Internet Protocol address to your mac.
    RObert

  • How to set the router and play the Command & Conquer using direct IP mode?

    My router is WRT54GFirmware Version: v3.03.1
    How to set the router and play the Command & Conquer using direct IP mode with other computer?

    Hi, when you say direct IP mode, what do you mean ? do you wanna play the game online or on the LAN ??
    can you give a few more details.

  • Inter company STO-how to reduce the stock where no physical stock is kept in receiving plant

    Dear All,
    I am facing one issue. Suppose if there are two plants belongs to two company codes A & B.Plant A is in TN & Plant B is in AP (both belongs to two different states). Plant B is the place where no physical stock is kept, it is a place where JJ form & other documents are given to the vehicle to move it to other state. From there it ll move to end customer.
    In plant A stock reduce-- inventory credit
                                        COGS----Debit
    In plant B stock increase=---Inventory debit
                                             GR/IR--credit
    Now my problem is in plant B no stock is kept, my client wants to reduce the inventory automatically without any manual entry (since no stock in plant B)
    Can i use MB1A to reduce the stock automatically & what would be the actual entry for that. How to offset the other account which is getting debited against inventory?.
    Regards
    Subbu.

    Hi,
       It seems to be a combined scenario of third party and inter company STO scenario, where you want to send the send the stock directly to your customer. Standard SAP doesnt support the third party scenario for a vendor assigned to the plant. The standard design is well explained in the note: 1918552 - Third Party Purchase in Cross Company STO: error 06769
       If you dont want to update the stock in the receiving plant, use a consumption account assignment category (like K) in the intercompany STO, so that the stock will be directly consumed. But one question - how do you map the goods issue to the customer and the outgoing excise invoice? Could you please share the details.
    Regards,
    AKPT

  • How to minimize the incident where SOAPUI project is in hung status

    Hi
    Has anyone faced the issue where SOAP UI Project is in hung status. We are using it for BPM service invocation which points as service entries to SOAP UI during testing to get BPM service invoked. Is it the fact that unresponsive request to SOAPUI project keeps the open connection and is there a limit on the services configured in SOAP UI project. Please let me know how we can avoid these issues
    Thanks
    Anish

    Hi
    You should see that the database time should be always less,
    Let the ABAP processing time is little more
    so first fetch all the required data for all dates from the database table  into an internal table
    then loop that Internal table.
    and with in that ITAB loop do whatever calculations and modifications you wants to do and display as per your requirement
    Regards
    Anji

  • How to know the dir where my jar program is stored

    I write a swing editor text files.
    I make the jar of my program: Editor.jar
    Then with jsmooth (open source java wrapper) i make the exe: Editor.exe.
    The user can put the exe anywhere in a folder and use it, example:
    User have a text file on desktop and want to open it:
    User make a double click on file.txt --> Microsoft Windows Xp open my program and load the file.
    All work correctly but there is one problem.
    My program Editor.exe when is close make a Editor.properties file. I would like this file to be created in the same dir where Editor.exe is stored.
    I don't know how to do this thing. I write this code:
    public static void save(Properties propertiesFile) {     URL jarURL = (PropertiesFile.class.getClassLoader().getResource("."));          FileOutputStream out;     System.out.println("dir \n" + jarURL.getFile());          File f = new File(jarURL.getFile()+"Editor.settings");     try {          out = new FileOutputStream(f);                    propertiesFile.store(out, "Program settings");          out.close();     } catch (IOException ioe) {          ioe.printStackTrace();     }}
    This code is wrong because jarURL.getFile() is the directory where file.txt is stored but i want the dir where Editor.exe is stored.
    I try with this line of code:
    URL location = getClass().getProtectionDomain().getCodeSource().getLocation();
    i get this dir:
    /C:/Documents%20and%20Settings/Andrew/Settings%20local/Temp/temp10
    .jar
    This is a correct dir, because the program is stored ind dir
    c:\program files\editor\Editor.exe
    Anybody can help me?
    THX

    try below...
    public java.net.URL getResource(String strName)throws java.net.MalformedURLException
                String baseURL = getClass().getResource("/resources").getFile(); // ("/resources" ):- is a file /dir stored in in jar
                try{
                        baseURL = java.net.URLDecoder.decode(baseURL,"UTF-8");
                }catch(Exception e){}
                if(baseURL.startsWith("file:"))
                        baseURL = baseURL.substring(baseURL.indexOf(":")+1);
                java.io.File fBase = new java.io.File(baseURL);                    // Original URL Ref. To Jar Archive
                java.io.File jarFile = fBase.getParentFile();                    // Jar File Reference
                java.io.File rootDir = jarFile.getParentFile();                    // Root Directory which Contains Jar File
                java.io.File fileApp = new java.io.File(rootDir,strName);               // Requested File/Directory     
                if(fileApp.exists())
                    return fileApp.toURL();
                else
                    return null;
        }Timir

  • How to reset the router?

    I tryed to secure the router with the easy-link program and i want to reset the whole thing.Also if anyone know how to reset the netowrk setup from the control panel that would be great too.

    What router are you using?
    To reset your router to factory defaults, use the following procedure:
    1) Power down all computers, the router, and the modem, and unplug them from the wall.
    2) Disconnect all wires from the router.
    3) Power up the router and allow it to fully boot (1-2 minutes).
    4) Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5) Power down the router.
    6) Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7) Power up the router and allow it to fully boot (1-2 minutes).
    8) Power up the computer (if the computer has a wireless card, make sure it is off).
    9) Try to ping the router. To do this, click the "Start" button > All Programs > Accessories > Command Prompt. A black DOS box will appear. Enter the following: "ping 192.168.1.1" (no quotes), and hit the Enter key. You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out." If you see "Reply from ...", your computer has found your router.
    10) Open your browser and point it to 192.168.1.1. This will take you to your router's login page. Leave the user name blank (note: some routers have a user name of "admin" ), and in the password field, enter "admin" (with no quotes). This will take you to your router setup page. Note the version number of your firmware (usually listed near upper right corner of screen). Exit your browser.
    If you get this far without problems, try the setup disk (or setup the router manually, if you prefer), and see if you can get your router setup and working.
    If you cannot get "Reply from ..." in step 9 above, your router is dead.
    If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt. In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware. After reloading the firmware, repeat the above procedure starting with step 1.
    If you need additional help, please state your ISP, the make and model of your modem, your router's firmware version, and the results of steps 9 and 10. Also, if you get any error messages, copy them exactly and report back.
    Please let me know how things turn out for you.

  • How to find the route cause of the issue in one Z-transaction

    Hi,
    I am analysing one Z-transaction is created by one standard program RHU_HELP and the Z-transaction is  ZHOMO03.
    In that transaction one parameter field is P_BATCH.
    If parameter P_BATCH is blanks then no records showing in the output but if I give the value 0* then it gives the ALV output.
    So Itried to debug the program RHU_HELP, but there is no ALV function module REUSE_ALV_GRID_DISPLAY.
    I tried to find the final internal table where the ALV output getting displayed but not getting.
    Can anyone give the idea to find the route cause of the issue.
    Waiting for quick response.
    Best Regards,
    BDP

    Hi
    What is the output format. It is ALV output you are getting. If not ALV function module is not used.
    There migh be some class function module it might have used. Please check is the below function module
    called
    FM : SET_TABLE_FOR_FIRST_DISPLAY.
    Regards
    Thirupathy

  • How to get the program where the User exit is use

    Hi,
       Could anyone let me know how to get the program which is using the user exit
    EXIT_SAPLFMR4_002 .
    Thank you.
    Donny~

    You can do a where used on the functino module EXIT_SAPLFMR4_002 in SE37.
    In this case, you user exit is called from a function module FMRE_FI_BELEG_CHECK.  Which in my system, doesn't appear to be called directly. It could be called dynamically.
    Regards,
    RichHeilman

  • How to find the lines where messages are raised?

    Hi experts,
    I have a great difficult to find some points where a message is raised.
    In GUI interface, we can use the u201CUsed-Listu201D option and the system show us the lines where the message is raised.
    In web-client, some good SAP programmers wrote the code u201Cif 1=2 message u2026u201D after he/she input message in the message manager classes (cl_bsp_wd_message_service, cl_crm_genil_global_mess_cont, etc). So the u201CUsed-Listu201D resource manages to find those points.
    However, some bad programmers didnu2019t do that and it is almost impossible to know where the message is raised in certain situation, though I have its message class name and its number, for instance, COM_PARTNER u2013 559.
    Is there any tip about how to find a calling point?
    Regards,
    André

    This will tell you the directory that contains the running program:
    System.getProperty("user.dir")

  • How to retrieve the path where AE is installed?

    Is there any code I can use that will return a string of an absolute path where AE is installed on its host?
    Thanks,
    Laz

    I think it's:
    Folder.appPackage
    and even though the Tools Guide implies it might be MacOS-only, it does work for Windows as well. It gives you an escaped string (spaces converted to %20, etc.) of the path to the folder where the app executable is located.
    Dan

  • How to  identify the instance where the service is running through sqlplus

    Hello,
    Suppose, this is a 2 node rac and where the failover is on and load balance is off.
    I just want to know, that when during failover the service will points out to other instance.
    1) Want to know, when the service gets failover after connecting to database [i.e., sqlplus]
    2) Want to know, the instance where my service is running presently after connecting to the database. [i.e., sqlplus]
    We are using ORACLE CLUSTERWARE 11G R1 and database 11g R1.
    And also, I want to take the awr snapshot report where my servie is running at that point of time. Is there any way to find it out. Unnecessarily i don't want to generate the report for other instances as well.
    Thanks in advance,
    Thanks,
    Edited by: user13095767 on 26-Feb-2012 22:40
    Edited by: user13095767 on Feb 27, 2012 8:50 PM

    user13095767 wrote:
    Hello,
    Suppose, this is a 2 node rac and where the failover is on and load balance is off.
    I just want to know, that when during failover the service will points out to other instance.
    1) Want to know, when the service gets failover after connecting to database [i.e., sqlplus]
    2) Want to know, the instance where my service is running presently after connecting to the database. [i.e., sqlplus]
    We are using ORACLE CLUSTERWARE 11G R1 and database 11g R1.
    And also, I want to take the awr snapshot report where my servie is running at that point of time. Is there any way to find it out. Unnecessarily i don't want to generate the report for other instances as well.
    Thanks in advance,
    Thanks,
    Edited by: user13095767 on 26-Feb-2012 22:40
    please do not type the subject in upper case. please edit it.
    refer the links:-http://www.ardentperf.com/pub/schneider-services.pdf
    http://oracleinstance.blogspot.in/2010/08/transparent-application-failover-taf.html
    for understanding the concept, http://docs.oracle.com/cd/B28359_01/rac.111/b28252/configwlm.htm
    regards,

Maybe you are looking for

  • ITunes closes down, songs on iPod deleted

    Dear all I can use iTunes ok as long as my iPod is not plugged in. If I plug it in to update it, however, iTunes immediately closes down. If I close iTunes, connect the iPod, then go back in to iTunes, the same thing happens. Also, this has deleted a

  • Error messages BAPI

    Hi all, Again with the 'BAPI_GOODSMVT_CREATE'. I wat to create a error messages file, where it display me the reason why the paramenter gt_bapigm_headret in some cases is initial. How can I do it? Thanks in advance. Regards, Marisol.

  • Adobe Reader iOS SDK

    Is there an sdk for Adobe Reader iOS?

  • Using iweb on more than one computer

    If I am publishing to a folder, can that folder be on mobileme, allowing me to edit and upload (to godaddy that is hosting my site) from any computer with iweb on it? thanks in advance Joe

  • No Internet Broadband Connection Fix

    For about 3 weeks I have had intermittent problems connecting to the Internet.  My BT hub always showed 3 blue lights and my PC and laptop both showed I had good connections with the hub.  Calling BT in India didn't help much.  Then I tried unpluggin