I am not able to execute the following code....Help me ...I am a beginner

REPORT  YCL_TEST1                               .
tables : pernr.
data : pn_begda type p0001-begda,
       pn_endda type p0001-endda.
infotypes : 0001, 0002, 0006.
get pernr.
provide * from p0001
from p0002 between pn_begda and pn_endda.
write : p0001-sprps, p0006-locat.
endprovide.

Hi
When you use the Statement <b>get PERNR</b>. This referst to the Logical Database.
Define the Logical Database in the attributes of your program and you should not face this error.
Hope this helps and welcome to SDN

Similar Messages

  • I am not able to execute the transport.send(message)

    I am not able to execute the transport.send(message) when trying for sending mail. I am getting error like this : -
    javax.mail.SendFailedException: Sending failed;  nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: 10.175.80.50, port: 25;  nested exception is: java.net.ConnectException: Connection timed out: connect
    Please help me on this to resolve this issue asap. thanks

    Hi Vinod,
    public void SendMail( )
        //@@begin SendMail()
              // Specify the host name of the mail server
              String host ="----
              IWDMessageManager messageMgr = wdControllerAPI.getComponent().getMessageManager();
              // Initialize Session
              Properties props = System.getProperties();
              props.put("mail.smtp.host", host);
              props.put("mail.smtp.auth", "true");
              Authenticator auth = new Auth();
              Session session = Session.getInstance(props, auth);
              // Create new MimeMessage
              MimeMessage message = new MimeMessage(session);          
              try
                    // Set the From Address
                    String from = wdContext.currentContextElement().getCtx_From();
                   message.setFrom(new InternetAddress(from));
                   //  Set the To Address
                   String to = wdContext.currentContextElement().getCtx_To();     
                   Address ar[] = new Address[1];
                   ar[0] = new InternetAddress(to);
                   message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
                   // Set the Subject
                   message.setSubject(wdContext.currentContextElement().getCtx_Subject());
                   //  Set the Text               
                   message.setText(wdContext.currentContextElement().getCtx_Text());            
                   Transport tr = session.getTransport("smtp");
                   tr.connect("Put again here Host Name", Port Noumber, "userid", "password");               
                   tr.sendMessage(message, ar);
              }catch (AuthenticationFailedException e){
                   messageMgr.reportException(e.toString(),false);
              }catch (AddressException e)     {
                   messageMgr.reportException(e.toString(),false);
              } catch (MessagingException e) {
                   messageMgr.reportException(e.toString(),false);
              }catch (Exception e){
                   messageMgr.reportException(e.toString(),false);
        //@@end
    And also create the class Auth() like
    public class Auth extends Authenticator {
         public PasswordAuthentication getPasswordAuthentication()
              String username = "userID";
              String password = "Passwod";     
              return new PasswordAuthentication(username,password);     
    Please check it i think i will work. Also please use constant value for the to, from, subject and text.

  • We are not able to execute below procedure, plz help me ASAP.

    Dear All
    I am created one procedure with 4 parameter 1 is Ref Cusrsor rest of 3 are Varchar,But we are not able to execute below procedure, plz help me ASAP.
    CREATE OR REPLACE PROCEDURE GETCHART(RPT_CURSOR OUT RPT_PACKAGE.RPT_RESULTS,
    V_VITALCHARTING VARCHAR2,
    V_DOCIDPATIENTS VARCHAR2,
    v_fromdate varchar2,
    v_todate varchar2) AS
    D1 VARCHAR2(500);
    D2 VARCHAR2(500);
    G1 VARCHAR2(500);
    R1 VARCHAR2(500);
    R2 VARCHAR2(500);
    R3 VARCHAR2(500);
    R4 VARCHAR2(500);
    R5 VARCHAR2(500);
    H1 VARCHAR2(500);
    H2 VARCHAR2(500);
    V_COUNT NUMBER;
    RC VARCHAR2(100);
    RMI VARCHAR2(100);
    RMAX VARCHAR2(100);
    R12 VARCHAR2(500);
    REQ NUMBER;
    V_MAX number;
    v_idcount number;
    RSEQ NUMBER;
    RCH VARCHAR2(500);
    BEGIN
    INSERT INTO TEMPDATA
    SELECT ROWNUM G, TIME1
    FROM (SELECT distinct TO_CHAR(H.RECORDEDDNT, 'mm/dd/yy hh24:mi:ss') TIME1
    FROM VIEW_PATIENTCHART V,
    chartingtxheader H,
    chartingtxdetails D
    WHERE h.docid = d.docidchartingtxheader
    and v.VITALCHARTING_PK = h.docidvitalcharting
    and v.VITALPARAMETER_PK = d.docidvitalparameter
    and v.VITALCHARTING_PK = V_VITALCHARTING --General Vital Signs
    and H.DOCIDPATIENTS = V_DOCIDPATIENTS
    and TO_DATE(to_char(h.recordeddnt, 'DD/MM/YYYY'),
    'DD/MM/YYYY') BETWEEN
    TO_DATE(v_fromdate, 'DD/MM/YYYY') AND
    TO_DATE(V_TODATE, 'DD/MM/YYYY'));
    SELECT MAX(ID) INTO V_MAX FROM TEMPDATA;
    V_IDCOUNT := 0;
    WHILE V_IDCOUNT < V_MAX loop
    FOR J IN (SELECT id, ROWNUM G, vdate time1
    FROM (SELECT id, ROWNUM, VDATE
    FROM TEMPDATA
    WHERE ID BETWEEN V_IDCOUNT + 1 AND V_IDCOUNT + 8)) LOOP
    D1 := D1 || 'COL' || J.G || ',';
    D2 := D2 || '''' || J.TIME1 || '''' || ',';
    END LOOP;
    D1 := SUBSTR(D1, 1, LENGTH(D1) - 1);
    D2 := SUBSTR(D2, 1, LENGTH(D2) - 1);
    DBMS_OUTPUT.PUT_LINE(d1);
    SELECT SEQ_GETCHART.NEXTVAL INTO RSEQ FROM DUAL;
    G1 := 'INSERT INTO GETDATA2 (IDSLNO,idcount,' || D1 || ') VALUES(' || RSEQ || ',' ||
    V_IDCOUNT || ',' || D2 || ')';
    --EXECUTE IMMEDIATE G1;
    DBMS_OUTPUT.PUT_LINE(d1);
    DBMS_OUTPUT.PUT_LINE(SUBSTR(D2, 1, LENGTH(D2) - 1));
    DBMS_OUTPUT.PUT_LINE(G1);
    EXECUTE IMMEDIATE G1;
    FOR K IN (SELECT id, ROWNUM G, vdate time2
    FROM (SELECT id, ROWNUM, VDATE
    FROM TEMPDATA
    WHERE ID BETWEEN V_IDCOUNT + 1 AND V_IDCOUNT + 8)) LOOP
    FOR I IN (select s.*, rownum hslno
    from (SELECT v.CHARTNAME,
    v.PARAMETERNAME_CS,
    ' ' || v.PARAMETERNAME PARAMETERNAME,
    TO_CHAR(H.recordeddnt, 'mm/dd/yy hh24:mi:ss') TIME1,
    CASE
    WHEN IDSLNO_GN5029 IN (1040, 1041) THEN
    CASE
    WHEN TO_NUMBER(d.recordedvalue) <
    TO_NUMBER(D.MINVALUE) THEN
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'L')
    ELSE
    CASE
    WHEN TO_NUMBER(d.recordedvalue) >
    TO_NUMBER(D.MaxVALUE) THEN
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'H')
    ELSE
    decode(d.recordedvalue,
    null,
    d.recordedvalue,
    d.recordedvalue || ' ' || 'N')
    END END ELSE d.recordedvalue END IMAGECHAR,
    d.minvalue,
    d.maxvalue,
    D.UOMCODE
    FROM VIEW_PATIENTCHART V,
    chartingtxheader H,
    chartingtxdetails D
    WHERE h.docid = d.docidchartingtxheader
    and v.VITALCHARTING_PK = h.docidvitalcharting
    and v.VITALPARAMETER_PK = d.docidvitalparameter
    and v.VITALCHARTING_PK = V_VITALCHARTING --General Vital Signs
    and H.DOCIDPATIENTS = V_DOCIDPATIENTS
    ORDER BY V.DISPLAYORDER_CS, V.DISPLAYORDER
    -- v.PARAMETERNAME_CS,v.PARAMETERNAME
    ) s
    where s.time1 = k.time2) LOOP
    select count(1)
    into v_count
    from GETDATA2 d
    where d.PARAMETERNAME_CS = i.PARAMETERNAME_CS
    and PARAMETERNAME = i.PARAMETERNAME
    and idcount = v_idcount;
    IF V_COUNT = 0 THEN
    RCH := I.CHARTNAME;
    R1 := 'COL' || K.G;
    R2 := '''' || I.PARAMETERNAME_CS || '''' || ',';
    R3 := '''' || I.PARAMETERNAME || '''' || ',';
    R4 := '''' || I.IMAGECHAR || '''';
    RC := '''' || I.CHARTNAME || '''' || ',';
    RMI := '''' || I.minvalue || '''' || ',';
    RMAX := '''' || I.maxvalue || '''' || ',';
    R12 := '''' || I.UOMCODE || '''' || ',';
    SELECT SEQ_GETCHART.NEXTVAL INTO RSEQ FROM DUAL;
    H1 := 'INSERT INTO GETDATA2 (IDSLNO,UMCODE,idcount,CHARTNAME,minvalue,maxvalue,PARAMETERNAME_CS,PARAMETERNAME,' || R1 || ')' ||
    ' values(' || RSEQ || ',' || R12 || v_idcount || ',' || RC || RMI || RMAX || R2 || R3 || R4 || ')';
    EXECUTE IMMEDIATE H1;
    ELSE
    R5 := 'COL' || K.G;
    R4 := '''' || I.IMAGECHAR || '''';
    H2 := 'UPDATE GETDATA2 SET ' || R5 || '=' || R4 ||
    'WHERE PARAMETERNAME_CS=' || '''' || I.PARAMETERNAME_CS || '''' ||
    ' AND ' || 'PARAMETERNAME=' || '''' || I.PARAMETERNAME || '''';
    EXECUTE IMMEDIATE H2;
    END IF;
    END LOOP;
    end loop;
    UPDATE getdata2 s
    set s.parametername = s.parametername || ' -' || ' (' || minvalue ||
    ' -- ' || maxvalue || ') ' || UMCODE
    where s.parametername is not null
    and idcount = v_idcount
    and minvalue != 0
    and maxvalue != 0;
    UPDATE getdata2 s
    set s.parametername = s.parametername || ' -' || UMCODE
    where s.parametername is not null
    and idcount = v_idcount
    and minvalue = 0
    and maxvalue = 0;
    UPDATE GETDATA2 S
    SET S.PARAMETERNAME_CS = NULL
    WHERE ROWID NOT IN (SELECT MIN(ROWID)
    FROM GETDATA2
    WHERE idcount = v_idcount
    GROUP BY PARAMETERNAME_CS)
    and idcount = v_idcount;
    UPDATE GETDATA2 S
    SET CHARTNAME = NULL
    WHERE ROWID NOT IN (SELECT MIN(ROWID)
    FROM GETDATA2
    WHERE idcount = v_idcount
    GROUP BY CHARTNAME)
    and idcount = v_idcount;
    UPDATE getdata2 s
    set s.parametername = ' PARAMETER'
    where s.parametername is null
    AND S.PARAMETERNAME_CS IS NULL;
    v_idcount := v_idcount + 8;
    D1 := null;
    d2 := null;
    end loop;
    for i in (SELECT G.PARAMETERNAME_CS, G.IDSLNO
    FROM GETDATA2 G
    WHERE G.PARAMETERNAME_CS IS NOT NULL) LOOP
    INSERT INTO GETDATA2
    (IDSLNO, PARAMETERNAME)
    VALUES
    (I.IDSLNO - 1 + 0.5, I.PARAMETERNAME_CS);
    END LOOP;
    update GETDATA2 h set h.PARAMETERNAME_CS = null;
    update GETDATA2 h set h.chartname = rcH;
    INSERT INTO GETDATA1
    SELECT CHARTNAME,
    PARAMETERNAME_CS,
    PARAMETERNAME,
    COL1,
    COL2,
    COL3,
    COL4,
    COL5,
    COL6,
    COL7,
    COL8,
    COL9,
    COL10,
    MINVALUE,
    MAXVALUE,
    UMCODE
    FROM GETDATA2
    ORDER BY IDSLNO;
    OPEN RPT_CURSOR FOR
    SELECT * FROM GETDATA1;
    END;
    CREATE OR REPLACE PACKAGE "RPT_PACKAGE"
    as
    type RPT_RESULTS is REF CURSOR;
    type RPT_VARRAY is VARRAY(2000) of VARCHAR2(2000);
    END RPT_PACKAGE;
    Execute
    declare
    type my_newcursor IS REF CURSOR;
    begin
    GETCHART(my_newcursor,'General Vital Sign','1145561',sysdate-1,sysdate);
    end;

    Parwez wrote:
    Dear All
    I am created one procedure with 4 parameter 1 is Ref Cusrsor rest of 3 are Varchar,But we are not able to execute below procedure, plz help me ASAP.
    see a picture of my car.
    my car won't go.
    tell me how to make my car go.
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Hi, i'am not able to find the redemption code that is required to renew subscription for my creative cloud account. Please advice.

    Hi, i'am not able to find the redemption code that is required to renew subscription for my creative cloud account. Please advice.

    Redemption Code Help
    Mylenium

  • Not able to remove the ABAP code from Transformation

    Hello Experts,
    We have transformation for DSO in that for one infoobject, field routine is written, Break Point is hard coded there and it's move to production. Now we are trying to remove that break point from development and then move it production.
    we are doing following activity to remove the break point.
    1. Open the transformation.
    2. Open the field routine.
    3. Going to ABAP code in field  routine.
    4. Remove the hard coded Break Point from ABAP code.
    5. Saving the code.
    6. It's taking to again filed routine window.
    7. We close the window and activate the transformation.
    8. When again check the ABAP code in field routine then it shows hard coded Break Point again.
    9. Not able to remove the hard coded break point.
    Can anyone know how to do this.
    Help will be appreciated.
    Thanks

    Hi,
    As pointed above, after point 6 don't simply close the window but click on Transfer Value and then activate your transformation. Refresh the system and check again.
    Regards,
    Arminder

  • My little cousin scratched my i tunes gift card with a key and now I am not able to decipher the entire code. Is there any way of still being able to redeem my i tunes gift card?

    My little cousin scratched my i tunes gift card with a key and now I am not able to decipher the code on the back. Is there any way of still being able to redeem the gift card?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Answering quickly, though, see:
    http://support.apple.com/kb/TS1292
    Regards.

  • Not able to activate the Function Code in screen layout.

    Hi Experts,
    I was not able to activate the screen function code in se51.
    It is in the transaction code - J1IEX.
    What can the possible reasons?..
    Please suggest.
    Regards,
    Neslin.

    Hi Jorge ,
    No , i didnt find the custom fields in IS_ITEM which i have added in the PO item level .
    i have added the custom field in this include INCL_EEW_PD_ITEM_CSF_PO .
    More over this include wont included in the IS_ITEM structure .
    Thank you,

  • Not able to find the action code

    Hi,
    I have coded a simple calculator application. It contains calculcator.jsp, results.jsp, CalculatorController.java (Methods add and multiply) and Calculator.java.
    From the calculator.jsp when "Add" button is pressed following exception is thrown.
    [1/10/06 11:29:23:743 IST] 0000002f InvokeApplica E #{CalcBean.add}: javax.faces.el.MethodNotFoundException: add: com.fnf.maia.tutorial.client.controller.CalculatorController.add()
    [1/10/06 11:29:23:759 IST] 0000002f InvokeApplica E TRAS0014I: The following exception was logged javax.faces.FacesException: #{CalcBean.add}: javax.faces.el.MethodNotFoundException: add: com.fnf.maia.tutorial.client.controller.CalculatorController.add()
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
         at javax.faces.component.UICommand.broadcast(UICommand.java:312)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:80)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1657)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))
    Here is the code listing
    calculator.jsp
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
      <h:form id="calcForm">
        <h:panelGrid columns="3">
             <h:outputLabel value="First Number" for="firstNumber" />
             <h:inputText id="firstNumber" value="#{CalcBean.firstNumber}" required="true" />
            <h:message for="firstNumber" />     
             <h:outputLabel value="Second Number" for="secondNumber" />
             <h:inputText id="secondNumber" value="#{CalcBean.secondNumber}" required="true" />
            <h:message for="secondNumber" />
         </h:panelGrid>
         <h:panelGroup>
             <h:commandButton id="submitAdd" action="#{CalcBean.add}"  value="add" />
             <h:commandButton id="submitMultiply" action="#{CalcBean.multiply}" value="multiply" />
         </h:panelGroup>
      </h:form>
    </f:view>
    CalculatorController.java
    public class CalculatorController
         private Calculator calculator = new Calculator();
         private int firstNumber;
         private int secondNumber;
         private int result;
         public int getFirstNumber() {
              System.out.println("getFirstNumber called");
              return firstNumber;
         public void setFirstNumber(int firstNumber) {
              System.out.println("setFirstNumber called");
              this.firstNumber = firstNumber;
         public int getResult() {
              System.out.println("getResult called");
              return result;
         public void setResult(int result) {
              System.out.println("setResult called");
              this.result = result;
         public int getSecondNumber() {
              System.out.println("getSecondNumber called");
              return secondNumber;
         public void setSecondNumber(int secondNumber) {
              System.out.println("setSecondNumber called");
              this.secondNumber = secondNumber;
         public String add()
              System.out.println("add called");
              result = calculator.add(firstNumber,secondNumber);
              return "success";
         public String multiply()
              System.out.println("multiply called");
              result = calculator.multiply(firstNumber, secondNumber);
              return "success";
    faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces
    Config 1.1//EN" "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <managed-bean>
        <description>
          The "backing file" bean that backs up the calculator webapp
        </description>
        <managed-bean-name>CalcBean</managed-bean-name>
        <managed-bean-class>com.fnf.maia.tutorial.client.controller.CalculatorController</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
         <navigation-case>
           <from-outcome>success</from-outcome>
           <to-view-id>/calc/results.jsp</to-view-id>
         </navigation-case>
    </navigation-rule>
    </faces-config>Thanks in advance

    Thanks Shalini for this info but I know this. My only concern is that I am not being able to view these new custom phases in t.code CRMC_ACTION_CONF while I am trying to maintain the 'Schedule Condition' action. Here I can only see the SAP standard phases.
    How do I get my custom phases defined in Opportunities be viewable under t.code CRMC_ACTION_CONF.
    Any inputs will be highly appreciated.
    Many thanks!
    Kumar

  • Not able to execute J1IFR T-code as it is going to ABAP Dump.

    Hello everybody,
    When we execute the command J1IFR, it generate the ABAP dump for challan with
    -ve Qty (Quantity of goods received).
    The details as follows
    Runtime Errors         DYNPRO_FIELD_CONVERSION
    ShrtText                                                                               
    A conversion error occurred.                                                                 
    Error analysis                                                                               
    The program flow was interrupted and could not be resumed.                                 
       Program "SAPMJ1IFN" tried to display fields on screen 1210. However, an                      
       error occurred while this data was being converted.                                                                               
    So please suggest How to solve the error?
    Thanks
    Ganesh

    This is happened due to
    -ve Qty (Quantity of goods received)

  • Not able to find the related datasources ,, help..

    Hi Experts ,
    BI with CRM
    I am trying to find the relavent Datasources for the below mentioned Tables in CRM ,,plz help to find out the relavent Datasources ,,,I tried in all forms ,but not able to find ,, need your help.
    Thanks in advance
    Table ::
    CRMD_MKTATTR_SET----->>> Datasource???
    COMD_PAYPLAN_DC----->>> Datasource???
    COMD_PAYPLAN_D------->>> Datasource???
    TB033----
    >>> Datasource???
    ZUCORDSET----
    >>>>>Datasource???
    Regards
    Ramana

    package com.elevenworks.swing.treetable;
    //Here i dont have this dependency code
    //So i want a jar file for that
    import org.jdesktop.swingx.JXTreeTable;
    import javax.swing.*;
    import javax.swing.tree.TreeCellRenderer;
    import java.awt.*;
    public class BrushedMetalTreeCellRenderer implements TreeCellRenderer
         protected JLabel label;
         public BrushedMetalTreeCellRenderer()
              label = new JLabel();
         public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus)
              label.setForeground(Color.BLACK);
              if (selected)
                   Component vRenderPane = tree.getParent();
                   if (vRenderPane != null)
                        JXTreeTable vTable = (JXTreeTable)vRenderPane.getParent();
                        if (vTable != null)
                             if (vTable.hasFocus())
                                  label.setForeground(Color.WHITE);
              label.setText(value.toString());
              return label;
    }

  • F-44 Vendor Clearing: Not able to save the reason code

    Hello Experts,
    We are testing t-code F-44.  We are attempting to perform a vendor clearing with a Debit Balance Write-off.  As part of the test we require to add a Reason Code to the transaction posting.  Unfortunately, the reason code is not being saved to the FI transaction being generated.
    I will be glad to provide further information if needed, also points will be rewarded as soon as suitable answer is received.
    Thanks,

    Hello Experts,
    We are testing t-code F-44.  We are attempting to perform a vendor clearing with a Debit Balance Write-off.  As part of the test we require to add a Reason Code to the transaction posting.  Unfortunately, the reason code is not being saved to the FI transaction being generated.
    I will be glad to provide further information if needed, also points will be rewarded as soon as suitable answer is received.
    Thanks,

  • Not able to execute the explain plan in development.

    Hi In TOAD when try to click "Explain plan current statement." icon, I getting the below error message. ORA-00604: error occurred at recursive SQL level 1 ORA-01950: no privileges on table space 'DEFAULT_DATA' can anybody give some idea to solve this issue?

    Is this a new user?  You could be running out of quota.
    Ask your DBA to user on that tablespace.
    Alter user <username> quota unlimited on DEFAULT_DATA;
    OR
    Title
    When I do an Explain Plan, I get the error: ORA-00604: error occurred at recursive SQL level 1 OR 
    Description I get the error below when I run / execute an Explain Plan.ORA-00604: error occurred at recursive SQL level 1 ORA-01536: space quota exceeded for tablespace ‘USERS’ (not same but similar)
    Resolution Ensure the Plan Table your Toad is using exists, valid, and can use enough space in the tablespace or give unlimited tablespace rights. Setting Toad to use the PLAN_TABLE from SYS schema via View menu | Toad Options | Oracle | General | Explain Plan can resolve the issue as well.

  • Not able to execute the Method on 64 Bit OS

    Hello All,
    We are compiling the plug-ins for InDesign Server CS3 on XP which has 32 bit Operating system. These plug-ins work fine if the InDesign Server CS3 is also installed on 32 Bit OS.
    But if the InDesign CS3 server is installed on 64bit OS the plug-in method is not invoked also it displays a message as method not found.
    Do we need to compile the plug-in in a specific manner to make it work on 64 Bit OS or it should work as it is.
    Thanks for all the help in advance.
    Regards
    Farzana.

    Hi, 
    Anyone have a solution for this?   I am experiencing the same thing - QC can connect to QTP on VM if I have a remote session open to the VM, but if not I get the error mentioned.
    Also using QTP 11 and QC/ALM 11.

  • Not able to execute the procedure

    Hi everybody,
    I am trying to execute a procedure as below,
    CREATE OR REPLACE procedure test1(n1 IN number, n2 IN number, tot OUT number)
    is
    i number := null;
    begin
    loop
    if n2>n1 then
    i:=i+1;
    tot:=n1+i;
    dbms_output.put_line(tot);
    elsif n2<n1 then
    dbms_output.put_line('Enter a higher value for n2');
    end if;
    end loop;
    end;
    All im trying to do is to print the numbers according to the values we give during the runtime, but doesn't seem to work for me.
    ie.,
    n1=1;
    n2=5;
    tot = 1,2,3,4,5;
    I am sorry if there are some error's in the procedure and would really appreciate if you can help me with this. Thanks in advance for your help.
    Edited by: Pravin on 31 Aug, 2010 2:25 PM

    When i run the procedure now,
    CREATE OR REPLACE procedure test1(n1 IN number, n2 IN number, tot OUT number)
    is
    i number := null;
    begin
    loop
    if n2>n1 then
    i:=i+1;
    tot:=n1+i;
    dbms_output.put_line(tot);
    elsif n2<n1 then
    dbms_output.put_line('Enter a higher value for n1');
    end if;
    exit;
    end loop;
    end;
    set serveroutput on;
    variable tot number;
    execute test1(1,4,:tot);
    print tot;
    Im getting output as,
    PL/SQL procedure successfully completed.
    tot
    Nothing is getting printed now. Any reasons for it. I would like to appreciate everybody's help, by the way. Hope we will find a solution.
    Edited by: Pravin on 31 Aug, 2010 2:40 PM

  • Not able to get the error code when the client ,server running in Diff JVM

    Hi ,
    My server code is running on websphere App server . My client is running on different JVM on my machine .
    When I try to throw my own exception , I am not getting any data in the exception object.
    I am setting error code and msg in the exception object.
    But when i retrive from my client , it is returning the null.
    Can some one throw some info regrading this .

    Hi,
    Did this issue occur on all clients?
    Please run ipconfig /all command on this problematic computer, and then post the screenshot here.
    In addition, update your network adapter, disable the firewall and anti-virus temporarily and then run these commands:
    netsh winsock reset catalog
    netsh int ip reset
    Meanwhile, please refer to this article to troubleshoot:
    DHCP Clients Are Unable to Get IP Addresses from a DHCP Server
    http://support.microsoft.com/kb/197197/EN-US
    Karen Hu
    TechNet Community Support

Maybe you are looking for

  • When using function in forms what priveledge should a schema have ? in DB

    when calling a database level function in oracle forms what permission should i grant to schema in database level ? con it's given error during compilation that object must be declare........... e.g total_record:=total_record+1; SELECT HR.fn_get_fini

  • USB connection problem for Missing Sync

    Hi. I just downloaded Missing Sync and can't get the first sync completed. the program keeps accessing bluetooth and then says first sync has to be USB. My Mac doesn't seem to recognize that the USB is plugged in to my 8330 Curve. Now, every 30 minut

  • What's the best Logic Pro training?

    Have just converted from Cubase PC to LP mac, after 10 years..help! What are the best training resources around?

  • How to cleanup the "custom" genre list

    The genre custom list is very large and has many in there that I don't use or want. Is there a way to remove some of these? Thanks!

  • Printing jewel insert or single cover

    So, I've downloaded the latest version of ITunes, and the glitch of not being to print a single cover for my CDs has not been resolved since the last download.  I'm getting really ****** off, and I'm beginning to consider ditching ITunes altogether a