External data into FA_MASS_ADDITIONS

Hi All,
I am posting data into FA_MASS_ADDITIONS in Assets of the Financial package thru SQL Loader. Then I access the data in the 11i Assets post screen. When I press the button Assignments it raises an error [ APP_FND-00756 : Cannot find Combination CCID: 17744 CODE=GL# SET=101] saying that expense_ccid is missing. Then in the backend i try to update the column Expense_code_combination_id but it fires a trigger FC_MC_MASS_ADDITIONS_AIUD and disallows any updation in that particular column. The documentation says the trigger is fired if Multiple Reporting Currency feature is on. But in our application that feature is not enabled. I have also tried disabling the trigger even then I am not able to update the column.
Hope you guys could clarify.

Hi All,
I am posting data into FA_MASS_ADDITIONS in Assets of the Financial package thru SQL Loader. Then I access the data in the 11i Assets post screen. When I press the button Assignments it raises an error [ APP_FND-00756 : Cannot find Combination CCID: 17744 CODE=GL# SET=101] saying that expense_ccid is missing. Then in the backend i try to update the column Expense_code_combination_id but it fires a trigger FC_MC_MASS_ADDITIONS_AIUD and disallows any updation in that particular column. The documentation says the trigger is fired if Multiple Reporting Currency feature is on. But in our application that feature is not enabled. I have also tried disabling the trigger even then I am not able to update the column.
Hope you guys could clarify.

Similar Messages

  • Load external data into se-main-menu

    hi,
    i've tried to load external data (vars,files)into a selfmade
    sony-ericsson-flash-menu for the w810i.
    it is possible to load the data for the current active menu
    via loadVariablesNum("application://focused", 0);
    so i thought i could load some other stuff into the mainmenu.
    i tried to load an swf with loadMovie/loadMovieNum.
    i tried to load vars from a txt-file with
    loadVariables/loadVariablesNum.
    and i tried to open a webadress with getURL.
    but nothing happens ... :(
    the files (swf,txt) are in the same folder like the
    mainMenu.(tpa\preset\system\desktop\flash)
    maybe the w810 does not execute the swf in the same folder
    where it is at the moment?!
    is it possible to figure out where the swf is executed?
    the _url command is not supported by flash-lite-1.x ...
    some ideas?

    Hi Joanne,
    LSMW - Legacy System Migration Workbench is very user friendly tool provided by SAP for legacy data load.
    use link below for documentation
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    You can also, use SAP best practice PCC Excel Template and load programs (delivered by SAP) for each Infotype PA / PD.
    Hope this helps.
    - Bharat

  • How can i import external data into folders in iCloud?

    I currently have all my iPhoto folders stored on a external harddrive (removed from iPhoto) and would like to put them in iCloud. The unfortunate thing is that i have an Macbook Air, and not enough memory to put all the folders back in iPhoto to have them uploaded to iCloud.
    - i have tried iCloud Drive, but this doesn't create folders..
    Thanks!

    You can create folders on iCloud Drive, like you create folders in Finder on your hard drive.
    Just open iCloud Drive in Finder and enter ⌘N to create a new folder. Then drag your photos to that folder and rename the folder.
    Only the special folders created by the standard apps do not allow to create deeply nested folders inside  these folders.
    The unfortunate thing is that i have an Macbook Air, and not enough memory to put all the folders back in iPhoto to have them uploaded to iCloud.
    If you want to move the photos to iCloud Drive to save space on your MacBook Air, that will not work.  For any file you store on iCloud Drive there will be a shadow copy on your Mac, so you cannot save space on your MacBook Air this way. You need as much spce on your MAcBook Air as you are using in iCloud.  Maybe this will change in future MacOS X versions, but right now you will have all iCloud files stored locally as well.
    See:   iCloud Drive FAQ

  • JS CS3 import external data into Dialog.

    I would like to create a dropdown in a dialog that is populated by either an XML or txt file. Can this be done?
    First an xml or txt file would be created listing all the current products we do. This would sit on a server.
    The InDesign script would read the xml or txt file and in the dialog screen under products would only provide the user the names in the xml/txt file.
    The user could select the product in the list and run the script.
    The xml/txt file could be updated at any time (add or remove products as required)

    I'm trying to expand of this example but I've come across a slight problem.
    I've change the simple xml to this.
    <queues>
      <option>
        <optionname>PDFFiles</optionname>
        <optionpath>/c/pdfs/</optionpath>
      </option>
      <option>
        <optionname>PSFiles</optionname>
        <optionpath>/c/postscript/</optionpath>
      </option>
    </queues>
    The script below should alert the selection no and the selection path
    if the first option is selected:
         alert("selection No is "+myDialog.DDgroup.myProducts.selection);  
    will return selection No is 0
          alert("path is "+xmlobj.option[myDialog.DDgroup.myProducts.selection].optionpath.toString());
    returns path is
    Shouldn't xmlobj.option[myDialog.DDgroup.myProducts.selection].optionpath.toString() return /c/pdfs/ if myDialog.DDgroup.myProducts.selection returns 0?
    var prefXMLFile = File("/c/queues.xml");
    if(prefXMLFile != null){
    var myResult = prefXMLFile.open("r", undefined, undefined);
    if(myResult == true){
    var xmlstr = prefXMLFile.read();
    else
    alert("Error")
    prefXMLFile.close();
    var xmlobj = new XML (xmlstr);
    //$.write(xmlobj.option);
    var myitems= xmlobj.option.length();
    myDialog=new Window('dialog', 'Simple Dialog');
    myDialog.orientation = 'column';
    myDialog.alignment = 'right';
    myDialog.DDgroup = myDialog.add('group');
    myDialog.DDgroup.orientation = 'row';
    myDialog.DDgroup.add('statictext', undefined,"Simple XML droplist.");
    myDialog.DDgroup.myProducts = myDialog.DDgroup.add("dropdownlist",undefined, undefined);
    myDialog.Btngroup = myDialog.add('group');
    myDialog.Btngroup.orientation = 'row';
    myDialog.Btngroup.alertBtn = myDialog.Btngroup.add('button', undefined, 'Alert Selection');
    myDialog.Btngroup.closeBtn = myDialog.Btngroup.add('button', undefined, 'Close');
    for (i=0;i<myitems;i++)
    var curitem= xmlobj.option[i].optionname.toString();
    myDialog.DDgroup.myProducts.add("item",curitem);
    myDialog.Btngroup.alertBtn.onClick = function() {
    if (myDialog.DDgroup.myProducts.selection == null ){
    alert("Make Selection");   
    }else{
    alert("selection No is "+myDialog.DDgroup.myProducts.selection);   
    alert("path is "+xmlobj.option[myDialog.DDgroup.myProducts.selection].optionpath.toString());   
    myDialog.Btngroup.closeBtn.onClick = function() {
      this.parent.parent.close();   
    myDialog.show();

  • How to load external data without using external tables

    Hi,
    I'm asked to develop an ETL for loading external data into a database but, unfortunately, the vers. is 8i so I can't use external tables.
    I know that it's possible by using SQL-Loader. What I want to know is whether there's another way in 8i to load external data from a text file or a CSV file directly with a stored procedure without having to write CTL of SQL-Loader on the server. I mean, is there a way to write everything on the database the same manner I'd do whether I wrote data from a table to a file using for example UTL_FILE or the unique way is to write control files of SQL-Loader directly on the server?
    Thanks!

    Mark1970 wrote:
    Thank you very much Karthick
    I didn't know I could use UTL_FILE also for reading files. I've always use it only for writing data into external files.Yes you can use UTL_FILE to read. The version of oracle you are using i last used in 2004 :) Still remember giving the OS path of the file to open the file. That is long gone now. Its surprising that you are still in 8i.

  • COPA : External data transfer

    Dear Guru`s,
    While executing KEFC t-code to upload external data into COPA,system it is showing error.
    Below are the screen shots attached..
    Regards
    Nitisha

    Hi Nitisha
    I believe this has something to do with the format or the values (content) of the file you are trying to upload.
    Check the following link too and see if you get any pointers to help resolve your issue
    Error executing transaction KEFC
    Issue with KEFC transaction
    Error in KEFC transaction
    Hope its helpful
    Regards
    Mustafa

  • Error while loading  data into External table from the flat files

    HI ,
    We have a data load in our project which feeds the oracle external tables with the data from the Flat Files(.bcp files) in unix.
    While loading the data, we are encountering the following error.
    Error occured (Error Code : -29913 and Error Message : ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: un) while loading data into table_ext
    Please let us know what needs to be done in this case to solve this problem.
    Thanks,
    Kartheek

    Kartheek,
    I used Google (mine still works).... please check those links:
    http://oraclequirks.blogspot.com/2008/07/ora-29400-data-cartridge-error.html
    http://jonathanlewis.wordpress.com/2011/02/15/ora-29913/
    HTH,
    Thierry

  • External data transfer into CO - Profitabilty Analysis tables

    Gurus, Sending this again as the earlier one was not answered. Please give us some insight ASAP.
    We are implementing the custom allocations to CO-PA (Profitability Analysis) records externally and trying to post close to million records into CO-PA table CE1xxxx. What is the most efficient method should be used for the posting of the externally created records into CO-PA table. Transaction KE21 is used for one entry at a time. We need to perform the mass data transfer. We also checked the BAPI BAPI_COPAACTUALS_POSTCOSTDATA. It clearly says that it is not for mass data transfer. Also, it updates the CE4xxxx table only. We need the data posted to CE1xxxx table. Any ideas!!!
    There is a transaction KEFC - External data transfer to CO-PA. Has anyone used it? Please provide your insight on this transfer method.
    Any suggestions are appreciated.
    Thank you.

    Ashish,
    We use KEFC on a regular basis to upload actual sales data to PA from a third system.
    An upload file is created in Excel, saved as a TXT file. The structure of that excel file is equal to the structure defined in customizing: define data interface to find the structure and: define structure of external data transfer to see the respective values of the columns you need in your excel file.
    Hope this works for you!
    Regards,

  • Pull data from a table in HTML format from external URL into a Servlet

    How do I pull data from existing website html table into a Servlet?
    I will need to pull the data into a servlet. So, the servelet will need to go to the URL and get the data and save them as variables.
    I know I will need an array to store the data. I just dont know how to call the URL and have the servelet search the site for the <table> </table>.
    I will later use this to save to a database.
    Thanks
    Edited by: DJMegabit on Apr 14, 2010 7:36 PM

    Maybe give us more details about what exactly You'd like to achieve. I guess that there might be better solutions to the problem.

  • Sharepoint 2013 Excel External Data Source Refresh Issue

    I have been facing this issue for quite some time now.. i have created an Excel sheet in Excel-13 and have imported data from an external data source [SQL server 2012]. 
    Everything is working fine, with the excel sheet on the desktop. Data refreshes, every-time i open the excel file and also at regular intervals that i have configured in the data source properties.
    The problem begins when i save that excel sheet on my sharepoint server. the issues that i am facing are :
    1. Changes made into the original data source, are not reflected immediately inside the excel sheet inside the browser. after 5-10 minutes, it reflects the changes..
    2. The data doesn't refreshes automatically. After i update my data inside the sql server table, i have to manually trigger the refresh of the data connection when viewing the excel sheet inside the browser, even though i have marked "Refresh when opening
    the file", and refresh every 1 minute inside the excel sheet. Any solutions ??
    I have been troubled a lot by this issue, and seek for some quick solution.. Any help here ??

    I found the solution finally, my self ..
    Issue - 1 : It's going to take atleat 5-minutes to refresh the data connection, that is generally not a big time span.
    Issue - 2 : 
    --> Set Your connection to refresh everytime the file is opened. go to internet explorer -> file -> internet options -> general -> Browsing History -> Settings -> Check for newer versions of stored pages... Check 'Every time I visit the
    webpage'. 
    Now everytime i update your original data source, wait for 5-10 minutes and refresh my web page containing the excel sheet.. The Contents of the excel sheet are updated as desired..

  • How to attach pdf data into SRM ?

    we have a report which sends out a smartform purchaseorder as a pdf to a vendor by email.
    Now the requirement is to connect the sent pdf into srm in order to be visible for checking the billing.
    it is easy to attach an external file into srm but now I already have alle the data available in sap after sending the pdf as attachment in the mail.
    is it also possible to directly transfer this data directly into srm with for instance BAPI_DOCUMENT_CREATE ??
    or is another step in between necessary ?
    this is the coding for sending the email
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
           EXPORTING
                format_src      = 'OTF'
                format_dst      = 'PDF'
                devtype         = 'MAIL'
    *           FUNCPARA        =
           CHANGING
                transfer_bin    = xtransfer_bin
                content_txt     = t_cont_txt
                content_bin     = t_cont_bin
                objhead         = objhead_att
                len             = tabsize
           EXCEPTIONS
                err_conv_failed = 1.
      DESCRIBE TABLE t_cont_bin LINES tablines.
      MOVE i_attach_head TO t_objhead.
      APPEND t_objhead.
    * Objectpack opbouwen voor attachment
      t_objpack-transf_bin = 'X'.
      t_objpack-head_start = 1.
      t_objpack-head_num = 1.
      t_objpack-body_start = 1.
      t_objpack-body_num = tablines.
      t_objpack-obj_name = i_attach_name.
      t_objpack-obj_descr = i_attach_descr.
      t_objpack-doc_type = 'PDF'.
      t_objpack-doc_size = tablines * 255.
      APPEND t_objpack.
    * Ontvangerlijst opbouwen
      LOOP AT t_receiver.
        MOVE-CORRESPONDING t_receiver TO trcv.
        MOVE 'U' TO trcv-rec_type.    " Extern mailadres
        APPEND trcv.
      ENDLOOP.
      DESCRIBE TABLE trcv LINES h_lines.
      IF h_lines = 0.
        RAISE no_receiver.
        EXIT.
      ENDIF.
    * Zender
      IF i_sender IS INITIAL.
        so_sender = sy-uname.
        so_sendertype = 'B'.
      ELSE.
        so_sender = i_sender.
        so_sendertype = 'INT'.
      ENDIF.
    * Mail verzenden
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
              document_data              = s_docdata
              put_in_outbox              = 'X'
              sender_address             = so_sender
              sender_address_type        = so_sendertype
              commit_work                = i_commit_work
    *       IMPORTING
    *         SENT_TO_ALL                =
    *         NEW_OBJECT_ID              =
    *         SENDER_ID                  =
           TABLES
              packing_list             = t_objpack
              object_header            = t_objhead " Mailheader
    *          CONTENTS_BIN             = T_OBJBIN  " Binaire data (attach)
              contents_txt             = t_doctxt  " ASCII-data
              contents_hex             = t_cont_bin " Hex-data
    *         OBJECT_PARA              =
    *         OBJECT_PARB              =
              receivers                = trcv
           EXCEPTIONS
              too_many_receivers         = 1
              document_not_sent          = 2
              document_type_not_exist    = 3
              operation_no_authorization = 4
              parameter_error            = 5
              x_error                    = 6
              enqueue_error              = 7
              OTHERS                     = 8.
      IF sy-subrc NE 0.
        RAISE mail_not_sent.
      ENDIF.
    I have also found this thread but also no answer there to this as it seems simple requirement ??
    PDF Creation + connection to DMS
    kind regards
    Arthur de Smidt
    Edited by: A. de Smidt on May 17, 2011 2:43 PM

    ok solved it myself by using cl_gui_frontend_services=>gui_download with
    BAPI_DOCUMENT_CREATE2

  • How to embed data into an InDesign Document

    Hello everybody,
    I'm porting a QuarkXTension to InDesign CS3 on PC but, maybe, I've found a showstopper...
    The current xtension writes some collected data into a document slug that is retrieved by an external application simply scanning the content of the file.
    I need to maintain the same way with InDesign but I've discovered that the persistent data added to a document workspace doesn't stay all together when is more than few KBytes (everything seems to be ok until 2 KBytes but that's too little) inside the InDesign document but is scattered on many locations. Of course this makes the work of the external application impossible.
    Is there any way to command/force inDesign to write the persistent data insidde the file in one single chunk?
    I understand this is something unusual but that's the way that complex publishing workflow works and can't be changed in that part.
    Thanks a lot in advance for any help.
    Best regards,
    Luca Severini

    I think I have found a possible solution to embed my data in a way readable by an external application. To use the XMP toolkit.
    Very interesting the fact XMP Toolkit includes the source of a simple command line tool that parses the xmp embedded into InDesign file.
    The same source can be easily modified to get all the objects contained in the document aka database.
    Bye
    Luca

  • Using sql load insert multiple fields data into a single column in database

    Hi ,
    I have my log file in sun OS box something like this
    =======
    (07/29/2009 00:02:24.467) 367518 (07/29/2009 00:02:26.214) 949384011
    (07/29/2009 00:02:26.236) 3675 (07/29/2009 00:02:28.207) 949395117
    (07/29/2009 00:02:28.240) 337710 (07/29/2009 00:02:30.621) 949400864
    =============
    I am trying to insert the data into oracle data base as follows.
    =============================
    column1 : (07/29/2009 00:02:24.467)
    column2 : 367518
    column3 : (07/29/2009 00:02:26.214)
    column4 : 949384011
    ===========================
    Can anyone help me with the control file format?
    someone suggested me the code below.
    ==========
    LOAD DATA
    INFILE 'D:\work\load.txt'
    INTO TABLE sample
    (col1 POSITION(02:24) char,
    col2 POSITION(27:32) INTEGER EXTERNAL,
    col3 POSITION(35:57) CHAR,
    col4 POSITION(60:68) INTEGER EXTERNAL
    ===========
    but this works only for the fixed length data? Please help

    user11744904 wrote:
    Hi ,
    I have my log file in sun OS box something like this
    =======
    (07/29/2009 00:02:24.467) 367518 (07/29/2009 00:02:26.214) 949384011
    (07/29/2009 00:02:26.236) 3675 (07/29/2009 00:02:28.207) 949395117
    (07/29/2009 00:02:28.240) 337710 (07/29/2009 00:02:30.621) 949400864
    =============
    I am trying to insert the data into oracle data base as follows.
    =============================
    column1 : (07/29/2009 00:02:24.467)
    column2 : 367518
    column3 : (07/29/2009 00:02:26.214)
    column4 : 949384011
    ===========================
    Can anyone help me with the control file format?
    someone suggested me the code below.
    ==========
    LOAD DATA
    INFILE 'D:\work\load.txt'
    INTO TABLE sample
    (col1 POSITION(02:24) char,
    col2 POSITION(27:32) INTEGER EXTERNAL,
    col3 POSITION(35:57) CHAR,
    col4 POSITION(60:68) INTEGER EXTERNAL
    ===========
    but this works only for the fixed length data? Please helpIs the requirement to load all data in a single column or multiple columns? The thread subject and body are conflicting.

  • BPC 7.5NW External Data Links

    Hi All u2013
    This question is in regards to a BPC 7.5 NW (SP8) input schedule stored in BPC with externally linked MS Excel 2007 spreadsheets stored outside BPC.
    I have built an input schedule (which is stored in a team folder) and linked external excel spreadsheets into the schedule. My EVDRE is in Sheet1. Sheets2 u2013 5 contain the links to my non-BPC workbooks.
    My problem is that when I use the u201CSend and Refresh Schedulesu201D u2013 u201CActive worksheetu201D, multiple windows pop-up for updating the links in the non-active (external data linked) worksheets. Does anyone have a better way to link data external to BPC in a schedule or report? If not, is there a way to stop these pop-ups?
    Thank you!

    Hi,
    Can you try as follows:
    workbook options> Refresh Options> Check EVDRE : Refresh by Sheet.
    Hope it helps..
    regards,
    Raju

  • "External Data Refresh Failed" in Excel Workbook in SharePoint 2013

      Hi Everyone,
    I hope someone can help me sort this out. I wasn't sure if this should be submitted to SQL Server 2012 or SharePoint 2013 but I think I have ruled out an actual SQL issue here.
    I have a test SharePoint 2013 Farm installed on one server.  On that server we have SQL Server 2012 Standard (Database Engine Only) installed as one instance for SharePoint 2013.  SharePoint 2013 is installed as Enterprise. 
    On another server I have SQL Server 2012 Enterprise installed I have both the Database Engine and Analysis Services installed on that server in one Instance.
    I have created a new Analysis Services Cube and stored in on that server using VS 2012 Data Tools.   I then use Office 2013 Excel and create a new Pivot Table and bring in that data into that workbook.  I save that workbook to my desktop and
    can click on the DATA tab and do a "Refresh All" and the data is refreshed with no problem. 
    I then Save that Workbook to SharePoint 2013 in my Business Center documents library. I then try to do a Data Refresh and get the following error: External Data Refresh Failed. We were unable to refresh one or more data connections in the workbook. The following
    connections failed to refresh: servername ConnectionName.
    Let me tell you a little bit about how I have my SharePoint 2013 setup.
    In Application Management ==> Secure Store Service - I have a Target Application Id setup with an AD account name and password.
    In Application Management ==> Excel Services Application Settings - I an using an Unattended Service Account that is pointing to the Target Application ID that I setup in Secure Store Service.
    Now in SQL Server 2012. I have made the AD account name and password a SYSADMIN account (because nothing seemed to work) and mapped that login to my Database that I created my cube from.
    I have went into the Properties of my Analysis Server on SQL Server 2012 and out that AD userid in the Security Page as a Server Administrator. 
    Now let me tell you the real kicker here. 
    I also have a Sharepoint 2010 farm that we have been testing for about a year.  This is something we wanted to go into production with but now have decided we will deploy our new production site on 2013. 
    This has the same setup only I am using SQL Server 2008 R2 as my database for SharePoint 2010, and am using SQL Server 2008 R2 on another server and instance for Database Engines and Analysis Server. 
    I have already created a cube on the SQL 2008 r2 Analysis Server using BIDS.
    I created a Excel Pivot Table based on that cube and save it to the SharePoint 2013 site.  
    I then put the SSS AD account name on the SQL Server 2008 Analysis Services Security as Administrator.
    I pull up that Excel Workbook and go into Data and do a Refresh All and it works. 
    I then bring up my copy of the Excel workbook I created for my SQL Server 2012 Cube (this does not work on SP 2013) and save it to my Business Center in SP 2010.  This will do a DATA Refresh on that workbook.
    Another thing that I have done, (we have Office Web Apps Server running on the SP 2013 side), is set SPWOPISuppressSetting -view -extension xlsx so that when I bring up the Excel spreadsheet in 2013 it has a url with the xlviewer instead of the WOPI 
    url.
    OK.  I have went through all of my setup.   I am must wondering if I missed something in my install for this.  HELP.   There can't be that much difference in the installation between 2010 and 2013. 
    Thanks in Advance everyone.

    After many hours of research and totally burning down my SQL Server 2012 server because of the many changes I made to it, I finally found the issue that caused this and specifically why SP would not work with SQL Server 2012 Analysis Services.  This
    time I reinstalled SQL Server 2012 from scratch again but only put SP1 on at this time.  I can't be completely sure this fixed the issue since I have not put any of the other CU  on the box.  But, after the reinstall, everything seemed to work
    perfectly from the Excel Services side.
    The issue I then ran into was that I could not get my PerformancePoint Services to work with my Cubes that were created on SQL Server 2012.  I received Error Message " The DataSource Provider for data sources of type 'ADOMD.NET' is not registered" on
    my SharePoint 2013 Server Event Viewer. 
    I finally found this post on the issue: 
    http://yossidahan.wordpress.com/2012/08/14/cant-get-ssas-databases-to-appear-in-performance-point-dashboard-designer-check-you-adomd-net-version/
    Seems that SP 2013 is built to use SQL Server 2008 R2 Analysis Services, so you need to install the ADOMD.net from SQL Server 2008 in order for it to work.   But make sure you install Version 10 since if you install any other it doesn't seem to
    work. 
    I feel like I wasted a whole month tracking these issues down, and I haven't been able to test PowerView, PowerPivot or SSRS yet.  I hope there is not any more. 

Maybe you are looking for

  • Satellite A200 - Question about HDD partitions and RAM

    This may be in the wrong section... I don't know. I've never owned an OEM OS and I also don't understand why the HDD comes partitioned 90, 2, 90 (who thought of that?). The thing is that I have to format and partition differently (since I have to dua

  • How do I edit Photoshop files in Dreamweaver ??

    Environment: Windows 7 Pro 64-bit, 8GB RAM. In Dreamweaver CS6, have graphics (.jpg) files in Assets; I double click to edit in PhotoShop and it defaulted to photoshop CS5 and then indicates that it is unable to load.  Unfortunately (?) I have Photot

  • What is PHP_SELF

    Can anyone explain what this piece of code is and what it does? $currentPage = $_SERVER["PHP_SELF"]; Code put in by Dreamweaver Thanks

  • Adjusting the animation speed from outside javascript

    Is it possible? i want to speed up the animation if, lets say, someone clicks on a menu item an the visible viewport is at the end of the animation. I found a variable called "pixelperms" in the edge.js but i don't know how to acces it. Help highly a

  • Attaching messages in Mail

    Hello everyone. I've searched the forums and can't find a clear answer or recent post. I started using DavMail for my work email, since we use an Exchange 2003 server, along with Mail to get away from Entourage 2008. A common practice for me is to at