No BED,Cess & HS Cess values are getting stored in export Sales after J1iin

Hi,
This is a problem which is CIN based (Country India) for Export Sales. We configured following thing –
Excise Registration      -     1
Excise Group     -     1 let’s say it is G1
Series Group     -     2 let’s say they are S1 & S2
(S1 – Domestic / Export Sale & S2 – 57 F4)
Sub Transaction Type     -     2 let’s Say ES & IP
(ES – Export Sale & IP - Import Purchase)
Tax Procedure – TAXINN
Maintained Proper “Defaults Condition Type”
Also maintained all default “DLFC” and also additionally maintained “DLFC” with “ES - Sub Transaction Type” for Excise Accounts per Excise Transaction
Maintained all required GL account per excise Transaction i.e
G1 - DLFC - Co. Code -      -  All Required GL
G1 - DLFC - Co. Code - ES -  All Required GL
Maintained Default Excise Group & Series Group
S. Org - Dis.Ch. - Div - Sh. Pt - Plant - G1 - S1 - Export Under letter of Undertaking - ES
Pricing Procedure -     Export pricing consist containing “PR00”, BED, Cess & HS Cess (maintained in  both % & total). No account keys and statistical tick maintained except PR00 . So total 7 condition Types. Also proper condition record maintained.
Now for my Domestic sales everything is working fine. Here Both excise tables i.e J_1iexchdr & J_1iexcdtl are getting updated after J1iin for BED, Cess & HS CESS.
But in case of J1IIN of Export sale we are not able to store the values of ED, Cess & SHE Cess. Interesting thing is that these values are appearing initially while creating J1IIn through billing doc no. but as soon as we save it, only excise Invoice no is getting generated but no BED, CESS & HS Cess values are getting updated in tables.
So can anyone is having any clue why this values are not getting stored. I want these values in Excise Invoice for ARE 1 processing.
(We are using local number range for export invoice also)
Early response needed. Thanks

OK, no issues.
I wanted to ask u wether u are posting these excise values..?
and generally excise related condition types do not appear in Export pricing procedure as in export excise in not recoverable from the customer.
Hence even if tehy appear, tehy should eb statistical in teh export pricing procedure.
What you can do is,go to J1ID, Maintain excise indicator for customer.then Under the Excise rates, Choose Excise Tax rate.
here you can maintain, Excise rate(BED %), ECS% and AT1%(higher Ed.Cess) for the chapter id in your material.
similarly for all the chapter i'ds that you wish to make make an export for... (Remember to enter the Valid from and excise indicator)
Now, do teh j1iin again,and choose teh utilzation tab,then click on teh pencil icon and choose "Export Under bond".
If u fail to choose this option, systemw ill not allow you to carete an ARE1 for thsi excise invoice.
Lemme know if this works.
Regard;s
Priyanka M.
Reward points if helpful

Similar Messages

  • Part cost   kf values are getting aggregated ......... can any one help me?

    hello gurus....
    iam designing a infocube in which there is a keyfigure 'partcost'.when i execute a query on this infocube, the part cost values  for a particular part id are getting summed up. but the part cost ,whether for single or 100's of parts ,should be the same.
       i dont want these part cost values in the query to be aggregated.  what i should do now. declare this part cost as non cumulative kf or is there any solution for this ?
      i have gone thru the sap help site, but unable to find a solution for this?
       how to declare it as a non cumulative kf ?
      can any one suggest me a with some detailed steps what should be done for this? very urgent . my project deadline is with in 2 days. i will be really thankful to u..

    Hi Lokesh,
          Pls check your post in BI General. part cost  kf values are getting aggregated ......... can any one help me?
    Regards
    Hari
    Message was edited by: Hari Krishnan K

  • Sales order item 1 values are getting deleted

    HI,
    when i am creating sales order with material variants the dimension values( legth ,width ) for the first item are getting delted. it is happening after the BAPI_SALESORDER_CHANGE executed for  the second item. where could be the problem. is any flag values do i need to check?
    please suggest.

    Hi:
    Thanks for the response.
    Yeah, when I try to create an Order manually with the item category that is coming in IDOC I am able to see the Text ID's at the item level and I am even able to save some text in them.
    Do you think we need to do something else somewhere? May be we need to explicitly write some additional logic in order to save the item texts.
    Thanks.

  • We are getting ¿ stored into our Oracle 10g database  (Microsoft fault)

    We are getting ¿ stored into our Oracle 10g database that is using WE8ISO8859P1 character set.
    Problem is caused by the following:
    Microsoft released software (in particularly MS Word) before considering any ANSI or ISO standard (although they claimed so).
    At that time of pioneering graphical interface - they were the standard. Since then things changed. Microsoft initially targeted US marked, however very soon they wanted to expanded to Europe. For that they needed to get standardized character set instead of one initially being in use. Microsoft re-mapped character set in newer applications using Windows-1252 character set which is compatible with ISO-8851-1 (we are using in our Java Web applications). That cleared obstacles to forward on European market, where extended characters are necessary (like in French, Dutch, German languages...)
    What happened with the initial character codes before Microsoft agreed with ISO to standardize characters? Well - Nothing.
    So what are the consequences of that?
    If we are using Microsoft Word document in conjunction with one of the oldest character set (universe) the ice-age character mapping is still there. So when we "cut and paste" the content to another application, characters sets are not mapped anymore. Especially French language "is sensitive to this" The Microsoft character set in Word decimally coded 146 ( ' ) is very often used in French.
    Therefore if the text is generated in MS Word using old character mapping (universe) which we do, and using method of "cutting and paste" we are mismatching character set interpreted by other, newer applications.
    Initially in the MS words (apostrophe) ' had code 191; then later after implementing Windows 1252 character set being moved to code 146 in accordance to ISO. Well ISO threat character coded 191 as ¿. So if you are using MS Word universe character set, ' looks like ' but in newer applications or ISO compatible applications it looks like ¿.
    Can anyone provide me with periodically cleanup routines that replace garbled characters entered by Microsoft applications into Oracle database ?
    Thanks
    Brendon

    A simply update should work.
    SQL> CREATE TABLE CHARTESTING(COLUMN1 VARCHAR2(30));
    Table created.
    Elapsed: 00:00:00.01
    SQL>
    SQL> INSERT INTO CHARTESTING (COLUMN1) VALUES (CHR(191)||CHR(146)||DBMS_RANDOM.STRING('A',5));
    1 row created.
    Elapsed: 00:00:00.01
    SQL> COMMIT;
    Commit complete.
    Elapsed: 00:00:00.00
    SQL> SELECT * FROM CHARTESTING;
    COLUMN1
    ┐ÆTeoqw
    Elapsed: 00:00:00.06
    SQL> UPDATE CHARTESTING SET COLUMN1=REPLACE(COLUMN1,CHR(191),'*');
    1 row updated.
    Elapsed: 00:00:00.00
    SQL> SELECT * FROM CHARTESTING;
    COLUMN1
    *ÆTeoqw
    Elapsed: 00:00:00.00
    SQL>After numerous attempts you will have to trust me that the characters are correct, my sqlplus isn't working for displaying the characters.

  • Where connection details are getting stored.?

    Hi all,
    When we create any connection like Application server conn,databese server
    conn or Integration server conn then where all these details are getting stored.?
    i mean in which file...?
    Any idea for tht..?
    Thanks to u ppl
    /mishit

    hi all,
    finally i got that file. it is
    <jdev_install> /jdev/system/oracle.j2ee.10.1.3.n.nn/IDEConnections.xml
    where <jdev_install> is the root directory in which JDeveloper is installed.
    But there is one more file connections.xml for deployed password.i'm not sure
    abt this.
    Thanks
    /mishit

  • BED and ecess - usd values are flowing in J1IG during import procurement?

    HI,
    When I am doing import procurement with CVD & ecess on CVD, Secess on CVD conditions - all the condition values are flowing in USD values even though the condition base value is copied in INR in J1IG (excise invoice at depot,
    kindly let me know why it is not floing in INR, and what are the possible causes for this.
    regards,
    archana

    Don't you do a custom MIRO ( plan costs) on the customs vendor for the customs duties ( BCD, AED, CVD and all cesses ) before doing the material receipt?

  • 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

  • Table name in which Subtotals are getting stored

    Hi All,
    In V/08 transaction, for a pricing procedure e.g. X, A column is available for Subtotals. When I press F4 option for Subtotals, there I am watching 27 options.
    Now I want to know, for which option number the subtotal is getting stored in which table?
    e.g. for subtotal option1, the value is getting settled in VBRP table in KZWI1 field.
    Regards,
    Vishal

    Hi friend,
    One table where you can find all the pricing elements
    Table : T683S and field for subtotal of condition is KZWIW
    Key fields are pricing procedre and condition type.
    regards,
    santosh

  • Excise Values not are not coming in Export sales

    Hello ,
    when i am doing Export Sales , the values i am able to see  but when i go to Utilization and click on Calculate TAX , the values are coming, Zero Vaules are There.
    But in Domestic its working fine
    Pls Help

    HI
    You have to use the User exit
    Ask your abapper to write the below code
    FUNCTION J_1I7_USEREXIT_DUTY_IN_EXPORT.
    ""Local Interface:
    *" IMPORTING
    *" REFERENCE(YVBRK) TYPE VBRK
    *" EXPORTING
    *" REFERENCE(SUPPRESS_CALCULATION) TYPE J_1IEXCHDR-STATUS
    *If you do not want the excise duty to be calculated for a particular
    *transaction then you need to mark the flag supress_calculation as 'X'
    *This flag when left blank will trigger calculation of ED during j1ii
    *When it is marked, the ED copied from billing will be left as it is
    SUPPRESS_CALCULATION = 'X'.
    ENDFUNCTION
    Re: ARE-1&ARE-3
    regards

  • Custom field values are not storing in the data base

    Hi Friends,
    We have created one  Custom field called   ZZ_APPROVER in Rfx Header , we have included this field in the below  stuctures
    1.INCL_EEW_PD_HEADER_CSF_BID
    2.INCL_EEW_PD_HEADER_CSF
    The data type of this field ( ZZ_APPROVER ) is CHAR and the length is 1 .  we have given 2  fixed values in Value Range
    1 -
    X+2 Approver
    2 --- Provisional Approver
    so when we select either 1 or 2 ( in Drop Down ), its displaying properly on RFx Screen, but when we try save this document the values are not strong in the data base.
    Can any one give me idea why its not stroring in the data base
    Thanks in Advance
    Kumar Srini

    Hi Ganapathy,
    A Record is created in table BBP_PDHSC , for other z fields, the values are stroing , but for this field ( ZZ_APPROVER ) [ drop down list ], the value is not stroring
    Thnx
    Kumar Srini

  • In VF03 display mode, Tax values are getting changed

    Dear Guru's
    We have implemented a routine for MWIG tax calculation in sales order. But we are not seeing the same values in billing document. I am not sure how i am seeing different values for tax in display mode, If i double click on MWIG i am seeing correct value, but on the screen it is different value. Any suggestions on how can i make sure the same routine from sales order is applied in billing document.
    Thanks
    Deepu

    Hi,
    I am assuming that both sales order and the billing document have the same pricing procedure. (and likely so).
    The pricing engine runs on every mode. i.e. creation/change and display mode. Sometimes, some of the values do not flow into KONV, KONP structures (or XKOMV, XKOMP) during the display mode at the first go. So, if you are comparing some of the values with these structures, then, it might not be successful.
    My suggestion here is, put a debugging point in the routine that you have assigned to MWIG and go into the document using VF03. System will go into debug mode. There you can see which value is not being filled or why is the condition not getting satisfied. That way you can be sure what exactly needs to be done.
    Hope this helps.
    Regards,
    Mukund S

  • JSF page values are getting cleared with validation errors

    Using Jdev 10.1.3.4, JSF and ADF BC
    I have 2 jspx pages - 1 input page(with bindings to VO) and a lookup page bound to a read-only VO.
    page1: I am entering values to all the fields and then saving the form. Now if I had entered an invalid value for one of the fields and try to save - I am checking if value is valid in page1's managed bean and returning error message.
    After I get this error message I clear out the invalid value and use the lookup & navigate to the 2nd page fetch a valid value and when I return to my 1st page I am loosing values for some of the fields in my 1st page. Not sure how and this is my first issue! I dont see this behavior if I use the lookup option directly(instead of entering an invalid value, clearing the value after seeing the error message and then going to the lookup page)
    Next I am reentering values that I have lost and when I try to save again this time the value I had set from the lookup page is cleared and since this field is required I am getting an exception again. So, basically once there is an error for a field any new value I set gets cleared on commit and i get a required message for the field. Thanks for any clarifications/help with these strange issues.

    Fair enough :)
    Actually what I was meaning was could I use a collection to repopulate the tabular form when I receive errors. It appears as if it may work. However, I am hitting one snag.
    I have created a PL/SQL Process that runs On Submit and Before Computations/Validations. In this process, I have saving the values in the tabular form to a collection.
    I was then hoping to create another process that ran after any errors occur. However, it does not appear as if any processes run when the screen redraws after a validation issue. Is there a process that runs after validations when the screen is redrawing? Will I need to do this using javascript?
    Thanks

  • 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

  • 'Default Still' graphics are getting substituted on export - bug?

    Much of my work is on TV commercials with multiple excecutions of on-sceen pricing/region-specific URLs etc. My usual workflow is to create the initial overly graphic for the first ad using Default Still. Once the client is happy with this I duplicate the initial Default Still in the Project window, then I edit the duplicate to create the text for the second ad and so forth - thus maintaining all the layout and formatting from the first implementation.
    All the versions of the ads play correctly in the Program Viewer, i.e. correct graphic variations are married to the right ads. I use the Export command to create an individual .mov master of each version of the ad. I check the ad I'm exporting is correct by scrolling back and forth in the Export Settings preview pane, and again the correct graphics are still in place.
    Now here's the problem... I've recently had several ads sent back to me with the wrong text on them. I've checked them on the sequence and they're correct, no screw-up on my part. What seems to be happening here is the Export process is (seemingly at random) using the text from my initial Default Still rather than the amended duplicates that I have placed in the sequence. Frustratingly, Premiere correctly displays the correct graphics at all stages until I've squeezed it all down to a master. This is a workflow I've been doing for a while, but this oddity has only reared it's head in the past month or so. The only workaround I've found is to watch every exported .mov start-to-finish and when I spot an error I restart Premiere and re-export with my fingers crossed!

    Here's what has worked well for me, never any weird issues. Create your "default" still and place as needed on the timeline, add dissolves, etc.
    Now one by one, double-click a title on timeline to open Titler, then hit button at upper left for "New Title Based on Current". Name it, update the "new" title text and exit. Now right-click that "default" still on the timeline and select " Replace > With Clip from Bin". This replaces the "default" title with the new one you'd just made, keeping any attributes already applied to "default".
    An example for me is a dance recital with 40 acts. I create my first title, add to timeline and make it the right length, add the fade in/out on the ends. This is now a "template" for me with correct font, sizing, layout. I will then copy/paste that same title between every act (with correct length and transitions applied already). Will then go through and update/replace each "template" title into correct title for that spot in the program and formatting is consistent throughout the program on all titles.
    Hope this helps you
    Jeff Pulera
    Safe Harbor Computers

  • Field values directly binded to backend service are getting cleared.

    Hi,
    In HCM Forms & Process, for ex: in a form the header field values are directly binded to SAP_PA backend service and rest of the fields (dropdown list and free text fields) are getting from custom generic service. Now there is also a pushbutton in my form is used to calculate percentage of a field. Now when the form is displayed by default the header values are getting populated from SAP_PA backend service. When I click the push button with out selecting values(drop down list) getting from generic service all header field values are getting cleared. But if I select any dropdownlist value before selecting pushbutton and then if I click pushbutton all the header fields are retained with values. I am facing this problem for all the forms that I developed. I am looking for valuable answer.
    Regards,
    Nayani .

    So you are or are not using a user event? Sounded like you were which was firing when the user selecpiushed the "button" for calculating fields. Whatever "event" you have tied that button too seems to be your culprit. Are you doing this calculation in Javascript off the button "onClick" even or passing it to a HCM P&F "user event" in the backend? If it is to a HCM P&F "user event", that's where I would make sure your fields are selected.
    From the sounds of it, it seems when you do NOT select a dropdown list value, your generic service is not handling this gracefully and an error occurs. That would cause ALL other services NOT to run. It's an odd thing the framework does and often very frustrating to hunt down, but whenever any service errors, it will not run others.....hence no fields coming back correctly....even if those other services have NOTHING to do with yours (weird, I know).
    Hope this helps.

Maybe you are looking for

  • How do I enable apps to use my iPhone's camera?

    I've looked in privacy and even doing what the app told me to do and the option does not come up anywhere.

  • Transparent PNG images in IE 6

    I just found out that IE 6 doesn't support "transparent PNG" files. I have found a patch script that suppose to help but NOTHING! Has anybody ever come across this problem, and how did you get the images of work? patch script.... <!-- This DIV is the

  • Stock transfer to physical bins from 998 storage type

    Dear Experts, As part of data conversion,After loading huge stock into SAP 998 st type into INITIAL bin,I want to move the stock into physical bins.I have SU management activated. 1)During the initial upload to 998 , I have taken Material slip field

  • Pre and Post for Sends..Confusion?

    Dudes...am I crazy? I have 2 tracks. One plays a vocal and one plays a guitar. Both are sent to the same Aux or Bus track with a reverb on it, via the sends on their respective channels. If I solo the guitar track, I still get reverb tails from the v

  • HTMLEditorKit

    As far as I know JEditorPane uses HTMLEditorKit for parsing and redering HTML. Does anybody know if sun is going to continue to upgrade the rendering and parsing elements of this package to conform to newer HTML specifications? Also, does anybody kno