RFC model values are not shown in table

Hi there,
I can't gather the values from the RFC FM in my table, while this has been done exactly the same way as other tables which do get values... Any reason for this?
I have 2 DC's:
-data DC which acts as a container for the RFC-imported datamodels
-bupa DC in which the implementation is done
Custom Controller CuCoMain (from bupa DC):
Context:
OutputRelContacts (model node bound to model BuPaRelationsModel.__Crm_Bb_Bupa_Rels_Output)
cardinality: 0...n; selection: 0...1
> Rel_Contacts_Result (node of OutputRelContacts)
=> bound to BuPaRelationsModel.__Crm_Bb_Bp_Rel_Res_Ds
cardinality: 0..n; selection: 0...1
There is no context input necessary since 'related contacts' is dependent of the bpnr which I pass as parameter (see below).
Implementation in CuCoMain
public void TriggerAccConSearch( java.lang.String Mode, java.lang.String BuPaNr )
    //@@begin TriggerAccConSearch()
     //also see comments in TriggerBuPaSearch
     accContactsInput = new __Cernum__Crm_Bb_Bupa_Rels_Input();
     accContactsInput.setRel_Mode(Mode);
     accContactsInput.setBp_Number(BuPaNr);
     try{
          accContactsInput.execute();
          wdContext.nodeOutputRelContacts().invalidate();
          accContactsOutput = accContactsInput.getOutput();
          this.wdThis.wdGetContext().nodeOutputRelContacts().bind(accContactsOutput);
     catch(Exception e){
          msgMngr.reportException(e.getMessage(),true);
    //@@end
Context in view
Context node OutputAccContacts (bound to CuCoMain.OutputRelContacts.Rel_Contacts_Result)
cardinality: 0...n; selection: 0...1
Implementation to trigger TriggerAccConSearch:
String SelectedBuPaNr = this.wdThis.wdGetContext().nodeVOutputDetails().currentVOutputDetailsElement().getBpnumber();
     String RelMode = "C";
     this.wdThis.wdGetCuCoMainController().TriggerAccConSearch(RelMode, SelectedBuPaNr);
RelMode & SelectedBuPaNr are filled with values.
So what did I do wrong...? I'm out of inspiration; I've reimported the model, rebuilt the entire application, redone the context, redone the implementation but up until now nothing worked.
Any help is greatly appreciated
KR
A

Hi there,
Yes, as stated earlier, my RFC is being called by the application and the parameters are correct (input & output). Somehow, these values just don't get transferred to the node.
Also, you can try the following piece of code before the RFC call at the Dynpro end :
IWDMessageManager manager = wdComponentAPI.getMessageManager();
try{
wdContext.current<RFC_Name>_InputElement().modelObject().execute();
wdContext.node<Output_Node_Name>().invalidate();
} catch(WDDynamicRFCExecuteException ce) {
manager.reportException(ce.getMessage(), false);
I don't think that will help in my situation. In my situation there are 3 tables which have to be filled by the nodes.
These 3 tables are all based on the same RFC (with different input parameters). The weird thing is that one of these tables works perfectly and the others just don't work. Even weirder is that all the RFC-uses are implemented the same. (See below)
The working RFC call (table is populated):
public void TriggerAccRelSearch( java.lang.String BuPaNr, java.lang.String Mode )
    //@@begin TriggerAccRelSearch()
     //also see comments in TriggerBuPaSearch
     accRelsInput = new __Crm_Bb_Bupa_Rels_Input();
     accRelsInput.setRel_Mode(Mode);
     accRelsInput.setBp_Number(BuPaNr);
     try{
          wdContext.nodeOutputRelationships().invalidate();
          accRelsInput.execute();
          accRelsOutput = accRelsInput.getOutput();
          //wdComponentAPI.getMessageManager().reportWarning("TriggerAccRelSearch Result of RFC START" + accRelsOutput.getRel_Result().listIterator()..toString() + "TriggerAccRelSearch Result of RFC START");
          //wdComponentAPI.getMessageManager().reportWarning("First line: " + accRelsOutput.getRel_Result().get(0).toString());
          //currentRel_ResultElement().getRelationship().toString());
          this.wdThis.wdGetContext().nodeOutputRelationships().bind(accRelsOutput);
          wdComponentAPI.getMessageManager().reportSuccess("test accrelsearch: " + wdContext.nodeOutputRelationships().nodeRel_Result().currentRel_ResultElement().getAttributeAsText("Relationship").toString());
     catch(Exception e){
           msgMngr.reportException(e.getMessage(),true);
     finally{
          DynamicRFCModel modelinst;
          modelinst = (DynamicRFCModel) WDModelFactory.getModelInstance(BuPaRelationsModel.class);
          modelinst.disconnectIfAlive();     
    //@@end
The non-working RFC-calls (tables are NOT populated):
public void TriggerAccReltdEmpSearch( java.lang.String Mode, java.lang.String BuPaNr )
    //@@begin TriggerAccReltdEmpSearch()
     accReltdEmplInput = new __Crm_Bb_Bupa_Rels_Input();
     //accReltdEmplOutput = new __Crm_Bb_Bupa_Rels_Output();
     accReltdEmplInput.setRel_Mode(Mode);
     accReltdEmplInput.setBp_Number(BuPaNr);
     try{
          wdContext.nodeOutputReltdEmp().invalidate();
          accReltdEmplInput.execute();
          accReltdEmplOutput = accReltdEmplInput.getOutput();
          this.wdThis.wdGetContext().nodeOutputReltdEmp().bind(accReltdEmplOutput);
          //wdComponentAPI.getMessageManager().reportSuccess("test accReltEmp: " + wdContext.nodeOutputReltdEmp().nodeReltd_Emp_Result().currentReltd_Emp_ResultElement().getAttributeAsText("Relationship").toString());          
     catch(Exception e){
          msgMngr.reportException(e.getMessage(), true);
          msgMngr.reportSuccess("error: " + e.getCause());
     finally{
          DynamicRFCModel modelinst;
          modelinst = (DynamicRFCModel) WDModelFactory.getModelInstance(BuPaRelationsModel.class);
          modelinst.disconnectIfAlive();          
    //@@end
and:
public void TriggerAccConSearch( java.lang.String Mode, java.lang.String BuPaNr )
    //@@begin TriggerAccConSearch()
     //also see comments in TriggerBuPaSearch
     accContactsInput = new __Crm_Bb_Bupa_Rels_Input();
     accContactsInput.setRel_Mode(Mode);
     accContactsInput.setBp_Number(BuPaNr);
     try{
          wdContext.nodeOutputRelContacts().invalidate();
          accContactsInput.execute();
          accContactsOutput = accContactsInput.getOutput();
          wdComponentAPI.getMessageManager().reportWarning("TriggerAccConSearch Result of RFC START" + accContactsOutput.getRel_Result().toString() + "TriggerAccConSearch Result of RFC START");
          this.wdThis.wdGetContext().nodeOutputRelContacts().bind(accContactsOutput);
     catch(Exception e){
          msgMngr.reportException(e.getMessage(),true);
     finally{
          DynamicRFCModel modelinst;
          modelinst = (DynamicRFCModel) WDModelFactory.getModelInstance(BuPaRelationsModel.class);
          modelinst.disconnectIfAlive();     
    //@@end
Parameter definition:
__Crm_Bb_Bupa_Rels_Input accRelsInput;
__Crm_Bb_Bupa_Rels_Output accRelsOutput;
__Crm_Bb_Bupa_Rels_Input accReltdEmplInput;
__Crm_Bb_Bupa_Rels_Output accReltdEmplOutput;
__Crm_Bb_Bupa_Rels_Input accContactsInput;
__Crm_Bb_Bupa_Rels_Output accContactsOutput;
The table dataSources have all been bound to the context properly, as well as the table columns. Also, in the backend the correct values have been passed and retrieved.

Similar Messages

  • Measure Values are not shown in the pivot tables

    Measures without aggregation (in rpd) are not shown in pivot table.
    Im trying to add multiple columns in the fact table as measures,one which is summable had has the SUM function and three which are not summable.
    The initial report will be as follows and I have been able to get the data displayed.
    Year | Month| Company Name| SUM(C1)| C2|C3
    However if I pivot the table as follows data in column C2 and C3 are not Displayed.
    Columns
         Year     
              Month     
              Company     
    Rows                    
    Measure Lablel                    
    Measures
         SUM(C1)     
                   C2     
                   C3                    
    Should we have an aggregation rule applued in C2 and C3 ?

    Yes, all the column entries must have agg rule. You can specify one such as 'first' in the pivot table.

  • Pivot Table: measure values are not shown

    Good afternoon!
    I'm trying to show data in pivot table. All the columns are in single logical table. I have achieved next result:
    Image: !http://pics.livejournal.com/whitish/pic/0000hgz1!
    But measures in cells are'not displayed.
    In physical data source (xls file) my data stored as:
    Image: !http://pics.livejournal.com/whitish/pic/0000kctt!
    Could someone please help me to display my measures in cells?
    Thanks in advance,
    Alex.

    Hi.
    Maybe is aggregation rule on Fuzzy Clussification measure set to None (more option/aggregation rule), if yes leave it to default.
    Regards
    Goran
    http://108obiee.blogspot.com

  • Dropdown field in table - Values are not shown..

    Hi,
    My Query is i am not able to push values into dropdown table field.
    My data comes from config part (through OADP Provider). When i click on MSS-> Performance Management link in portal a new screen gets triggerred which displays the required table fields.
    I have to display one table field as dropdown. i am able to display all the values correctly. I need to display one column as drop down. i am able to show that table column as dropdown but i am not able to push values into the table field.
    The reference Webdynpro Comp/ int is OADP_TEST
    Plz find below the code i have written and help me in this regard..
    The code written in WDDOBEFORENAVIGATION
        lr_oadp->set_app_col_cell_editor_type(
        column_name = 'ZPM_PERMRAT'
        cell_editor_type = cl_oadp_cell_editor_type=>DROPDOWNLISTBOX ).
        lr_oadp->set_app_col_data_type( column_name = 'ZPM_PERMRAT' data_type = 'STRING' has_unit = abap_false has_currency = abap_false ).
          clear lt_dropdown_values.
          create object lr_dropdown_value.
          lr_dropdown_value->set_key_value( '1' ). "#EC NOTEXT
          lr_dropdown_value->set_text( 'E' ). "#EC NOTEXT
          append lr_dropdown_value to lt_dropdown_values.
          create object lr_dropdown_value.
          lr_dropdown_value->set_key_value( '2' ). "#EC NOTEXT
          lr_dropdown_value->set_text( 'S' ). "#EC NOTEXT
          append lr_dropdown_value to lt_dropdown_values.
          CALL METHOD LR_OADP->SET_APP_COL_DROPDOWN_PARAMS
            EXPORTING
              CELL_CHANGE_EVENT_ON = abap_true
              COLUMN_NAME          = 'ZPM_PERMRAT'
              DROPDOWN_VALUES      = lt_dropdown_values.
    Kindly help in this regard...

    After updating data into table add patialTrigger to table component.
    You can do this by doing this. In table Behavior property section contains property call Partial Triggers in here you
    can set from which component partial triggers this component you can select your command button.

  • Problem - Values are not stored into Tables when value are accepted from us

    // jsp code
    <%@ page import="java.util.Enumeration" %>
    <%@ page import="java.util.Vector" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.lang.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="beans.register2" %>
    <jsp:useBean id="registerbn" scope= "session" class="beans.register2" />
    <% String base = (String) session.getAttribute("base");
    registerbn.setDburl((String)session.getAttribute("dbUrl"));
    registerbn.setDbuser((String)session.getAttribute("dbUserName"));
    registerbn.setDbpasswd((String)session.getAttribute("dbPassword"));
    System.out.println("Inside jsp - setMembers of promotion successful");
    // registerbn.setMembers1();
    System.out.println("after setting");
    %>
    <%
    String action=request.getParameter("action");
    %>
    <HTML>
    <HEAD>
    <TITLE> TIFR INTRANET </TITLE>
    </HEAD>
    <HEAD>
    <script language="JavaScript1.2">
    //some validations functions
    </script>
    </head>
    <body>
    <table valign="top" align="top">
    <TR>
    <TD COLSPAN="100%"><jsp:include page="Header.jsp" flush="true"/></TD>
    </TR>
    <TR>
    <TD align="top" valign="top"><jsp:include page="menu.jsp" flush="true"/>
    <font face="arial" size="1">
    site developed by ADPCell TIFR
    </font>
    </td>
    <td>
    <table cellpadding="2" cellspacing="3" width="40%">
    <form method="post" action="./beans.register2">
    <td width="40" align="center"
    <font face="arial" size="5" align="right">
    <b>
    Registration <hr> </hr>
    </b>
    </font>
    <br>
    </td>
    <tr valign="center" width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">IdCode </b> </font>
    </td>
    <td width="40%">
    <b><font face="Arial" size="2">
    <input type="text" name="idcode" size="6" style="border-style:solid" value="">
    </font></b>
    </td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">User </font></B></td>
    <td width="40%">
    <input type="text" name="user" size="12" style="border-style: solid" value="">
    </font></b></td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Password </font></B></td>
    <td width="40%">
    <input type="password" name="password" size="25" tabindex="20" style="border-style: solid" width="12" value="">
    </font></b></td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Section code </font></b></td>
    <td width="40%">
    <select size="1" name="section_code" tabindex="9"
    style="border-style: solid">
    <%@ include file="section.txt" %>
    <!-- left for password -->
    1)
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Category </font> </b></td>
    <td width="80%">
    <font face="arial" size="2"> <b>
    <input type="radio" name="Category" value="General">General
    <input type="radio" name="Category" Value="Operators">Operators
    <input type="radio" name="Category" Value="Heads">Heads<BR>
    </b> </font>
    </td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Budget Category </font> <b> </td>
    <td width="40%">
    <font face="Arial" size="2"> <b>
    <input type="radio" name="BCategory" value="General">BGeneral
    <input type="radio" name="BCategory" Value="Operators">Operators
    <input type="radio" name="BCategory" Value="Head">Head
    </td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Budget Heads
    </font></b></td>
    <td width="40%">
    <b><font face="Arial" size="4">
    <textarea rows="2" name="Bheads" cols="20" size="100"
    style="border-style: solid">
    </textarea></font></b></td></tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Other Category</font></b></td>
    <td width="40%">
    <b><font face="Arial" size="2">
    <select size="1" name="OtherCategory" tabindex="20" style="border-style:
    solid" size="2"><OPTION value="EH">EH
    <OPTION value="EO">EO
    <OPTION value="FH">FH
    <OPTION value="FO">FO
    <OPTION value="AO">AO
    <OPTION value="AH">AH
    </select></font></b></td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">email </font></b></td>
    <td width="40%">
    <b><font face="Arial" size="2">
    <input type="text" name="email" size="20" style="border-style:
    solid" width="6">
    </font></b></td>
    </tr>
    <tr width="80%">
    <td width="40%">
    <font face="Arial" size="2"><b>Dob </font></b></td>
    <td width="40%">
    <font face="Arial" size="2"><b>
    <select size="1" name="day" style="border-style: solid"><OPTION value="0">Day
    <% int i;
    for(i=1;i<=31;i++)
    out.print("<OPTION VALUE=\""+i+"\">"+i+"</option>");
    %>
    </select>  
    <select size="1" name="month" style="border-style: solid" ><OPTION value="0">Month
    <OPTION value="1" >January
    <OPTION value="2" >February
    <OPTION value="3" >March
    <OPTION value="4" >April
    <OPTION value="5" >May
    <OPTION value="6" >June
    <OPTION value="7" >July
    <OPTION value="8" >August
    <OPTION value="9" >September
    <OPTION value="10">October
    <OPTION value="11">November
    <OPTION value="12">December
    </select>
    <select size="1" name="year" style="border-style: solid">
    <% int j;
    for(j=1950;j<=2000;j++)
    out.print("<option value=\""+j+"\">"+j+"</option>");
    %>
    </select></b></font></td>
    </tr>
    <br> <br>
    <tr width="80%">
    <td width="40%">
    <b><font face="Arial" size="2">Date of Join
    </font></b></td>
    <td width="40%">
    <b><font face="Arial" size="2">
    <select size="1" name="day1" style="border-style: solid"><OPTION value="0">Day
    <% int k;
    for(k=1;k<=31;k++)
    out.print("<OPTION VALUE=\""+k+"\">"+k+"</option>");
    %>
    </select>
    <select size="1" name="month1" style="border-style: solid" ><OPTION value="0">Month
    <OPTION value="1" >January
    <OPTION value="2" >February
    <OPTION value="3" >March
    <OPTION value="4" >April
    <OPTION value="5" >May
    <OPTION value="6" >June
    <OPTION value="7" >July
    <OPTION value="8" >August
    <OPTION value="9" >September
    <OPTION value="10" >October
    <OPTION value="11" >November
    <OPTION value="12" >December
    </select> 
    <select size="1" name="year1" style="border-style: solid">
    <% int l;
    for(l=1950;l<=2000;l++)
    out.print("<OPTION VALUE=\""+l+"\">"+l+"</option>");
    %>
    </select>
    </b></font></td>
    </tr>
    </table>
    <table cellpadding="2" cellspacing="3" width="40%" >
    <tr width="100%">
    <td width="30%">
    <input type="Submit" value="Submit" name="B1" > </td>
    <td width="40%">
    <input type="reset" value="Reset" name="B2"></td>
    <%
    //String action=request.getParameter("Submit1");
    if(action!=null && action.equals("Submit"))
    try{
    String idcode=request.getParameter("idcode");
    String user=request.getParameter("user");
    String password=request.getParameter("password");
    String seccode=request.getParameter("section_code");
    String Category=request.getParameter("Category");
    String BCategory=request.getParameter("BCategory");
    String Bheads=request.getParameter("Bheads");
    String OtherCategory=request.getParameter("OtherCategory");
    String email=request.getParameter("email");
    String day=request.getParameter("day");
    String month=request.getParameter("month");
    String year=request.getParameter("year");
    String Dob=day+"/"+month+"/"+year;
    String day1=request.getParameter("day1");
    String month1=request.getParameter("month1");
    String year1=request.getParameter("year1");
    String Doj=day1+"/"+month1+"/"+year1;
    registerbn.setIdcode("idcode");
    registerbn.setUser("user");
    registerbn.setPasswd("password");
    registerbn.setSec_code("seccode");
    registerbn.setCategory("Category");
    registerbn.setBut_cat("BCategory");
    registerbn.setBut_heads("Bheads");
    registerbn.setOther_Category("OtherCategory");
    registerbn.setEmail("email");
    registerbn.setDob("Dob");
    registerbn.setDoj("Doj");
    registerbn.saveData();
    }catch(Exception ex)
    out.println("ERROR :has occured ");
    %>
    </table>
    </table>
    </table>
    </form>
    </td>
    </tr>
    <jsp include page="Footer.jsp" flush="true"/>
    ------------------ End of JSP Programs ----------------
    // Beans Code
    package beans;
    import java.util.*;
    import java.util.Date;
    import java.util.Vector;
    import java.sql.*;
    public class register
    private String idcode;
    private String user;
    private String passwd;
    private String sec_code;
    private Vector sec_names;
    private String category;
    private String bud_cat;
    private String bud_heads;
    private String other_category;
    private String email;
    private String dob;
    private String doj;
    private String ent_dt;
    private String act_dt;
    private String dbUrl=null;
    private String dbUser=null;
    private String dbPassword=null;
    public void setDburl(String u)
    dbUrl=u;
    public void setDbuser(String us)
    dbUser=us;
    public void setDbpasswd(String Pass)
    dbPassword=Pass;
    public String getIdcode()
    return idcode;
    public void setIdcode(String i)
    idcode=i;
    public String getUser()
    return user;
    public void setUser(String u)
    user=u;
    public String getPasswd()
    return passwd;
    public void setPasswd(String p)
    passwd=p;
    public Vector getSec_names()
    return sec_names;
    public void setSec_names()
    // This function should select valid section code from the database and then populate the sec_names vector.
    public String getSec_code()
    return sec_code;
    public void setSec_code(String s)
    sec_code=s;
    public String getCategory()
    return category;
    public void setCategory(String c)
    category=c;
    public String getBud_cat()
    return bud_cat;
    public void setBud_cat(String b)
    bud_cat=b;
    public String getBud_heads()
    return bud_heads;
    public void setBud_heads(String b)
    bud_heads=b;
    public String getOther_Category()
    return other_category;
    public void setOther_category(String o)
    other_category=o;
    public String getEmail()
    return email;
    public void setEmail(String s)
    email=s;
    public String getDob()
    return dob;
    public void setDob(String d)
    dob=d;
    public String getDoj()
    return doj;
    public void setDoj(String d)
    doj=d;
    public String getAct_dt()
    return act_dt;
    public void setAct_dt(String d)
    act_dt=d;
    public void setMembers()
    Connection conn;
    Statement stmt;
    String query="Select sec_code from web.section";
    sec_details=new Vector();
    try
    conn=DriverManager.getConnection(dbUrl, dbUser, dbPassword);
    System.out.println("connected");
    stmt=conn.createStatement();
    System.out.println("Statement Created");
    ResultSet rs=stmt.executeQuery(query);
    do
    String seccode=rs.getString(1);
    sec_details.addElement(seccode);
    }while(rs.next());
    rs.close();
    stmt.close();
    conn.close();
    }catch(SQLException e)
    System.out.println("Execution Occured" +e);
    catch(Exception e)
    System.out.println("Execution Occured" +e);
    public void saveData()
    Connection conn;
    Statement stmt;
    String id=getIdcode();
    String use=getUser();
    String pass=getPasswd();
    String mail=getEmail();
    String sec=getSec_code();
    String cat=getCategory();
    String oth=getOther_Category();
    String bud=getBud_cat();
    String dob1=getDob();
    String doj1=getDoj();
    String budh=getBud_heads();
    String query="insert into wb_register " + "(idcode, user, passwd, sec_code, category, bud_cat, bud_heads, other_category, email , dob, doj, ent_dt)" + " values('"+id+"','"+use+"','"+pass+"','"+sec+"','"+cat+"','"+bud+"','" budh"','" oth"','"+mail+"','"+dob1+"','"+doj1+"','"+"Sysdate"+"')";
    try
    conn=DriverManager.getConnection(dbUrl,dbUser,dbPassword);
    System.out.println("connected");
    stmt=conn.createStatement();
    stmt.executeUpdate(query);
    stmt.close();
    conn.close();
    catch(SQLException e)
    System.out.println("Exception occured" +e);
    catch(Exception er)
    System.out.println("Exception occured" +er);
    ------------------------End of Beans Program ---------------
    Questions:-
    1) when we are submitting values to form it is not stored into backend (Oracle 9i)
    2) please send some source code for how to fetch values from backend and wants stored into Combo box /select Box
    3) We have faced problem of How call methods of Bean program into JSP programs

    The code to get the values from the database and store them in the combo box or select box would be as follows:
    <%
    zSQL = "select id, name from Users"
    rs = Con.ExecuteQuery(zSQL);
    if(!rs.next()) {
    %>
    <select name="id">
    <option value="0">select the name</option>
    <%
    do {
    %>
    <option value="<%= rs.getString(1) %>"><%= rs.getString(2) %></option>
    <%
    while (rs.next());
    %>
    </select>
    <%
    else {
    out.println("No Record Found");
    %>
    This would help you better.
    and for your first question, please check whether u are able to connect database with your connection method. if you are able to connect to the database, then please check the values (print them on the browser) which are posted from form, if it is also correct then check you r insert statement.
    and for your last question the best tutorial is JAVA API.
    Cheers!
    Rambee

  • Values are not shown in Tooltip

    Hello ,
    we have a problem. The values arent shown in one system of our systemlandscape. We have transported the Dashboard and the Queries, so they are both the same.
    Our Designstudio version ist latest one with 1.3.1.
    If we deploy the Dashboard on the SAP NW Portat in Development it works:
    If we deploy it on the Test System, it does not work:
    Does anyone has a solution for our problem ?
    Thank you very much

    Johann,
    Can you try to manually save to test system and see if it works.
    We have seen similar issue earlier when Promoted from Dev to Test System using Promotion Management Tool, and go it resolved by directly saving to Test System.
    Also, make sure you have all test systems versions are same as Dev (BO, BW, NW).
    Thanks,
    Sagar

  • Headings in tables are not shown in table of contents

    Hi,
    When I place some text bound to the Heading 1 style inside a table, it appears that Pages cannot scrape the heading from the document when generating the table of contents... any ideas?
    Cheers

    If you read carefully the User Guide you will see that TOC apply only to the document's text body.
    It's why it doesn't apply to
    Layout documents,
    tables,
    text boxes.
    _Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    Yvan KOENIG (from FRANCE vendredi 23 janvier 2009 17:33:12)

  • Forms values are not displayed correctly

    This is happening on the client view. I have a custom form and after some Windows updates on user's laptop, the text field values started stopping to display in the form. If I click on View mode then the text values shown and change back to Edit the form
    now text values show up in the text field.
    Another thing is when trying to print the view out, text values are not shown up at all. I tried to upgrade user to IE11 and same issue. Using Firefox then text values are shown in print preview but not in Editing. I don't want users to use different browser
    rather than IE.
    Any thoughts on this would be much appreciated.

    Hi,
    Since the issue happens after some Windows Updates, I would suggest the user log on another machine and see if the issue persists. If the issue only happens on this laptop, you can manually uninstall the update patch you doubt to test
    the issue. Go to Control Panel->Programs and Features->View installed Updates->”right click” and “uninstall”.
    Meanwhile, add the SharePoint sites to a trusted zone in IE settings.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Excise values are not updating in factory sales

    Dear SCN's,
    I'm facing an issue while doing factory sales, while creating sales order and billing I'm using J1IIN for excise invoice and then updating in J1I5 transaction but the values are not updating in table J_2IRG1BAL. Can anyone suggest what to do in order to get the values updated in table.
    Thanks & Regards,
    Kumar

    The following note explains how you need to update J_2IRG1BAL table.
    Note 951955 - CIN: General clarifications for RG1 goods
    Have a look at this.
    G. Lakshmipathi

  • Updated (VORowImpl ) values are not reflected in inline POPUP table

    Hi Expert,
    Currently i am getting exception when i try to update my iterator binding,
    Here is my use case,
    I have view object displayed inside the inline popup as a table. When i modify one of the cell i am firing the value change listener and it is called the ViewObjectRowImpl class method. Inside the method i do some computation (i am executing some DB query to get back some value). After the query execution i am updating the other columns data based on the changes.
    First i have PPR the table and check out the update values. Unfortunately the change values are not reflected.
    Then i used the following code
    DCIteratorBinding itrBinding = findIteratorBinding("EmployeeVO1Iterator");
    if (itrBinding != null) {
    itrBinding.executeQuery();
    itrBinding.refresh(DCIteratorBinding.RANGESIZE_UNLIMITED);
    Now i am getting the " JBO-25003: Object EmployeeMgmtAM of type ApplicationModule is not found."
    May i know what went wrong? Am i missing anything. May i know how can i refresh the UI table based on the updated VORowImpl. Looking forward hints.
    Thanks

    Thanks Frank, Actually i am accessing the client method as follows,
    DCIteratorBinding itrBinding = findIteratorBinding("EmployeeVO1Iterator");
    if (itrBinding != null) {
    EmployeeVORowImpl employeeVO = (EmployeeVORowImpl)itrBinding.getCurrentRow();
    empoyeeVO.methodName();
    May i know what is the different between accessing the method as shown above and access via the MethodBinding?
    How about access the attribute of the View object using the above approach? i.e empoyeeVO.getName() like ....
    Also i have configure the ADF looger to finest level and found the primary reason to "Applicaiton module not found" was some entity validation. But this not always happened. Same test case works fine and fails sometimes. I am clueless. Could you please throw some light.
    Thanks
    Edited by: user1022639 on Feb 7, 2012 5:24 PM

  • Created a trigger but new values are not inserting in the backup table

    I have created a backup table and writter a trigger on a table such that after update old values and new values are to be inserted into the backup table, but new values are not inserting. I am giving the code please help me
    create or replace trigger "SUPPQUOTES_AUDIT"
    after update or delete on phsuppquotes for each row
    begin
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values
    (:new.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    end;

    old values and new
    values are to be inserted into the backup table, butwell you have only one insert there, inserting old values with a new id (which is ok if you don't update the id column, but I don't think that :new is available for deleting ops); you should have two inserts:
    insert into
    phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:old.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    if (updating) then
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:new.cprc,:new.suppcode,:new.itemcode,:new.cprc,:new.negodt,:new.validdt,:new.userid,SYSDATE);
    end if;
    gojko adzic
    http://gojko.net

  • Table control values are not able to read with out a user action.

    Hi All,
    I am working with a module pool programing and I am calling 3 sub screens into my main normal screen.
    In one of the sub screen, I have created a table control and getting the initial values from database and displaying.
    Now I try to change the couple of fields in my table control and with out user action (not pressing Enter after changing the values in table control).
    I try to save the edited/changed values in table control into the database. But I am not able to do so, since the change values are not able to pick.
    My requirement is end user will not do any action(press the enter key ) and he directly presses the save button which is defined in the main normal screen.
    Kindly suggest some solution.
    Thanks
    Geetha

    Hi Geetha,
                    in SAP Default While pressing save button the modified value will pick up because
    Save button will perform enter function also.
    Regards,
    Thangam.P

  • In HDBC Table are not shown as replicated.

    Hi ALL ,
    I replicated some tables in  ECC .
    In LTRC its showing me the tables are replicated .
    But In HDBC Table are not shown as replicated.
    Can you please help me with this.
    Regards,
    Abhishek

    Hello Abhishek,
    Are you sure you're using the same DB connection for LTR and HDBC?
    Best regards,
    Ralph

  • Data are not displaying af:table.

    hi experts,
    am using jdev 11.1.1.5.0
    am using af:query panel and af:table.
    problem, is while runnnig the jspx page the af:table datas are not shown automaticaaly.
    but here i can want hit some buttons after hitting,
    the table get refreshes and datas are appearing. i dono y it's happening,
    am using 7 0r 8 tabs and af:tbale am not facing this problem on that those af:table.
    but problematic is this tab af:query n af:table. code is pasted here.
    <af:showDetailItem text="Link GL Accounts"
                                         binding="#{pageFlowScope.managedbean_GeneralLedger.sdi10}"
                                         id="sdi10">
                        <af:panelGroupLayout layout="vertical"
                                             binding="#{pageFlowScope.managedbean_GeneralLedger.pgl7}"
                                             id="pgl7">
                          <af:query id="q1" headerText="Search"
                                      disclosed="true"
                                      value="#{bindings.GlLvlAccountsVOCriteriaQuery.queryDescriptor}"
                                      model="#{bindings.GlLvlAccountsVOCriteriaQuery.queryModel}"
                                      queryListener="#{bindings.GlLvlAccountsVOCriteriaQuery.processQuery}"
                                      queryOperationListener="#{bindings.GlLvlAccountsVOCriteriaQuery.processQueryOperation}"
                                      binding="#{pageFlowScope.managedbean_GeneralLedger.q1}"/>
                        </af:panelGroupLayout>
                        <af:panelBox text="Search Result"
                                     binding="#{pageFlowScope.managedbean_GeneralLedger.pb8}"
                                     id="pb8" styleClass="AFStretchWidth"
                                     inlineStyle="width:100.0%;">
                          <f:facet name="toolbar">
                            <af:group binding="#{pageFlowScope.managedbean_GeneralLedger.g7}"
                                      id="g7">
                              <af:commandButton text="Insert"
                                                disabled="#{!bindings.CreateInsert6.enabled}"
                                                binding="#{pageFlowScope.managedbean_GeneralLedger.cb22}"
                                                id="cb22"
                                                action="#{pageFlowScope.managedbean_GeneralLedger.cb22_action2}"
                                               >
                                <af:showPopupBehavior popupId="p2"/>
                              </af:commandButton>
                              <af:popup binding="#{pageFlowScope.managedbean_GeneralLedger.p2}"
                                        id="p2">
                                <af:dialog binding="#{pageFlowScope.managedbean_GeneralLedger.d3}"
                                           id="d3" type="cancel">
                                  <af:panelFormLayout binding="#{pageFlowScope.managedbean_GeneralLedger.pfl1}"
                                                      id="pfl1">
                                    <af:inputListOfValues id="inputListOfValues1"
                                                          popupTitle="Search and Select: #{bindings.GlalPlant.hints.label}"
                                                          value="#{bindings.GlalPlant.inputValue}"
                                                          label="#{bindings.GlalPlant.hints.label}"
                                                          model="#{bindings.GlalPlant.listOfValuesModel}"
                                                          required="#{bindings.GlalPlant.hints.mandatory}"
                                                          columns="#{bindings.GlalPlant.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalPlant.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues1}">
                                      <f:validator binding="#{bindings.GlalPlant.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalPlantDesc.inputValue}"
                                                  label="#{bindings.GlalPlantDesc.hints.label}"
                                                  required="#{bindings.GlalPlantDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalPlantDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalPlantDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalPlantDesc.hints.tooltip}"
                                                  partialTriggers="glalPlantId"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it38}"
                                                  id="it38">
                                      <f:validator binding="#{bindings.GlalPlantDesc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues2"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl1.hints.label}"
                                                          value="#{bindings.GlalLvl1.inputValue}"
                                                          label="#{bindings.GlalLvl1.hints.label}"
                                                          model="#{bindings.GlalLvl1.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl1.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl1.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl1.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues2}">
                                      <f:validator binding="#{bindings.GlalLvl1.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl1Desc.inputValue}"
                                                  label="#{bindings.GlalLvl1Desc.hints.label}"
                                                  required="#{bindings.GlalLvl1Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl1Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl1Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl1Desc.hints.tooltip}"
                                                  partialTriggers="glalLvl1Id"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it39}"
                                                  id="it39">
                                      <f:validator binding="#{bindings.GlalLvl1Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues3"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl2.hints.label}"
                                                          value="#{bindings.GlalLvl2.inputValue}"
                                                          label="#{bindings.GlalLvl2.hints.label}"
                                                          model="#{bindings.GlalLvl2.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl2.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl2.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl2.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues3}">
                                      <f:validator binding="#{bindings.GlalLvl2.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl2Desc.inputValue}"
                                                  label="#{bindings.GlalLvl2Desc.hints.label}"
                                                  required="#{bindings.GlalLvl2Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl2Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl2Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl2Desc.hints.tooltip}"
                                                  partialTriggers="glalLvl2Id"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it40}"
                                                  id="it40">
                                      <f:validator binding="#{bindings.GlalLvl2Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues4"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl3.hints.label}"
                                                          value="#{bindings.GlalLvl3.inputValue}"
                                                          label="#{bindings.GlalLvl3.hints.label}"
                                                          model="#{bindings.GlalLvl3.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl3.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl3.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl3.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues4}">
                                      <f:validator binding="#{bindings.GlalLvl3.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl3Desc.inputValue}"
                                                  label="#{bindings.GlalLvl3Desc.hints.label}"
                                                  required="#{bindings.GlalLvl3Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl3Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl3Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl3Desc.hints.tooltip}"
                                                  partialTriggers="glalLvl3Id"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it41}"
                                                  id="it41">
                                      <f:validator binding="#{bindings.GlalLvl3Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues5"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl4.hints.label}"
                                                          value="#{bindings.GlalLvl4.inputValue}"
                                                          label="#{bindings.GlalLvl4.hints.label}"
                                                          model="#{bindings.GlalLvl4.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl4.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl4.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl4.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues5}">
                                      <f:validator binding="#{bindings.GlalLvl4.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl4Desc.inputValue}"
                                                  label="#{bindings.GlalLvl4Desc.hints.label}"
                                                  required="#{bindings.GlalLvl4Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl4Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl4Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl4Desc.hints.tooltip}"
                                                  partialTriggers="glalLvl4Id"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it42}"
                                                  id="it42">
                                      <f:validator binding="#{bindings.GlalLvl4Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues6"
                                                          popupTitle="Search and Select: #{bindings.GlalAcct.hints.label}"
                                                          value="#{bindings.GlalAcct.inputValue}"
                                                          label="#{bindings.GlalAcct.hints.label}"
                                                          model="#{bindings.GlalAcct.listOfValuesModel}"
                                                          required="#{bindings.GlalAcct.hints.mandatory}"
                                                          columns="#{bindings.GlalAcct.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalAcct.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues6}">
                                      <f:validator binding="#{bindings.GlalAcct.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalAcctDesc.inputValue}"
                                                  label="#{bindings.GlalAcctDesc.hints.label}"
                                                  required="#{bindings.GlalAcctDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalAcctDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalAcctDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalAcctDesc.hints.tooltip}"
                                                  partialTriggers="glalAcctId"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it43}"
                                                  id="it43">
                                      <f:validator binding="#{bindings.GlalAcctDesc.validator}"/>
                                    </af:inputText>
                                    <af:inputText value="#{bindings.GlalDesc1.inputValue}"
                                                  label="#{bindings.GlalDesc1.hints.label}"
                                                  required="#{bindings.GlalDesc1.hints.mandatory}"
                                                  columns="#{bindings.GlalDesc1.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalDesc1.hints.precision}"
                                                  shortDesc="#{bindings.GlalDesc1.hints.tooltip}"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it44}"
                                                  id="it44">
                                      <f:validator binding="#{bindings.GlalDesc1.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues7"
                                                          popupTitle="Search and Select: #{bindings.GlalClId.hints.label}"
                                                          value="#{bindings.GlalClId.inputValue}"
                                                          label="#{bindings.GlalClId.hints.label}"
                                                          model="#{bindings.GlalClId.listOfValuesModel}"
                                                          required="#{bindings.GlalClId.hints.mandatory}"
                                                          columns="#{bindings.GlalClId.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalClId.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues7}">
                                      <f:validator binding="#{bindings.GlalClId.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalClassDesc.inputValue}"
                                                  label="#{bindings.GlalClassDesc.hints.label}"
                                                  required="#{bindings.GlalClassDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalClassDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalClassDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalClassDesc.hints.tooltip}"
                                                  partialTriggers="glalClIdId"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it45}"
                                                  id="it45">
                                      <f:validator binding="#{bindings.GlalClassDesc.validator}"/>
                                    </af:inputText>
                                    <af:selectOneChoice value="#{bindings.GlalOptType.inputValue}"
                                                        label="#{bindings.GlalOptType.label}"
                                                        required="#{bindings.GlalOptType.hints.mandatory}"
                                                        shortDesc="#{bindings.GlalOptType.hints.tooltip}"
                                                        binding="#{pageFlowScope.managedbean_GeneralLedger.soc4}"
                                                        id="soc4">
                                      <f:selectItems value="#{bindings.GlalOptType.items}"
                                                     binding="#{pageFlowScope.managedbean_GeneralLedger.si4}"
                                                     id="si4"/>
                                    </af:selectOneChoice>
                                    <af:selectOneChoice value="#{bindings.GlalStatus.inputValue}"
                                                        label="#{bindings.GlalStatus.label}"
                                                        required="#{bindings.GlalStatus.hints.mandatory}"
                                                        shortDesc="#{bindings.GlalStatus.hints.tooltip}"
                                                        binding="#{pageFlowScope.managedbean_GeneralLedger.soc5}"
                                                        id="soc5">
                                      <f:selectItems value="#{bindings.GlalStatus.items}"
                                                     binding="#{pageFlowScope.managedbean_GeneralLedger.si5}"
                                                     id="si5"/>
                                    </af:selectOneChoice>
                                    <af:selectBooleanCheckbox value="#{bindings.GlalBudFlag.inputValue}"
                                                              label="#{bindings.GlalBudFlag.label}"
                                                              shortDesc="#{bindings.GlalBudFlag.hints.tooltip}"
                                                              binding="#{pageFlowScope.managedbean_GeneralLedger.sbc4}"
                                                              id="sbc4"/>
                                    <f:facet name="footer">
                                      <af:panelGroupLayout layout="vertical"
                                                           binding="#{pageFlowScope.managedbean_GeneralLedger.pgl8}"
                                                           id="pgl8">
                                        <af:commandButton text="Commit"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.cb29}"
                                                          id="cb29"
                                                          actionListener="#{bindings.Commit.execute}"
                                                          disabled="#{!bindings.Commit.enabled}"/>
                                      </af:panelGroupLayout>
                                    </f:facet>
                                  </af:panelFormLayout>
                                </af:dialog>
                              </af:popup>
                              <af:commandButton actionListener="#{bindings.Delete6.execute}"
                                                text="Delete6"
                                                disabled="#{!bindings.Delete6.enabled}"
                                                binding="#{pageFlowScope.managedbean_GeneralLedger.cb24}"
                                                id="cb24"/>
                            </af:group>
                          </f:facet>
                          remaing code continues another post.
    Edited by: Erp on Oct 12, 2011 4:55 AM

    remaing code
    <af:panelCollection binding="#{pageFlowScope.managedbean_GeneralLedger.pc7}"
                                              id="pc7" styleClass="AFStretchWidth"
                                              inlineStyle="width:100.0%;">
                            <f:facet name="menus"/>
                            <f:facet name="toolbar"/>
                            <f:facet name="statusbar"/>
                            <af:table value="#{bindings.GlLvlAccounts1.collectionModel}"
                                      var="row"
                                      rows="#{bindings.GlLvlAccounts1.rangeSize}"
                                      emptyText="#{bindings.GlLvlAccounts1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                      fetchSize="#{bindings.GlLvlAccounts1.rangeSize}"
                                      rowBandingInterval="0"
                                      filterModel="#{bindings.GlLvlAccountsVOCriteriaQuery.queryDescriptor}"
                                      queryListener="#{bindings.GlLvlAccountsVOCriteriaQuery.processQuery}"
                                      filterVisible="true" varStatus="vs"
                                      selectedRowKeys="#{bindings.GlLvlAccounts1.collectionModel.selectedRow}"
                                      selectionListener="#{bindings.GlLvlAccounts1.collectionModel.makeCurrent}"
                                      rowSelection="single"
                                      binding="#{pageFlowScope.managedbean_GeneralLedger.t7}"
                                      id="t7" columnStretching="column:c48"
                                      styleClass="AFStretchWidth"
                                      inlineStyle="width:100.0%;"
                                      partialTriggers=":::q1 :::cb22 :::cb23 :::cb24 :::cb25 :::cb26 :::cb27 :::cb28">
                              <af:column sortProperty="GlalPlant" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalPlant.label}"
                                         id="c47">
                                <af:inputListOfValues id="glalPlantId"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalPlant.label}"
                                                      value="#{row.bindings.GlalPlant.inputValue}"
                                                      model="#{row.bindings.GlalPlant.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalPlant.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalPlant.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalPlant.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalPlant.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalPlantDesc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.label}"
                                         id="c38">
                                <af:inputText value="#{row.bindings.GlalPlantDesc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalPlantDesc.tooltip}"
                                              id="it35">
                                  <f:validator binding="#{row.bindings.GlalPlantDesc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalLvl1" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl1.label}"
                                         id="c46">
                                <af:inputListOfValues id="glalLvl1Id"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalLvl1.label}"
                                                      value="#{row.bindings.GlalLvl1.inputValue}"
                                                      model="#{row.bindings.GlalLvl1.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalLvl1.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalLvl1.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl1.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalLvl1.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalLvl1Desc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.label}"
                                         id="c43">
                                <af:inputText value="#{row.bindings.GlalLvl1Desc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl1Desc.tooltip}"
                                              id="it33">
                                  <f:validator binding="#{row.bindings.GlalLvl1Desc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalLvl2" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl2.label}"
                                         id="c45">
                                <af:inputListOfValues id="glalLvl2Id"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalLvl2.label}"
                                                      value="#{row.bindings.GlalLvl2.inputValue}"
                                                      model="#{row.bindings.GlalLvl2.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalLvl2.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalLvl2.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl2.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalLvl2.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalLvl2Desc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.label}"
                                         id="c35">
                                <af:inputText value="#{row.bindings.GlalLvl2Desc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl2Desc.tooltip}"
                                              id="it29">
                                  <f:validator binding="#{row.bindings.GlalLvl2Desc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalLvl3" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl3.label}"
                                         id="c41">
                                <af:inputListOfValues id="glalLvl3Id"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalLvl3.label}"
                                                      value="#{row.bindings.GlalLvl3.inputValue}"
                                                      model="#{row.bindings.GlalLvl3.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalLvl3.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalLvl3.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl3.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalLvl3.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalLvl3Desc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.label}"
                                         id="c37">
                                <af:inputText value="#{row.bindings.GlalLvl3Desc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl3Desc.tooltip}"
                                              id="it32">
                                  <f:validator binding="#{row.bindings.GlalLvl3Desc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalLvl4" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl4.label}"
                                         id="c34">
                                <af:inputListOfValues id="glalLvl4Id"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalLvl4.label}"
                                                      value="#{row.bindings.GlalLvl4.inputValue}"
                                                      model="#{row.bindings.GlalLvl4.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalLvl4.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalLvl4.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl4.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalLvl4.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalLvl4Desc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.label}"
                                         id="c42">
                                <af:inputText value="#{row.bindings.GlalLvl4Desc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalLvl4Desc.tooltip}"
                                              id="it30">
                                  <f:validator binding="#{row.bindings.GlalLvl4Desc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalAcct" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalAcct.label}"
                                         id="c33">
                                <af:inputListOfValues id="glalAcctId"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalAcct.label}"
                                                      value="#{row.bindings.GlalAcct.inputValue}"
                                                      model="#{row.bindings.GlalAcct.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalAcct.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalAcct.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalAcct.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalAcct.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalAcctDesc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.label}"
                                         id="c44">
                                <af:inputText value="#{row.bindings.GlalAcctDesc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalAcctDesc.tooltip}"
                                              id="it34">
                                  <f:validator binding="#{row.bindings.GlalAcctDesc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalDesc1" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalDesc1.label}"
                                         id="c28">
                                <af:inputText value="#{row.bindings.GlalDesc1.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalDesc1.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalDesc1.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalDesc1.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalDesc1.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalDesc1.tooltip}"
                                              id="it36">
                                  <f:validator binding="#{row.bindings.GlalDesc1.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalClId" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalClId.label}"
                                         id="c36">
                                <af:inputListOfValues id="glalClIdId"
                                                      popupTitle="Search and Select: #{bindings.GlLvlAccounts1.hints.GlalClId.label}"
                                                      value="#{row.bindings.GlalClId.inputValue}"
                                                      model="#{row.bindings.GlalClId.listOfValuesModel}"
                                                      required="#{bindings.GlLvlAccounts1.hints.GlalClId.mandatory}"
                                                      columns="#{bindings.GlLvlAccounts1.hints.GlalClId.displayWidth}"
                                                      shortDesc="#{bindings.GlLvlAccounts1.hints.GlalClId.tooltip}">
                                  <f:validator binding="#{row.bindings.GlalClId.validator}"/>
                                </af:inputListOfValues>
                              </af:column>
                              <af:column sortProperty="GlalClassDesc"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.label}"
                                         id="c39">
                                <af:inputText value="#{row.bindings.GlalClassDesc.inputValue}"
                                              label="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.label}"
                                              required="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.mandatory}"
                                              columns="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.displayWidth}"
                                              maximumLength="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.precision}"
                                              shortDesc="#{bindings.GlLvlAccounts1.hints.GlalClassDesc.tooltip}"
                                              id="it37">
                                  <f:validator binding="#{row.bindings.GlalClassDesc.validator}"/>
                                </af:inputText>
                              </af:column>
                              <af:column sortProperty="GlalOptType"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalOptType.label}"
                                         id="c48">
                                <af:selectOneChoice value="#{row.bindings.GlalOptType.inputValue}"
                                                    label="#{row.bindings.GlalOptType.label}"
                                                    required="#{bindings.GlLvlAccounts1.hints.GlalOptType.mandatory}"
                                                    shortDesc="#{bindings.GlLvlAccounts1.hints.GlalOptType.tooltip}"
                                                    id="soc2">
                                  <f:selectItems value="#{row.bindings.GlalOptType.items}"
                                                 id="si2"/>
                                </af:selectOneChoice>
                              </af:column>
                              <af:column sortProperty="GlalStatus" filterable="true"
                                         sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalStatus.label}"
                                         id="c27">
                                <af:selectOneChoice value="#{row.bindings.GlalStatus.inputValue}"
                                                    label="#{row.bindings.GlalStatus.label}"
                                                    required="#{bindings.GlLvlAccounts1.hints.GlalStatus.mandatory}"
                                                    shortDesc="#{bindings.GlLvlAccounts1.hints.GlalStatus.tooltip}"
                                                    id="soc3">
                                  <f:selectItems value="#{row.bindings.GlalStatus.items}"
                                                 id="si3"/>
                                </af:selectOneChoice>
                              </af:column>
                              <af:column sortProperty="GlalBudFlag"
                                         filterable="true" sortable="true"
                                         headerText="#{bindings.GlLvlAccounts1.hints.GlalBudFlag.label}"
                                         id="c40">
                                <af:selectBooleanCheckbox value="#{row.bindings.GlalBudFlag.inputValue}"
                                                          label="#{row.bindings.GlalBudFlag.label}"
                                                          shortDesc="#{bindings.GlLvlAccounts1.hints.GlalBudFlag.tooltip}"
                                                          id="sbc3"/>
                              </af:column>
                            </af:table>
                          </af:panelCollection>
                        </af:panelBox>
                      </af:showDetailItem>i deleted this af:query n af:table .
    and do the same. but problem is still exist.

  • While Creation Of SaleOrder Char Values are not getting saved.(V C)

    Hi SAP gurus,
    One of my client can able to create a saleorder but when we go and see in VA03 Display mode,we found Charactrestic values getting miised out.What could be the probale reasons.
    Note: I Have stimulate the required combination as per my client requirement in CU50,here i can able to indentify the Green Sign,but While Creation Of SaleOrder Char Values are not getting saved.
    Awaiting for your valuable reply.
    Cheers,
    Kumar.S

    Kumar ,
    If you assign values in classification view or configuration profile  they will become default for the product, and it willnot be changed in sales order.
    another thing if the item category is incorrect you will not get the configuration pop up at all .
    problem what i understand from your thred is at the time of sales ordeer creation there is some inconsistances in the configuration , may be some condition is not fullfilling.
    If in CU50 the result shown are error free, same configuration should owrk properly in sales configuration process, please again try to create it in sales order with same value assignment also check all the messages.
    see the result of configuration before saving the sales order , i hoep it will work for you.
    I am assuming all the things from SD are properly configured ie item catageory, varient pricing etc.
    Check and revert back.
    Regards
    Ritesh

Maybe you are looking for

  • IPhone 5S fall down

    Hello, My iPhone 5S just fell down (from my Knees to the ground) and I almost had a heart attack. I use an Element Ronin case for my iPhone. I just want to know if the fall can damage my iPhone? Also how can I perform a hardware test for my iPhone? T

  • Changed Apple Store I.D. but not on iPhone

    I recently changed the email addy associated with my Apple Store account. Today when I went to update my iPhone apps it still brought up the old email addy when having me log into the iTunes store. Nothing I do changes it. I even synced the phone wit

  • Jelly Bean update completely killed true hands free voice dialing.

    Regardless of the fact that S-Voice (as well as Google Voice dialing/search) is unable to recognize most of my contacts, it's also a fact that by definition, it cannot work as a true hands free voice dialer, which is defined as the ability to make a

  • Energy and Screen Savers Don't Seem to be Working

    I have a 27" iMac (early 2011) running Lion. No matter how long I set the Energy or Screen Savers for, the screen dims after less than five minutes of inactivity then goes into screen-saver mode after another couple minutes. Any suggestions? Thanks,

  • 8.2 update random shutdown

    Hello, I have a iPhone 5 and upgraded to 8.2 recently. Since then, my phone randomly shuts down when using an app or even scrolling through apps on the main screen. My only solution is to plug in phone to a charger to get it to reboot. What's odd is