Locating DB table: Contract Repository filepath

Hi Experts,
We are on Sourcing 9.0.15  with Oracle database.
For contract generation, we have enabled new DOCX(java based) service. My query is:
What would be the logical filepath of contract repository under this new service where the contract documents will reside , now that we have disabled old window based contract gen server.
We have confirmation from SAP(through an OSS) that because everything is built with the new CG, the contract documents are stored just in the DB and will no longer be accessible from the Wordservice machines as such. This is understood. So,
What would be the filepath or how do we find the documents in DB. To write any queries, we need to know what table do we look out for.
Any pointers/insights will help here.
Thank You,
Tripti

hi,
i had resolved my problem in other way.I don't upload my data using ws_upload now,but upload with table.
here is my code.Maybe helpful to somebody:
       JCO.Table C_XYORDERTable;
     JCO.Table C_XYORDPR_FINALTable;
     public void getXyordprFinalElement(Element e) {
          try {
               for (Iterator i = e.getChildren().iterator(); i.hasNext();) {
                    Element child = (Element) i.next();
                    if (child.getName().equals("ORDER_ID"))
                         C_XYORDPR_FINALTable.setValue(child.getText(), "ORDER_ID");
                    else if (child.getName().equals("ID"))
                         C_XYORDPR_FINALTable.setValue(child.getText(), "ID");
                    else if (child.getName().equals("PRODUCT_ID"))
                         C_XYORDPR_FINALTable.setValue(
                              child.getText(),
                              "PRODUCT_ID");
                    else if (child.getName().equals("MATNR"))
                         C_XYORDPR_FINALTable.setValue(child.getText(), "MATNR");
                    else if (child.getName().equals("QUANTITY"))
                         C_XYORDPR_FINALTable.setValue(child.getText(), "QUANTITY");
               C_XYORDPR_FINALTable.nextRow();
          } catch (Exception ex) {
               ex.printStackTrace();

Similar Messages

  • How to create xsd's for each table in repository instead of entire repos

    Hi Gurus,
    Is there any way i could create xsd's for each table in the repository separately instead of creating single xsd file from "Export repository schema" option which creates a single xml file for the entire repository.I need to create xsd for each table in repository...
    Any Help greatly appreciated
    Thanks
    Aravind

    Open the Lookup table you want the XSD for, in Data manger
    Export it to access.( You can select all the fields you want to export to access and then check option "open Access after export")
    Now in Access, again right click the table and export it to XML.
    Provided you have .NET frame work installed on the machine where you are doing this export, you can do the following:
    Use XSD.exe from command prompt and get the XSD.
    Use the following link as a reference for XSD stuff.
    http://msdn.microsoft.com/en-us/library/x6c1kb0s(VS.71).aspx
    (OR)
    Get the whole XML of the repository and distill the whole structure for Lookups and create XSD using any standard XML editor.

  • How to load with DTW accounts to be located in table

    Hi,
    I'm not an expert with SQL but i wish to upload with DTW the content to be located in table CRD3.
    Is there any easy way to populate it if i put in Excel these parameters ?
    1 - Business Partner code
    2 - Code of the control account (O, "D" for down-payment...)
    3 - GL Account to be populated
    Thanking you in advance
    Stephane

    Hello Stephane,
    you could upload it along with BusinessPartner template as header and the business partner code must be as same as the code in the businesspartner.
    code of the control account is depended on your GL account whether it is segmented or not. if segmented, it will be like this e.g. _SYS00000000003, if not, just type the GL account code. if you mean you refer to AccountCode property in the template
    in your 3rd question, are your referring to AccountTypes ? if yes, you must fill in the column :
    bpat_General  
    bpat_DownPayment  .   
    bpat_AssetsAccount   
    bpat_Receivable    
    bpat_Payable    
    bpat_OnCollection     
    bpat_Presentation    
    bpat_AssetsPayable     
    bpat_Discounted 
    bpat_Unpaid 
    bpat_OpenDebts 
    let me know if you still confuse
    Rgds,

  • Map Excel worksheet into Oracle tables in repository

    I am new to VB2005. I am working on VB code that can map(read) any table from excel worksheet and load it into Oracle tables. Oracle tables that I have are: 1)META_OBJECTTYPES
    (OBJECTTYPEID pk,OBJECTTYPENAME,OBJECTTYPEDESC, OBJECTMETATYPE,OBJECTDOMAIN).
    2) META_OBJECTS(OBJECTKEY PK,OBJECTTYPEID FK,OBJECTNAME,OBJECTDESC).
    3)META_OBJECTDEPENDENCIES(SRCOBJECTKEY FK, TGTOBJECTKEY FK,DEPENDENCYTYPE PK)
    4)META_OBJECTATTRIBUTES
    (OBJECTKEY FK, OBJECTATTRNAME PK,OBJECTATTRVALUE).
    NOTICE META_OBJECTTYPES IS PARENT TO META_OBJECTS AND META_OBJECTS IS PARENT TO (META_OBJECTDEPENDENCIES AND META_OBJECTATTRIBUTES) AND ALL PARENT HAS 1 TO MANY REALTIONSHIP TO CHILD TABLES. For example, I have employee table in Excel worksheet that has two columns employee_id number, employee_name varchar2(50) I need my vb code map table name employee with its 2 columns into my 4 tables that I have in Oracle table repository,
    My code so far just insert values into oracle tables in repository, but what is require is mapping table with contents into oracle tables. If my expanation isn't clear plz let me know.
    Imports System
    Imports System.Data
    Imports Oracle.DataAccess.Client '
    Imports Excel = Microsoft.Office.Interop.Excel
    Public Class Form1
    'System.Data.OracleClient lets you access Oracle databases.
    Public con As System.Data.OracleClient.OracleConnection = NewSystem.Data.OracleClient.OracleConnection()
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim xlApp As Excel.Application
    Dim xlWorkBook As Excel.Workbook
    Dim xlWorkSheet As Excel.Worksheet
    Dim range As Excel.Range
    Dim rCnt As Integer
    Dim cCnt As Integer
    Dim Obj As Object
    xlApp = New Excel.ApplicationClass
    xlApp.Visible = True
    xlWorkBook = xlApp.Workbooks.Open("c:\employee.xls")
    xlWorkSheet = xlWorkBook.Worksheets("sheet1")
    range = xlWorkSheet.UsedRange
    For rCnt = 2 To range.Rows.Count 'rows in Excel start from row2
    For cCnt = 1 To range.Columns.Count 'column in Excel start from col1
    Obj = CType(range.Cells(rCnt, cCnt), Excel.Range)
    MsgBox(Obj.value)
    Next
    Next
    xlWorkBook.Close()
    xlApp.Quit()
    releaseObject(xlApp)
    releaseObject(xlWorkBook)
    releaseObject(xlWorkSheet)
    End Sub
    Private Sub releaseObject(ByVal obj As Object)
    Try
    System.Runtime.InteropServices.Marshal.ReleaseComObject(obj)
    obj = Nothing
    Catch ex As Exception
    obj = Nothing
    Finally
    GC.Collect()
    End Try
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim daOracle As New OracleDataAdapter
    Dim InsertCommand As New OracleCommand
    daOracle.InsertCommand = New OracleCommand
    '1.Create connection object to Oracle database
    Dim con As OracleConnection = New OracleConnection()
    Try
    '2.Specify connection string
    con.ConnectionString = ("Data Source=gema;User Id=dare; Password=rtae")
    '3. Open the connection through ODP.NET
    con.Open()
    Dim cmd As OracleCommand = New OracleCommand
    cmd.Connection = con
    cmd.CommandType = CommandType.Text
    cmd.CommandText = "insert into meta_objecttypes values (4,'TABLE', 'TABLES','ERstudio','Demo')"
    cmd.ExecuteNonQuery()
    'You have to commit to be inserted into DB
    cmd.CommandText = "commit"
    cmd.ExecuteNonQuery()
    Finally
    ' Close and Dispose OracleConnection object
    con.Close()
    con.Dispose()
    End Try
    End Sub
    Private Sub Add_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Add.Click
    Dim daOracle As New OracleDataAdapter
    Dim InsertCommand As New OracleCommand
    daOracle.InsertCommand = New OracleCommand
    '1.Create connection object to Oracle database
    Dim con As OracleConnection = New OracleConnection()
    Try
    If TableName.Text = "" Then
    MsgBox("Please enter the tablename", MsgBoxStyle.Exclamation, "OraScan")
    Exit Sub
    End If
    MsgBox(TableName.Text, MsgBoxStyle.Exclamation, "OraScan")
    '2.Specify connection string
    con.ConnectionString = ("Data Source=gema;User Id=dare; Password=rtae")
    '3. Open the connection through ODP.NET
    con.Open()
    Dim cmd As OracleCommand = New OracleCommand
    cmd.Connection = con
    cmd.CommandType = CommandType.Text
    cmd.CommandText = "select * from user_objects where object_name='" + UCase(TableName.Text) + "' and object_type='TABLE'"
    cmd.ExecuteNonQuery()
    'You have to commit to be inserted into DB
    'cmd.CommandText = "commit"
    'cmd.ExecuteNonQuery()
    MsgBox("Command executed successfully", MsgBoxStyle.Exclamation, "OraScan")
    Finally
    ' Close and Dispose OracleConnection object
    con.Close()
    con.Dispose()
    End Try
    End Sub
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TableName.TextChanged
    End Sub
    End Class

    Don't know if this will help you or not, but I have some code that will read from and Excel spreadsheet and put the data into a DataSet (i'm sure something else could be used).
    string connectionString =
    @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\\testRead.xls;Excel 12.0;HDR=YES;IMEX=1";
    DbProviderFactory factory =
    DbProviderFactories.GetFactory("System.Data.OleDb");
    DbDataAdapter adapter = factory.CreateDataAdapter();
    DbCommand selectCommand = factory.CreateCommand();
    selectCommand.CommandText = "SELECT * FROM [dogs$]";
    DbConnection connection = factory.CreateConnection();
    connection.ConnectionString = connectionString;
    selectCommand.Connection = connection;
    adapter.SelectCommand = selectCommand;
    DataSet cities = new DataSet();
    adapter.Fill(cities);
    GridView1.DataSource = cities;
    GridView1.DataBind();
    Your provider might be different; the one above is for Office 2007. The [dogs$] in the selectCommand.commandText is the name of the worksheet in Excel.
    Hope this helps

  • What is the source table for repository browser info?

    Hi guys,
    I need to create report for everyday's data refresh, mostly like what repository browser does. So what is the source table for repository browser info? I am in OWB 10gR2. Thanks a lot.

    I believe the runtime audit browser uses the views that start with "RAB" in the control center.
    But it would probably better if you used the Audit Execution views. More information can be found in the "API and Scripting Reference" document...
    http://download.oracle.com/docs/cd/B31080_01/doc/owb.102/b28225/api_2runviews.htm
    In order to get access to the Public views from SQL Plus using a schema other than the control center, I believe you need to grant the ACCESS_PUBLICVIEW_BROWSER sys privilege to each OWB user. Look at Note:434718.1 for more information.

  • Changing database location per Table at runtime is extremely slow in viewer

    We are using the Crystal Reports 2008sp2 Viewer in windows forms .NET
    application to display various reports based on a Pervasive database.  The
    C# code dynamically changes the database table locations at run time.  The
    location needs to be set for each table since the location may be different
    for each table in the report. 
    We have tried to methods to change the location.
    1) Set  the Table.Location property in the ReportDocument.Database.Tables
    collection.
    foreach (Table table in rd.Database.Tables)
    Table.Location = "New Path";
    2) Set the TableLogOnInfo properties.
          TableLogOnInfo logonInfo = new TableLogOnInfo();
          logonInfo = table.LogOnInfo;
          logonInfo.ConnectionInfo.ServerName = dataPath;
          logonInfo.ConnectionInfo.LogonProperties[0] = new NameValuePair2("Data
    File", dataPath);
          logonInfo.ConnectionInfo.LogonProperties[0] = new NameValuePair2("Data
    File Search Path", path);
          table.ApplyLogOnInfo(logonInfo);
    Both of these methods work, but have extremely slow performance.  Both
    methods take between 2 and 3 seconds to execute per table.  Since many of
    our reports have 20 - 30 table references ( sometimes more ), this can add
    an additional 1-2 minutes to the display of a report.
    It seems that the Crystal viewer object is doing some sort of verification
    every time the database location is changed.  We have noted that as the
    location is changed, the database is being accessed by the viewer.  Please
    advise as to how to stop this behavior.  Is there a way to set the location
    without the viewer verifying the change?
    This problem is turning reports that run in the 2008 Report Designer in 3 seconds into reports that take
    many minutes to run.  We will hear nothing but screaming from our 300 customers.
    Thanks for any help.
    Bill Smith

    Hello,
    I have a very similar issue but with Crystal XI and XI R2.
    I'm using Oracle 10g, and changing a couple of properties using the following sequence for each table to change the login information and the table's current view (each view is a portion of the overall table):
    IDatabaseTablePtr table = tables->GetItem(tableN);          
    table->SetLogOnInfo(TheApp.GetDataSource(), TheApp.GetDatabase(), userID, pwd);
    char tableLocation[201];
    char tempTable[201], newTable[201];
    strcpy(tableLocation, table->GetLocation());
    // make new table name, put into newTable
    table->PutLocation(newTable);
    if (!table->TestConnectivity())
      ShowCrystalRE_Error(job);
    Stepping through in my debugger, the SetLogOnInfo seems very quick, it's the PutLocation( ) that seems to be taking alot of time.
    Any help would be greatly appreciated.
    This is extremely fast on SQL Server, only noticeably slow on Oracle.

  • Union all for 3 tables on repository

    Hello, could anybody help me to find best way for my case?
    i have 3 physical tables - Objects, Facts and Calendar table.
    On repository, i make this scheme:
    OBJECTS left join FACTS right join DATES
    I creating analysis based on pivot table, i need all Dates (from period) and all Objects, it must look like this:
    _______| Month Day 1 | ... | Month Last Day |
    object 1 | fact X______| ... | fact XX _______|
    ..._____|..._________| ... | ... ___________|
    object N | fact Z_____ | ... | fact ZZ _______|
    So, physical query must be like this:
    all facts (with filter by choosen period)
    UNION ALL
    all dates (with filter by choosen period)
    UNION ALL
    all objects
    I don't like to make 3 unions on analysis criteria, don't like to use one view on physical level.
    How i can make this on repository?

    yes, i found solution, really thanks to Nico :)
    [Possibilities to densify the data|http://gerardnico.com/wiki/dat/obiee/densification]
    You have two possibilities in OBIEE to densify the data :
    by designing the repository : OBIEE - Densification with the fact-based fragmentation capabilities
    or with the OBIEE logical Sql : OBIEE - Densification with the logical Sql

  • Create time dimension table in repository without data warehouse

    Hi,
    I want to implement only BI repository solution in my customer (not datawarehousing). Is it possible to transform the data by repository tools, so that the times columns in fact tables are categorized by the "time dimension" table?
    To be more explanatory:
    The "Sales" table has the "time of sale" column. It contains the timestamp when the sale was performed. I have imported this table in "physical layer" of the repository. Now I want to create a new "time dimension" table, something like:
    CREATE TABLE dimension_time (
    Day_Key INT NOT NULL PRIMARY KEY,
    Day_Timestamp DATETIME NOT NULL,
    Day_Name NVARCHAR(32) NOT NULL,
    Day_Text NVARCHAR(32) NOT NULL,
    INSERT INTO dimension_time VALUES (20110101, {d '2011-01-01'}, '1/1', 'January 1', 'Saturday', 0, 6, 1, 1, 185, 1, 201052, 'W52', 'Week 52', 52, 201101, '01', 'January', 1, 7, 1004, 'Winter', 'Winter', 20111, 'Q1', '1st Quarter', 1, 20103, 'Q3', '3rd Quarter', 3, 20111, 'S1', '1st Semester', 1, 20102, 'S2', '2nd Semester', 2, 2011, '2011', '2011', 2010, '10/11', '2010/2011', 0);
    INSERT INTO dimension_time VALUES (20110102, {d '2011-01-02'}, '2/1', 'January 2', 'Sunday', 0, 7, 2, 2, 186, 2, 201052, 'W52', 'Week 52', 52, 201101, '01', 'January', 1, 7, 1004, 'Winter', 'Winter', 20111, 'Q1', '1st Quarter', 1, 20103, 'Q3', '3rd Quarter', 3, 20111, 'S1', '1st Semester', 1, 20102, 'S2', '2nd Semester', 2, 2011, '2011', '2011', 2010, '10/11', '2010/2011', 0);
    and after to add a new column in "sales" fact table for "time dimension ID" and through the repository populate this column based on the "time of sale" column and the corresponding "time dimension ID".
    I know that the ETL process might perform it, but I do not want to go for Data Warehousing (it is not real - time, needs more resources, etc).
    Is it possible to perform such action only on repository?
    Thank you.

    Hi,
    I can do it, but this would be usefull only to create "time dimension" table. But also the "sales" fact table needs to be altered (thus, the "time" column will not contain the value of the time, but the ID of the corresponding time in the "time dimension" table).
    I know that on DW this procedure is done automatically by the ETL process.
    My question is that does the repository has any tools similar to this?
    Thank you.

  • Standalone table in repository

    Hi everybody!!
    I'm creating a repository with de Oracle BI Administration Tool. I have a problem with a table that doesn't join with any other of the repository, the error description is:
    "15013 Logical table, xxx.yyy, does not join to any other logical table"
    Why is not possible to have an standalone table in a repository?
    Many thanks in advance!
    Jorge.

    Other solution is Create a fake dimension in the business model and create a complex join between your table and fake table.
    1. Create logical table in business model, call it as dummy dim
    2. Create a column dummy col, and select check box derived from logical columns, write '1' in the formula. Make that column as key for the table
    3. Now open business model diagram create a complex join between dummy dim and your standalone table. ( In 1 to many relation dummy table should be at 1)
    4. now show only your standalone table in presentation.
    advantage of this approach is dummy table can be connected multiple stand alone tables. Creating alias might cause some confusion, Just an other idea.
    - Madan

  • Delete Source Table from Repository

    Hi:
    I created a custom folder (XXCUSTOM) in the Informatica repository and in the Sources subfolder I imported a standard EBS table. I now know that the same standard table exists in the Sources subfolder for a SDE folder. So, I went to the custom folder and attempted to delete the EBS table from the Sources subfolder, but I get the response:
    "The source table RA_TERMS_B will be deleted from the repository and any Mappings which use this source will be invalidated."
    Does anyone know if this means that ALL occurrences of the table (including in the SDE folder) will be deleted?
    Thanks.

    Thanks!

  • Location of a maven repository for the new flex 4.1

    Hi,
    does someone know if the latest flex 4.1 (4.1.0.16076) is published in some maven repository.
    the maven repository located in 'https://repository.sonatype.org/content/groups/flexgroup/com/adobe/flex/framework/framewor k/4.1.0.16076/',
    has old files (May 17), and the updated ones (June 30) !!!
    thanks.

    Today I switched 5 times between both systems (10.7 and 10.6.8).
    In both I use Pages 4.1.
    Under 10.6.8, it behave as the 4.0.5 one.
    I must add that I took benefit of changes brought by Lion.
    When a font with the same name is delivered in 10.6.8 and in 10.7, I replaced the 10.6.8 one by the 10.7 one because some of  them solve some oddities which were reported here upon Pages.
    Yvan KOENIG (VALLAURIS, France) jeudi 11 août 2011 22:46:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • API  for updating contract Relationships for Contract Repository

    Hi all,
    what is the API used to update th Contract relationship details in oracle contracts?
    Please help.

    Hello,
    LSMW (Recording/IBIP--Change mode Is Not available in STD SAP ) Will not help you In this case.So Please go for BDC Programme.write BDC logic in such way that it will always fetch Those operation In Task List Which need to be Upadted with  Contract Numbers  by applying condtion check for those operation in task List.
    Reagrds,
    Rakesh

  • Locate Database table used in Program / Transaction

    Hi  Friends,
        I wanted to know that Is there any standard method which would show all the Database tables/query used in that program/Transaction.
       I heard there was Program in 4.6 version as i am unaware of that as well.
       Please if anybody can help me on this
    Thanks

    Hi,
    You can use SQLTrace.
    Check this link.
    How to know the List of Tables that are updated through a ABAP Program
    Kindly reward points by clicking the star on the left of reply if this is useful.

  • User guide for creation of types of tables in repository of oracle BI

    Hi all
    I am using Oracle Business Intelligence Enterprise Edition and I have downloaded guides from this site: http://download.oracle.com/docs/cd/E21764_01/bi.htm
    These are all technical guides and I am interested one more theoretical user guide, for example what are fact tables, how to identify them in my specific database, which is the best practice on identifying fact tables, how to identify which are the dimension tables etc.
    Please help me with some documentation which includes this knowledge
    Thank you and best regards

    Check here:
    http://obiee101.blogspot.com/2009/07/obiee-how-to-get-started.html
    regards
    John
    http://obiee101.blogspot.com/
    http://obiee11g.com/

  • Locating user tables in an Oracle 11g database

    Excuse my ignorance on this subject
    But our company has an Oracle 11g database that drives one of our business applications. I am not an oracle admin and there is very little documentation on the application itself, however the application seems to have its own set of explicit login (username and password) credentials so I am guessing they are hashed somewhere in the database tables.
    My question would be – are there any default oracle tables where user credentials would typically be? or tips on tracking down where the password hashes may be? Or can this differ from application to application? Any tips welcome. Apologies for the naivity of the question. My goal is to identify which database accounts can query the table the hashes are in, as we have some users who can access the database for data analysis purposes - but I dont want them to have access to the table.

    user599292 wrote:
    EdStevens wrote:
    user599292 wrote:
    Excuse my ignorance on this subject
    But our company has an Oracle 11g database that drives one of our business applications. I am not an oracle admin and there is very little documentation on the application itself, however the application seems to have its own set of explicit login (username and password) credentials so I am guessing they are hashed somewhere in the database tables.
    My question would be – are there any default oracle tables where user credentials would typically be? or tips on tracking down where the password hashes may be? Or can this differ from application to application? Any tips welcome. Apologies for the naivity of the question. My goal is to identify which database accounts can query the table the hashes are in, as we have some users who can access the database for data analysis purposes - but I dont want them to have access to the table.The information relative to the user accounts is revealed in the view DBA_USERS, which normal users should not have a need to see. However, the passwords are stored in a true hash. It cannot be used directly, and cannot be reversed. So being able to see the hashed password does not in itself constitute a security risk.
    When a user is being authenticated, the procedure that oracle uses is NOT to 'decrypt' the stored password to see if it matches the password presented by the user. Rather, the password presented by the user is hashed, and that hash value is compared against the stored value.My concern was if they could extract those password hash values, there are many free password crackers where if they run dictionary values against those hash values and if any match they then have some passwords to gain perhaps elevated access in the application.Such a method would have to assume a password, know how oracle 'salts' the password, hash the result, then compare to the hashed values from the table. If you employ even a modicum of password complexity enforcement, I doubt that your developers are going to have access to the kind of computing capacity that would be required to get a positive result within your lifetime.
    You need to do three things
    First and foremost, adhere to the principle of 'least privilege'. Do not grant a user account any privileges that are not required for that account to complete it's business task. That includes access to any tables or views. Be wary of any "--ANY---" privileges.
    Second, use the password complexity function to enforce a reasonable level of password complexity.
    Third, Set the user's profile to expire the pasword after 'x' number of days and prevent the reuse of a password until after 'y' iterations.

Maybe you are looking for

  • How to get the output of a subprocess

    Hi all, I am trying to create a process in which I need to use a gateway with a number of branches. Within each of these branches I need to call a subprocess (in which I have a user assignment) where the user fills in a form. Each of the branches are

  • Problem in Exit button on Browser

    Hi, I am using a Command Toolbar button named Exit. By the way, I am using the below code in the "action" block. public String cb1_action2()         // Add event code here...     FacesContext facesContext = FacesContext.getCurrentInstance();     org.

  • DVD RW is not recognized as a recordable device in Windows 8

    Hi I have Windows 8 installed and if I right click on my CD/DVD drive my Recording tab is missing in Properties. Basically I can read any CD/DVD but I cannot write a CD/DVD. I have 3 CD/DVD drives on my computer. It seems that I need to change the dr

  • Summing up the average field

    Post Author: jehanzeb CA Forum: Formula Dear all, how can we achive the following: I have two fields which are created using formula. My question is how can I get the grand total of those two fields. I have tried using the formula whileprintingrecord

  • [SOLVED] yaourt seems not to manage cache correctly

    Firstly, I'll tell you that I put these options in /etc/yaourtrc to make yaourt save a copy of all the packages: # Build EXPORT=1 EXPORTDIR="/var/cache/pacman/pkg-local" as it's written in the wiki. The problem is that, for example, when I try to upd