CRM 5.1 New UI - ICWebClient Frame work

HI,
Could someone please help me for the following in CRM 5.1 new UI
1) Add a new tab (View) in One Order transaction (i.e Finance Quotation BUS2000114)
2) This new Tab (View) will have a table control which needs to read and save data in Z table.
It will be a great help if you could tell me the steps need to be followed in CRM 5.1 new UI ICWC frame work.
Thanks and Regards,
prasad

Hi Srikrishna,
Your post was in the wrong forum. I moved it to the correct one where the chance of an answer is much higher.
Hope you understand and good luck.
Best regards
Patricia
SDN Moderator

Similar Messages

  • Assign some Business roles in the CRm 7.0 i n the UI frame work.

    Hi,
    I need to assign some Business roles in the CRm 7.0 in the UI frame work.
    & how we need to assign the org to the business roles.
    Please provide any doc or any link is more appreciable.
    Thanks & Regards
    Prajith P

    Hi,
    When in the Org Structure, DOUBLE CLICK on the position so that it opens up the details screen.
    From the menu options, Select Goto>>Detail Object>>Enhanced Object Description>>Under the Info Type, Scroll down to business role, select and click on change mode. The business role assigned to that position will be displayed. Here you can assign the required role, save and go back to the org strucutre. Save again. It should be done.
    Regards
    Varun Taneja

  • OA Frame Work

    Hi.
    I am a java developer but new to OA Frame work.
    I am trying to write a new Oracle Application in JDeveloper Studio Edition 10.1.3.3.0.3 using OAF. Patch p8431482_R12_GENERIC downloaded from Oracle web site for APPS (R12)
    I am using UBUNTU OS. Development is going on UBUNTU OS.
    I could create a new OA Work space and a Project.
    Also I was able to give the .dbc file of R12.
    And also I could connect to the database.
    I got a pdf which has instructions of development and I followed that.
    But while running the project I am getting the error 'No .dbc file found' though I gave the dbc file.
    Can any one help me pls....
    Thanks in advance.

    post your question here
    OA Framework

  • Can anyone guide me in Validation Frame Work of Struts

    Hi Guys , can anyone guide me on Validation Framework, Template Framework & tiles.I.e some of the best resources which can guide me there, As I am new to STRUTS Frame work.Better dont insist on google etc engines.Just let me know the best of the best which U feel.
    Thanx for the help in advance,
    Venu.

    Hi,
    See if the following are of use to you:
    http://struts.apache.org/userGuide/dev_validator.html
    http://www.reumann.net/do/struts/lesson1

  • Parsley Frame Work......Help me Out Plzzz.....

    Hi all,
            I am new for parsly frame work , and i want to learn this frame work as soon as possible , can any one please give me references book links or any video tutorial sites with small examples....
    thanks
    -Balu

    Here
    <http://joelhooks.com/2009/07/14/inversion-of-control-and-dependency-injection-with-flex-us ing-the-parsley-application-framework-part-2/>is
    an exemple made with parsley framework, but I'm sure if you google for
    parsley exemples you will find more of them.

  • Error while creating Frame work Purchase order

    Hi Gurus,
    We are trying to implement Frame work order process with following configurations.
    1)Item cat  B for acc assingment Y
    2)Allow  item catg B with acc *** K and Y.(How to config this in SPRO)
    So when i am creating a PO adopted through Purchase Req (account ***  K and item cat B) i am getting error message "Pricing Error :Mandatory condition NAVS is Missing".So how do i configure this pricing process.
    Also when i am creating a Frame work order do i need to select the document type both in PO and PR as frame work order or NB order type will work with these config of Item cat B and acc *** Y?
    When i am creating a PR or PO with doc type frame work order the order unit is automatically populating as "AU" is this something std or do i have to do anything in configuration?
    When i created a PO with ref to PR aith account *** K into the PO and add the item category B the charging information was not maintained so how to maintian this?
    How to maintain the accounting info from PR?
    Also if there is a complete process link releated to config of frame work order that will be great.
    Thanks in Advance.

    Hi
    We are trying to implement Frame work order process with following configurations.
    Item cat B for acc assingment Y
    Create new acct assignment category in IMG -MM - Purchasing -Account Assignment - Maintain Account Assignment Categories (If you are sure of fields to be used then you can directly create Y, if not then copy existing category say K to new one and choose required fields)
    Allow item catg B with acc *** K and Y.(How to config this in SPRO)
    In Purchasing - account assignment - Define Combination of Item Categories/Account Assignment Categories - set combination for Y and B.
    Hope your documement types (PO & PR) allows item category B.
    So when i am creating a PO adopted through Purchase Req (account *** K and item cat B) i am getting error message "Pricing Error :Mandatory condition NAVS is Missing".So how do i configure this pricing process.
    Check the pricing procedure in IMG - Purchasing - Conditions - Define Price Determination Process - Define Calculation Schema - Check for calculation schema - NAVS has been maintained.
    Also when i am creating a Frame work order do i need to select the document type both in PO and PR as frame work order or NB order type will work with these config of Item cat B and acc *** Y?
    You need to choose document types while creating purchase transactions. If that document type doesnt support item category B- then you will get an error message.
    When i am creating a PR or PO with doc type frame work order the order unit is automatically populating as "AU" is this something std or do i have to do anything in configuration?
    For services (D category) we define AU as default unit (IMG - MM - External Services Management - Source Determination and Default Values - for Client/for Purchasing Organizations)
    When i created a PO with ref to PR aith account *** K into the PO and add the item category B the charging information was not maintained so how to maintian this?
    How to maintain the accounting info from PR?
    create Framework requisition and then copy it to a PO.
    Thanks

  • Error while Accessing Smart Card using Open Card Frame Work

    HI
    Using Open Card Frame work I am trying to access GemAlto provided Smart Card (java card). I downloaded the Open Card Frame work from “http://www.openscdp.org/ocf/download.html”.
    I am executing a basic program to access the data stored in smart card.
    public static void main(String[] args)
                        System.out.println("reading smartcard file...");
                        try {
                        SmartCard.start();
                        CardRequest cr = (FileAccessCardService.class);
                        System.out.println("calling waitforCard");
                        SmartCard sc = SmartCard.waitForCard(cr); //Error comes after this line
                        System.out.println("After waitForCard called");
                        FileAccessCardService facs = (FileAccessCardService)
                        sc.getCardService(FileAccessCardService.class, true);
                        CardFile root = new CardFile(facs);
                        CardFile file = new CardFile(root, ":c009");
                        byte[] data = facs.read(file.getPath(), 0,
                        file.getLength() );
                        sc.close();
                        String entry = new String(data);
                        entry = entry.trim();
                        System.out.println(entry);
                        } catch (Exception e) {
                             e.printStackTrace(System.err);
                        System.exit(0);
    The content of the opencard.properties are :
              OpenCard.services = opencard.opt.util.PassThruCardServiceFactory
    OpenCard.terminals = com.ibm.opencard.terminal.pcsc10.Pcsc10CardTerminalFactory
    OpenCard.trace = opencard:5 com.ibm:4 opencard.opt.database:6
    After the line “ SmartCard sc = SmartCard.waitForCard(cr);”
    the program is expecting a card to be inserted but while inserting Smartcard the following error message come :
              calling waitforCard
              [ERROR    ] com.ibm.opencard.terminal.pcsc10.OCFPCSC1.OCFPCSC1.SCardConnect
    --- message
    --- thread Thread[Thread-0,5,main]
    --- source com.ibm.opencard.terminal.pcsc10.OCFPCSC1@2e7263
    [ERROR    ] com.ibm.opencard.terminal.pcsc10.OCFPCSC1.OCFPCSC1.SCardConnect
    --- message Protocol = 0
    --- thread Thread[Thread-0,5,main
    --- source com.ibm.opencard.terminal.pcsc10.OCFPCSC1@2e7263
    Basically the error is coming from the SCardConnect function of OCFPCSC1.cpp file.
    Please reply to my mail id if any body has any idea how to resolve this issue.
    MAIL-ID : [email protected]
    With Regards
    Swarup
    Finacle Archie
    Infosys Technologies Limited,Bhubaneswar,India

    Sounds like an issue that has to do with JavaScript Origin policy. You'll have to use Domain Relaxing for this. Read all about it here:
    http://help.sap.com/saphelp_nw04/helpdata/en/59/87b54064c2742ae10000000a155106/frameset.htm
    here:
    http://help.sap.com/saphelp_nw04/helpdata/en/5e/473d4124b08739e10000000a1550b0/frameset.htm
    and here:
    http://help.sap.com/saphelp_nw04/helpdata/en/cb/f8751d8c6b254dac189f4029c76112/frameset.htm

  • Frame work order - Process

    Hi Friends,
    We are using Blanket Purchase order(Order type- FO) for purchasing materials and services for the period of 2 years.
    We have one scenario, i don't know, how it will affect the Frame work Order.
    The scenario is,We have FO for the quantity of 10000 Materials in the period of Nov 2008 to Nov 2010. And every month, we are calling vendor and tell him  to send the material for the quantity of 100.
    First situation, we need more materials i.e 500 during Nov 2009 due to market demand in that case how Frame work order works, do we need to change Frame work order?. is it possible?.
    Second situation, During the month of Sep 2009, vendor is informing us that he can not give the same materials for same price due to increase in cost of materials. How Frame work order works, do we need to create new Frame work order or FO can be changed?.
    Appreciate your help.
    Thanks

    First situation: not possible,  you can not change the frame work order, you have to create new purchase order for 500 qty
    Second situation: also not possible, for the changed price,   create purchase order for the new price for the excess qty.
    thanks,
    SGR.

  • What is a Frame work

    Hi i am a new bie to java Programming. what is collection frame work and where they are used
    like whatis vector,hashmap,hashtable.
    in which contect each one used.
    I was wondering if some give me some examples or link to any of the sites which explain them.
    Thanks in Advance

    http://java.sun.com/docs/books/tutorial/collections/index.html

  • Customized Authorizations in SAP ISA Frame work

    Hi All,
    I am using SAP ISA Frame work in my project and displaying customized Authorizations in my Project and i want to add new Authorizations in my Project.
    Please let me from where these authorization data is coming whether it is coming from back end  or front end.
    If it is front end from which file these data is coming.
    I am expecting it is coming from some xml file and i would like to know from file name of xml.
    regards,
    suresh

    Hi All,
        Any suggestions please
    Regards
    G.s.naidu

  • What is the exact use of STRUTS frame work??

    Hi every one,
    I'm new to this STRUTS frame work. Can any one explain me in detail (if possible with an example) about,, why we need to use STRUTS framework as we have already JSP's.
    For example if we want to move from one JSP to another JSP, it is quite easy to move to the page with out any other extra logic. Where as comes to the point of STRUTS, we need to write, JSP form, Form-bean class, Action Class, configure our STRUTS XML file, if validation needed validation xml files. Is it not looking cumbersome to process?
    Please help me to recover from this...
    Expecting reply from many of you..
    Thanx in advance.
    Sriram

    meetshriram wrote:
    Hi every one,
    I'm new to this STRUTS frame work. Can any one explain me in detail (if possible with an example) about,, why we need to use STRUTS framework as we have already JSP's. Struts is a web MVC-2 framework.
    For example if we want to move from one JSP to another JSP, it is quite easy to move to the page with out any other extra logic. No, there's logic, and it's embedded into the page.
    It's fine for one page to another, but when you have a substantial application that has tens or hundreds of JSPs it's much harder to manage.
    Where as comes to the point of STRUTS, we need to write, JSP form, Form-bean class, Action Class, configure our STRUTS XML file, if validation needed validation xml files. Is it not looking cumbersome to process?
    Extra complexity does cost you something. Ask yourself what it's buying you: better layering, more configuration and less code, validation, etc.
    %

  • 500 Internal Server Error In output of OA frame work

    [http://techxis:8988/OA_HTML/runregion.jsp]
    Hi All
    I am new starter for OA Frame work.i have design normal hello world page on Jdeveloper but when i run that page followin error is coming.

    You can ask oa framework questions at {forum:id=210}

  • Which is better frame works use along with flex

    Hi,
    I am developing an hospital application, mainly includes the
    management of outpatients and in front end i am using flex but in
    back end i did not get a clear idea about which frame work has to
    use or need of a new architecture. i just need some suggestion
    which of these spring,EJB 3.0 and Jboss Seam is better for back end
    implementation.
    Thanks and Regards
    kumar

    Hey kumar ,
    I don't have experience with a lot of frameworks but I am
    using Blaze-DS + Spring with deployed under glassfish.
    I think you biggest problem here is how to make the frontend
    pluggable, extensible and easy to maintain.
    I do make all single screens as single modules. and each
    module have it's own java class to do the work + some java classes
    for general perpose.
    Teh whole thing is build in ANTS and using jnit as a testing
    framework for java. I don't have anything yet to do automated UI
    testing.
    Ries

  • What Web frame work to go with EJB3?

    Our coming new project dictates EJB so we plan to use EJB3. But what web frame work is best to go with EJB3? We are currently using Struts1 and EJB2 in our existing project.
    We narrowed down to Struts 1, Struts 2, JSF, and Spring MVC. Since EJB 3 is new to us, we don't know which one is best for EJB 3 integration. Anyone can share their experience? Thanks.

    I suggest you seam framefork with richfaces components, this framefork integrates JSF + EJB and based on MVC of coarse, so that framework gives you great flexibility to write good application
    for jsf UI components you can see this [http://livedemo.exadel.com/richfaces-demo/richfaces/actionparam.jsf|http://livedemo.exadel.com/richfaces-demo/richfaces/actionparam.jsf]
    and for seam framework [http://seamframework.org/|http://seamframework.org/]

  • Is frame works in JSP

    nobr]i am new to java and working in jubuilder
    i have made there three forms,
    calling s-aots and st_aots in fs_aots
    but when i compile
    it takes fiel,d text on seprate page and display result on other window
    why it dosent use frame here
    2nd thing
    i want to enable scrolling
    how i can do
    or how can i display required no of records in second row
    if i mention page size in any check box
    <html>
    <head>
    <title>
    fs_aots
    </title>
    </head>
    <jsp:useBean id="fs_aotsBeanId" scope="session" class="s_aots.fs_aotsBean" />
    <jsp:setProperty name="fs_aotsBeanId" property="*" />
    <body>
    <FRAMESET Rows="30%" Framespacing="0">
    <Frame Name ="Header" SRC="s_aots.jsp" Frameborder="0" Scrolling="no">
    <FRAMESET Rows="70%" Framespacing="0">
    <Frame Name="data" SRC="st_aots.jsp" Frameborder="0" Scrolling="yes">
    </frameset>
    </frameset>
    </BODY>
    </html>
    <html>
    <head>
    <title>
    s_aots
    </title>
    </head>
    <jsp:useBean id="s_aotsBeanId" scope="session" class="s_aots.s_aotsBean" />
    <jsp:setProperty name="s_aotsBeanId" property="*" />
    <body>
    <p>update database content
    <form action="st_aots.jsp" method="post">
    Region<input type=text name=Regionparam><br>
    Bill Month From :<input type=text name=BmonthFparam><br>
    Bill Month To:<input type=text name=BmonthTparam><br>
    Connection Type:<input type=text name=Conntypeparam><br>
    Exchanges:<input type=text name=Exchparam><br>
    Phone No:<input type=text name=PhoneNoparam><br>
    <input type=Submit value="Retrive from DB">
    </form>
    </BODY>
    </HTML>
    <html>
    <head>
    <title>
    st_aots
    </title>
    </head>
    <jsp:useBean id="st_aotsBeanId" scope="session" class="s_aots.st_aotsBean" />
    <jsp:setProperty name="st_aotsBeanId" property="*" />
    <%@ page language="java" import="java.util.*"%>
    <table border=1 cellpadding=0 cellspacing=0 >
    <tr><td> Phone No: </td>
    <td> Current Bill: </td>
    <td> Net Payable: </td>
    <td>Net Arrers:</td>
    <td>customer Name:</td>
    <td>Customer Address:</td>
    <td>Connection Type:</td>
    </tr>
    <%
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
      java.sql.Connection connection = java.sql.DriverManager.getConnection("jdbc:odbc:AOTS4");
      java.sql.Statement statement = connection.createStatement();
      Enumeration parameters = request.getParameterNames();
        if(parameters.hasMoreElements()){
        String REGION = request.getParameter("Regionparam");
        String BILL_MONTH_FROM = request.getParameter("BmonthFparam");
        String BILL_MONTH_TO = request.getParameter("BmonthTparam");
        String CONN_TYPE = request.getParameter("Conntypeparam");
        String EXCHANGES = request.getParameter("Exchparam");
        String PHONE = request.getParameter("PhoneNoparam");
            java.sql.ResultSet columns = statement.executeQuery
        (" SELECT PHONE_NO,GROSS_CURRENT_BILL,AMOUNT_PAYABLE,NET_ARRERS_AMOUNT,NAME,ADDRESS_1,ADDRESS_2,ADDRESS_3,ADDRESS_4,CONNECTION_TYPE FROM AOTS4 WHERE REGION_CODE='" +REGION+ "' AND (BILL_PERIOD BETWEEN '"+BILL_MONTH_FROM+"' AND '"+BILL_MONTH_TO+"') AND CONNECTION_TYPE='"+CONN_TYPE+"' AND EXCHANGE_CODE='"+EXCHANGES+"' AND PHONE_NO='"+PHONE+"' ")  ;
                                while(columns.next()){
                                String Phone_No = columns.getString("PHONE_NO");
                                String G_C_Bill = columns.getString("GROSS_CURRENT_BILL");
                                String Amount_Payable= columns.getString("AMOUNT_PAYABLE");
                                String N_A_Amount= columns.getString("NET_ARRERS_AMOUNT");
                                String Name= columns.getString("NAME");
                                String Address1= columns.getString("ADDRESS_1");
                                String Address2= columns.getString("ADDRESS_2");
                                String Address3= columns.getString("ADDRESS_3");
                                String Address4= columns.getString("ADDRESS_4");
                                String C_Type= columns.getString("CONNECTION_TYPE");
    %>
                                <TR>
                                <TD> <%=Phone_No %></td>
                                <TD> <%=G_C_Bill %></td>
                                <TD> <%=Amount_Payable%></td>
                                <TD> <%=N_A_Amount %></td>
                                <TD> <%=Name %></td>
                                <TD> <%=Address1 %>,<%=Address2%>,<%=Address3%>,<%=Address4%></td>
                                <TD> <%=C_Type %></td>
                                </tr>
                                <%}
    }%>
                                </table>
                                </body>
                                </html>

    One problem is:
    - yet another person who thinks that it's a great idea to have a JSP access a DB, and who has never heard of multi-tier applications.
    The other problem is:
    - the same person does not realize that he's asking HTML/Javascript questions

Maybe you are looking for

  • How can I delete messages on phone(5c)and have them simultaneously be deleted on computer

    how can I synchronize deleting messages on iPhone 5c and my computer MacBook Pro (10.7.5)

  • Error in Configuration of RWB

    Hi When i selected the Configuration in RWB i am getting the following Error No ports that send to the Integration Server could be found for the following ALE logical systems:<br>DEV500: Function module "SXI_READ_ALEPORTS" not found., error key: RFC_

  • Batch Sequences can't convert 10.000 pdf-files at one time

    I have Acrobat Professional 7.0 and I am running on Windows XP. To convert from PDF to EPS I am using Advanced - Batch processing - Batch Sequences. Every week I have around 5.000 PDF-files which have to convert to EPS without any problems. Sometimes

  • BT On line billing - web page

    It  it just  me ,     I find the BT web page  incredibly  frustrating, and  have  felt  this w ay  for  a long  time, when trying to pay your bill on line. There  is  a whole  list of  posed  questions about bills but just not  a  simple "pay your bi

  • What's a SHAREDCONTENT.RPLN ?

    Hi, I am currently working with indesign 5.04. I have recently received a file from a client that is asking for the "SHAREDCONTENT.RPLN" when I attempt to open the file. Any ideas what this may be? Or how to solve this? I also have a contact that has