Formula item doesnt get stored in database ???

i have three text items shown on my canvas
:basic
:hra
:total
the :total is :basic + :hra
and so :total is a display item. i therefore used in the property palete for :total in the formula section as :basic + :hra.
The display gets shown properly after performing the calculation.
But when the 'save' button is pressed it does not 'commit' the :total item to the database.
The other items successfully get commited. Why so? whats the solution to this problem.

Is Total a base table item?

Similar Messages

  • Some items doesnt get copied with header partner

    Hi ,
    I have a issue with an order, where when teh order header partners are redetermined, (ship to), some of the items on the order doesnt get copied with the new ship to.
    There is a check box at the item partner screen which is been ticked only for the items where thsi change doesnt take place.
    It indicates that 'Partner valid at item level, if this indicator has been activated, the partner is valid at item level.'.
    Could someone please advice the reason as to whta the check box means as well as the reason as to why the header partner doesnt get copied to the line item partner.
    Thanks,
    Keshini

    Hi,
    Read OSS  Note 550073 - FAQ: SD Partner Determination I, points 1 and 2.
    The description from the note is,
    1. Question: Why is a new partner determination not executed when I change the partner ?
    Answer: The partner determination always runs when you create a document. Then dependent partners are automatically determined and checked. If in the existing document you change a partner, the system does not run a redetermination of the partners (except when the sold-to party is changed). This works as designed and possible dependent partners are not redetermined.
    2. Question: Does the partner determination take place on item level ?
    Answer: An item partner determination is not provided in the standard system. You can enter item partners manually. Here, in Customizing of the item partners you can specify which partner functions should be allowed on item level and which not. The header partner functions are always allowed on item level. On item level, if you enter a partner, it is visualized by the item partner flag. For an item partner you can change the address data, header partner addresses cannot be changed on item level. The logic of the item partners is: If for an item there is no partner, the header partners are displayed. If as described above you enter a partner on item level, this partner exists on item level. If for a partner you enter an address differing from the header but the partner should stay the same, you can just enter the partner again manually for the respective item. Thus the partner becomes an item partner and the address can be changed.
    Regards,

  • Where XI payload gets stored in SAP

    Hi,
    Can any one help me to find out tables used to store XI payload data in backend. I believe message header details can only be visible in ABAP tables.. where as actual message payload gets stored in database system. If my understanding is correct, can any one help me to find a way to access them in abap program?
    Thanks in advance.

    Hi,
    >>>as you know normally payload data size is huge in nature..so I believe it won't be visible from ABAP dict tables.
    it's not visible - this is not important - the important thing is that it's stored there
    you can fetch it easily in ABAP with read_msg_all method of cl_xms_persist
    (nothing complex)
    Regards,
    Michal Krawczyk

  • Evaluate Formula Stored in Database

    I'm trying to allow users to store formulas in a database field to allow them to create their own analysis page.
    I have set of variables that the user can use to create their formulas.
    The problem I'm coming across is that I can't get the database formula to evaluate.
    For example.
    I have the following variable that is already set.
         <cfset Cost = "12500">
    If my user decides to add a repair line to their analysis the formula could be saved in a database field name LineItemFormula and the formula would look something like this.
         Cost * 0.05
    Then when the repair line is diplayed I want to display and store the value:
         625
    I can't seem to get the database formula to evaluate.
    I tried #evaluate(de(LineItemFormula))# but that just displays
         12500 * 0.05
    So I tried evaluating this new string and I get
         String index out of range: 0 null
    If anyone can give me some advice on what I'm doing wrong or if what I'm trying isn't possible I would appreciate it.
    Thanks
    Torri

    Dan
    That worked. Thanks.
    Plus your way I'm not having to run the query to get the formula each time.
    Torri

  • Getting image stored in database !!

    Hey !!
    I'm really trying to solve so much problems i'm having with javafx !!
    So, like the title may suggest, i'm having problems as to get image from the database !!
    Everything seems fine but it tells me that there is "Exception while runing Application"
    here is the code !!
    @James D, i will come back bugging yu again to see how to use the stored images and display them inside the combobox and to render them ^^
    I haven't well understand how well as to use the enum struc in which yu declared the composed <Image,String> type ^^
    import java.awt.image.BufferedImage;
    import java.io.ByteArrayInputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javafx.application.Application;
    import javafx.event.Event;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.ComboBox;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    import javax.swing.JOptionPane;
    * @author Minedun6
    public class DynamicCustomComboBox extends Application {
        Connection c = connection.ConnecrDb();
       PreparedStatement pst = null;
       ResultSet rs = null;
       ComboBox box1;
       ImageView view;
        @Override
        public void start(Stage primaryStage) {
            box1 = new ComboBox();
            box1.setPrefSize(100, 25);
            box1.setOnShowing(new EventHandler() {
                @Override
                public void handle(Event t) {
                    box1.getItems().clear();
                    try {
                String sql = "select libelle_constr,img_constructeur from constructeurs where libelle_constr='Citroen';";
                pst = c.prepareStatement(sql);
                rs = pst.executeQuery();
               while(rs.next()){
                   box1.getItems().add(rs.getString("libelle_constr"));
                   InputStream input = new ByteArrayInputStream(rs.getBytes("img_constructeur"));
                   Image imge = new Image(input);
                   view.setImage(imge);
            } catch (Exception e) {
            JOptionPane.showMessageDialog(null, e);
            StackPane root = new StackPane();
            root.getChildren().addAll(box1);
            Scene scene = new Scene(root, 300, 250);
            primaryStage.setTitle("Hello World!");
            primaryStage.setScene(scene);
            primaryStage.show();
        public static void main(String[] args) {
            launch(args);
    }

    In any real application, it's a mistake to mix your presentation (user interface) code with your persistance (database access) code.
    Why? You want maintainability, flexibility, and testability.
    Maintainability:
    Suppose you want to change the structure of your database. E.g. the database admin (which may be you, or someone else) determines that the database design you have is inefficient and needs to be changed. If your database code is scattered over the whole application, mixed in among your user interface code, tracking down what needs to be changed will be a nightmare. If all your database code is in a single class, or perhaps a set of classes in a single package, then the updates are localized and much easier to manage. Furthermore, you can build the new database access code on its own, test it out, and then when you are sure it works just switch your user interface code to use the new persistance layer instead of the old one. The same applies if you decide you're going to use a completely different technology to store the data; perhaps you want to use something like Hibernate instead of plain JDBC, or maybe you decide you want to make the data accessibile via a web service.
    Flexibility:
    What if you (or, more likely, your manager) decides they're going to change to a new user interface technology. Maybe they decide to switch to a web application (i.e. HTML-based) instead of a desktop application. You obviously need to rewrite the user interface code, but you should be able to keep all the database access code you've written. If your database access code is all jumbled up with the user interface code you're replacing, it's going to be way harder to reuse that code. If the two are separated out, you just build a new user interface in whatever new technology you're using, and access the same class(es) you used for your database access without touching them.
    Testability:
    This whole thread is actually a demo of how testability is much harder if you don't properly separate your code. You posted "getting image stored in database", thinking that was your problem. It wasn't; your problem was actually an error in the way you'd set up your JavaFX code. Because the two were completely mixed together, it was hard to know where the error was. The error you had was actually a really simple one; it would have been much easier to see if you had simpler, properly separated code; but because you didn't organize your code like that it took you days to figure out the problem. This was only a couple of dozen lines of code; imagine how this looks in a real application with hundreds or thousands of classes.
    The point is that decisions about how to access your data (standalone database, web service, or EJB?; plain JDBC, JPA, Hibernate, etc?) , and decisions about the presentation technology (desktop or web? JavaFX or Swing?, or Servlets/JSPs, JSF, Swing MVC, or any of a huge number of frameworks) are completely independent. You should be in a position to change those decisions - to redesign aspects of the application - with the least amount of effort possible. Failing to properly design things will make this much harder, or likely completely impossible.
    These are real concerns that affect every application that goes into production.
    Even if you're just making a small application, it will benefit you to set things up correctly from the outset.

  • 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.

  • Problem while storing items from trailing list  to database

    hi all,
    can anyone help me out. i have scenario where i have to store items from trailing list into database. suppose if there are 3 items in the list, 3 rows should be inserted into database with all the remaining fields same like
    A ,1 , c
    A, 2, c
    A , 3, c where 1,2,3 are items from trailing list. Am iterating the loop.
    What am doing is before saving am checking for duplicates i.e are there any records with the same combination. If yes am doing nothing else am committing the changes..
    As am not doing anything if any duplicte record is present, the changes made to the fields persists and once if any commit happens all the values are getting saved. which is voilating my condition..
    Thanks

    Hello,
    Direct path load, can only be used with SQL*Loader and Database have the same version.
    Care to tell the database version and sql*loader version you are using.
    -Sri

  • How to get Stored Proc name from ReportClientDoc object (java)

    Post Author: cpriyanka
    CA Forum: Exporting
    We are using Crysta Report 9 and Java.
    We create ReportClientDocument by mentioning report template name ("rassdk://" + report template file path).
    Once I open ReportClientDocument, is there way I can get stored procedure name that is used (associated to report template) to get data in report.
    Thanks,
    Priyanka

    Post Author: cjmorris1201
    CA Forum: Exporting
    Priyanka,
    I am not too sure about the ReportClientDocument and java.
    Where I work we use 8.5, .Net.  We use ttx files to define our data source. 
    I can use something similar to below to retrieve the ttx name programmatically.  Perhaps you can use something similar:
    oCrystalSession.oRpt.Database.Tables.Item(1).Name
    Good luck!

  • Forms 9i: How get image from database?

    Hi!
    I want to get a image (GIF,JPG, TIFF, etc.) that is stored in database table (as blob) in Image_Item (No Database Block) by Trigger (PL/SQL) way.
    In a Block that is database=yes It's OK, the Query do this in automatic.
    I know that "select column into block_item from db_table" is not possible.
    Thanks!

    I have a multi-row block for entry data, so was thinking in a image item (No Database) in the same block for show a GIF when the user entry one code; then I will not need any thing more for show the correct GIF in each row when the user scroll them.
    The other way, if I create one block-image_item for each row that is displaying; then I need create a Procedure por Syncronize the data row with the GIF; this mean a lot re-quering when the user is scrolling the rows. This is the reason I searching one Instruccion equivalent to read_image_file (but in place Operating System from database) or dbms_lob.read( ... ) but the target must be a block image item.
    Thanks.

  • Japanese Data is not getting stored  if passes as Parameter.

    Hello Everyone,
    I have setup of ReDHat Linux 7.1 ( English supporting Japanese too ) with Apache Webserver , Apache Jserv , Gnu -JSP and i have Other server with NT - Japanese with Oracle 8.1.7 Japanese . I have some strege Problem
    I have created one JSP where i am using CharSet as Euc-JP and even for AapacheJserv i am using encoding as Euc-JP. from this JSP page if i tried to insert record with Typed Japanese with in SQL as hardcode value it is working smooth. It stored in oracle as it is.
    BUT if i creates 2 diff JSP for e.g DataEntry.jsp and calling other jsp is InsertRecord.jsp ... with same character set as EUC-JP.
    I am using <% String mnippon_no = request.getParameter("nippon_no"); %>
    and trying to Disply on browser it is showing me Junk character and even storing juck character.
    If i removed character set from my called JSP i.e. InsertRecord.jsp it showing me perfect Japanese Value which i passed but while storing in Databases it is showing Junk character.
    One Imp thing is using Perl and DBD and Oracle developed no of application these are working really smooth on same Server.
    If fact this is the First Jsp Program of my career and that too with Japanese ppl .. So Please help me ..
    Thanks in Advance
    Maruti Chavan

    same problem, data not replicated.
    its captured,propagated from source,but not applied.
    also no apply errors in DBA_APPLY_ERROR. Looks like the problem is that LCRs propagated from source db do not reach target queue.can i get any help on this?
    queried results are as under:
    1.at source(capture process)
    Capture Session Total
    Process Session Serial Redo Entries LCRs
    Number ID Number State Scanned Enqueued
    CP01 16 7 CAPTURING CHANGES 1010143 72
    2. data propagated from source
    Total Time Executing
    in Seconds Total Events Propagated Total Bytes Propagated
    7 13 6731
    3. Apply at target(nothing is applied)
    Coordinator Session Total Total Total
    Process Session Serial Trans Trans Apply
    Name ID Number State Received Applied Errors
    A001 154 33 APPLYING 0 0 0
    4. At target:(nothing in buffer)
    Total Captured LCRs
    Queue Owner Queue Name LCRs in Memory Spilled LCRs in Buffered Queue
    STRMADMIN STREAMS_QUEUE 0 0 0

  • [Forum FAQ] How do i use xml stored in database as dataset in SQL Server Reporting Services?

    Introduction
    There is a scenario that users want to create SSRS report, the xml used to retrieve data for the report is stored in table of database. Since the data source is not of XML type, when we create data source for the report, we could not select XML as Data Source
    type. Is there a way that we can create a dataset that is based on data of XML type, and retrieve report data from the dataset?
    Solution
    In this article, I will demonstrate how to use xml stored in database as dataset in SSRS reports.
    Supposing the original xml stored in database is like below:
    <Customers>
    <Customer ID="11">
    <FirstName>Bobby</FirstName>
    <LastName>Moore</LastName>
    </Customer>
    <Customer ID="20">
    <FirstName>Crystal</FirstName>
    <LastName>Hu</LastName>
    </Customer>
    </Customers>
    Now we can create an SSRS report and use the data of xml type as dataset by following steps:
    In database, create a stored procedure to retrieve the data for the report in SQL Server Management Studio (SSMS) with the following query:
    CREATE PROCEDURE xml_report
    AS
    DECLARE @xmlDoc XML;  
    SELECT @xmlDoc = xmlVal FROM xmlTbl WHERE id=1;
    SELECT T.c.value('(@ID)','int') AS ID,     
    T.c.value('(FirstName[1])','varchar(99)') AS firstName,     
    T.c.value('(LastName[1])','varchar(99)') AS lastName
    FROM   
    @xmlDoc.nodes('/Customers/Customer') T(c)
    GO
    P.S. This is an example for a given structured XML, to retrieve node values from different structured XMLs, you can reference here.
    Click Start, point to All Programs, point to Microsoft SQL Server, and then click Business Intelligence Development Studio (BIDS) OR SQL Server Data Tools (SSDT). If this is the first time we have opened SQL Server Data Tools, click Business Intelligence
    Settings for the default environment settings.
    On the File menu, point to New, and then click Project.
    In the Project Types list, click Business Intelligence Projects.
    In the Templates list, click Report Server Project.
    In Name, type project name. 
    Click OK to create the project. 
    In Solution Explorer, right-click Reports, point to Add, and click New Item.
    In the Add New Item dialog box, under Templates, click Report.
    In Name, type report name and then click Add.
    In the Report Data pane, right-click Data Sources and click Add Data Source.
    For an embedded data source, verify that Embedded connection is selected. From the Type drop-down list, select a data source type; for example, Microsoft SQL Server or OLE DB. Type the connection string directly or click Edit to open the Connection Properties
    dialog box and select Server name and database name from the drop down list.
    For a shared data source, verify that Use shared data source reference is selected, then select a data source from the drop down list.
    Right-click DataSets and click Add Dataset, type a name for the dataset or accept the default name, then check Use a dataset embedded in my report. Select the name of an existing Data source from drop down list. Set Query type to StoredProcedure, then select
    xml_report from drop down list.
    In the Toolbox, click Table, and then click on the design surface.
    In the Report Data pane, expand the dataset we created above to display the fields.
    Drag the fields from the dataset to the cells of the table.
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I have near about 30 matrics. so I need a paging. I did every thing as per this post and it really works for me.
    I have total four columns. On one page it should show three and the remaining one will be moved to next page.
    Problem occurs when in my first row i have 3 columns and in next page if I have one columns then it show proper on first page but on second page also it gives me three columns insted of one. the first column data is exactly what I have but in remaining two
    columns it shows some garbage data.
    I have data like below.
    Metric ColumnNo RowNo
    1 1
    1
    2 2
    1
    3 3
    1
    4 1
    2
    so while grouping i have a row parent group on RowNo and Column group on ColumnNo.
    can anyone please advice on this.

  • Link to documents stored in database on flext front end

    Hi,
    I am a newbie to Flex.Can you please help me out with the
    procedure as how I can to provide a link on flex front end screen
    which when clicked opens either pdf's,ppt's,word docs from
    database. I am integrating the flex with spring and hibernate
    also.can you please tell me how can I connect(Flex to Java
    connection) to the document in the oracle database with the
    link.All the documents are stored in database.So for example if a
    user clicks on a link on flex frontend screen it needs to open a
    pdf file whihc is stored in database.So can you please post me the
    connection details as how flex calls java and inturn java calls
    backend to get the document from database.I am using flex,Spring
    and hibernate frameworks for the application..
    Thanks in Advance
    Chandu

    "chandu2406" <[email protected]> wrote in
    message
    news:gju0i3$ov0$[email protected]..
    > Hi,
    >
    > I am a newbie to Flex.Can you please help me out with
    the procedure as how
    > I
    > can to provide a link on flex front end screen which
    when clicked opens
    > either
    > pdf's,ppt's,word docs from database. I am integrating
    the flex with spring
    > and
    > hibernate also.can you please tell me how can I
    connect(Flex to Java
    > connection) to the document in the oracle database with
    the link.All the
    > documents are stored in database.So for example if a
    user clicks on a link
    > on
    > flex frontend screen it needs to open a pdf file whihc
    is stored in
    > database.So
    > can you please post me the connection details as how
    flex calls java and
    > inturn
    > java calls backend to get the document from database.I
    am using
    > flex,Spring and
    > hibernate frameworks for the application..
    Let's start with the basics:
    Do you already have an understanding of how you'd perform
    these steps if
    Flex were not involved (i.e. some sort of static or dynamic
    html page in the
    browser)?

  • Displaying Images stored in Database

    Hi, all i am having images stored in Databases as BLOB.
    how i can display that in flex application. suppose i am having the ArrayList of Employees in which employee object also have a field of called empImage, how i can display this data in flex.
    i am using BlazeDS.
    Thanks
    Regards
    Amar Deep Singh

    Hi,
    This will give you the idea of getting the image from you array list.
    http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-hori zontallist-control/
    Johnny
    Please rate my answer. Tks

  • Users gets stored in capital case

    Hi,
    We have installed SAP Netweaver 2004s server (J2EE + ABAP) on AIX box .
    We have also installed the Enterprise portal.
    Now if i create a user say "testuser" form the Portal it gets stored as capital
    "TESTUSER" in the ABAP database.
    my question are as follows:
    a)By default does the user gets created in capital case in ABAP env.
    b)Can i supress this.IS ther any setting or configuration where the user name is stored as i give it  i.e. "testuser"
    c)If i create any user form portal it always goes to ABP dtabase and not in UME database.Why is it so.
    Best Regards
    Manoj

    Hi Manoj,
    In abap the user will get created in capital .
    we cannt supress that as it will kill the functionlilty of Portal.
    USER.CORP_LDAP.uid=i802895,ou=people,dc=sap,dc=corp
    GRUP.CORP_LDAP_2.cn=developers,ou=groups,dc=sap,dc=corp
    GRUP.SUPER_GROUPS_DATASOURCE.EVERYONE
    ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q=
    USER.PRIVATE_DATASOURCE.un:admin
    UME objects are identified by a Unique ID which concatenates
    the type, data source and the key to locate the object
    Also since you have installed in ABAP the ume is in ABAP stack.
    Thanx
    Pankaj

  • Where does portal details gets stored in the backend

    Hi Gurus,
    Where does portal contents gets stored in the portal related backend ?
    Example:  We have Content Administration under which we create iviews, pages, worksets and roles. Where does this gets stored ? do they get stored in some table as shown below ?
    Table:
    Parameters:
    iview   'Report a Problem' iView Path      Add Padding Inside Tray   Allow Client-Side Caching   Application Name
    Values:
    Test       com.sap.portal.epsolman.EPSolman     Yes                                     Yes                                Testapp
    How can we fetch the details ?
    Regards,
    Rashmi

    Hi Rashmi
    To get the data from the portal database you need to use a datasource lookup.
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("jdbc/SAP/BC_JMS");
    Connection con = ds.getConnection();
    The following datasources are provided by default for reading data from portal database
    SAP/BC_JMS,SAP/BC_UME, SAP/BC_WDRR.
    You can read more about JDBC Connector Service in the link [http://help.sap.com/saphelp_nw04/helpdata/en/31/4cc81b275a419c8c72dca94366318a/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/31/4cc81b275a419c8c72dca94366318a/frameset.htm]
    You can also refer to this wiki for more details
    [http://wiki.sdn.sap.com/wiki/display/Snippets/DirectAccesstoDatabaseTables|http://wiki.sdn.sap.com/wiki/display/Snippets/DirectAccesstoDatabaseTables]
    Hope this helps.
    Best Regards,
    Ritesh Chopra
    P.S: Please grant points if the answer was helpful

Maybe you are looking for

  • Moving Itunes Library from a Mac hard drive to a Windows hard drive.

    We would like to move our Itunes library from our G5 that is on a external hard drive to another external hard drive that is Windows based to use on our other computer that runs Windows 7. We will not be moving it back to the G5. The hard drive conta

  • In parameter/bind variable( Oracle 10G r/2)

    Hi all, I am trying to pass a date value in Pl/SQL via a table.but befor ethat I attempted to have this variable to be ran during run time. Currently I have this error: PLS-00306: wrong number or types of arguments in call to 'HITS' This is an excerp

  • How to get Information Template fields to Standard Purchase order Document.

    Hi Guy's I Created Information Templates to capture extra information to suit our business needs. But i dont know how to get populate those information into Standard Purchase order docuemnt. After Some research I found that we have to customize the P

  • I want to open a directory only not a file

    Hai have a peace day. I have a question. I'm looking for a dialog box where the user can browse for a directory. All I can find is a dialog box where you can open a file. Is there one to open a directory? If not, how can I solve this so the user can

  • Regarding SAP Queries

    HI Friends I have got a bunch of requirements, related to SAP Queries. I was serching for that, in that regards I am seeking your kind help. 1) I have to write a function module to retrive what are the tables and fields are using in a query. 2) I nee