Spreadsheet and script

HI,
i need some help in oracle application express with a spreadsheet and script linkup.....if any one can help me please contact me on : [email protected]
the spreadsheet contains errors which i knw off, but im confused how to fix one error so i can upload it later on
thanks in advance

HI,
i need some help in oracle application express with a spreadsheet and script linkup.....if any one can help me please contact me on : [email protected]
the spreadsheet contains errors which i knw off, but im confused how to fix one error so i can upload it later on
thanks in advance

Similar Messages

  • How can I add content from a different spreadsheet and thus create a reference between then?

    Hello,
    I am starting to use Numbers 3.5 in a MacBook Pro Late 2011.
    I am trying to find a way to create a reference between spreadsheets.
    For instance, I have a spreadsheet for each year to control things at home.
    While creating a 2015 version, I can't find a way to make formulas using values from 2014 spreadsheet and make then referenced.
    Does anyone know if it is possible and how can I do that?
    An observation: using excel I can do that with
    'Macintosh HD:Users:gabriel:Documents:Pessoal:2013:[Home 2013.xlsx]Janeiro'!$D$374'
    Thank you!!
    Gabriel

    Hi Gabriel,
    I suppose you could cut and paste formula results to a tab in our new spreadsheet document if the vlues you want are contained there. There are some people who have written scripts to import data from different docs. But no, Numbers does not support links between docs.
    quinn

  • DOI and Script collection/Macro in Word

    Hi experts,
    My goal is to upload macro from file and after upload run this macro inside word document.
    I try to upload macro from file in Script collection using get_script_collection(class I_OI_DOCUMENT_PROXY)  & add_script (class I_OI_SCRIPT_COLLECTION)
    After that I want to execute macro using execute_script(class I_OI_DOCUMENT_PROXY) .
    I always get error when executing macro that some object is missing. Probably macro is not correct written in file.
    Can somebody give me example hove this macro must be written so I can execute him.
    Thanks a lot,
    Drazen

    Hi Drazen Lovrencic ,
    Even I am trying to execute the macro but facing problem. Below is the my code of adding vb script(macro) to the excel spreadsheet and executing it. but stil not working. I am getting error message "Cannot initialize control"
      TYPES:
        TS_SOURCE_CODE  TYPE TEXT1024,
        TT_SOURCE_CODE   TYPE STANDARD TABLE OF TS_SOURCE_CODE WITH DEFAULT KEY.
      TYPES: BEGIN OF TY_SCRIPT,
             VALUE(80) TYPE C,
             END OF TY_SCRIPT.
      DATA: LS_SOURCE_CODE  TYPE TY_SCRIPT,"TS_SOURCE_CODE,
               LT_SOURCE_CODE  TYPE TABLE OF TY_SCRIPT,
               L_RETURN_CODE TYPE SOI_RET_STRING.
    Building the Script - every line has to end with cr/lf
      LS_SOURCE_CODE-VALUE = 'Sub Macro1()'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
       LS_SOURCE_CODE-VALUE = 'ActiveSheet.Buttons.Add(234, 57, 109.5, 29.25).Select'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'Selection.OnAction = "button"'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'Range("G9").Select'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'ActiveSheet.PageSetup.PrintArea = ""'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'With ActiveSheet.PageSetup'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = '.Orientation = xlLandscape'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = '.PaperSize = xlPaperA4'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = '.FitToPagesWide = 1'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = '.FitToPagesTall = 1'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'End With'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
      LS_SOURCE_CODE-VALUE = 'End Sub'.
      CONCATENATE LS_SOURCE_CODE-VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF
      INTO LS_SOURCE_CODE-VALUE.
      APPEND LS_SOURCE_CODE
               TO LT_SOURCE_CODE.
    BREAK-POINT.
    DATA: L_SCRIPT_COLLECTION TYPE REF TO i_oi_script_collection.
    DATA: table_url(256).
    DATA: DOC_COOKIE TYPE I.
          L_RETURN_CODE = c_oi_errors=>ret_document_not_open.
          CALL METHOD c_oi_errors=>create_error_for_retcode
            EXPORTING
              retcode  = L_RETURN_CODE
              no_flush = ''
            IMPORTING
              error    = gc_error.
    CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type    = ''
            subtype = ''
          TABLES
            data    = LT_SOURCE_CODE
          CHANGING
            url     = table_url.
    DATA: CONTAINER_CONTROL TYPE REF TO C_OI_CONTAINER_CONTROL_PROXY.
    CREATE OBJECT CONTAINER_CONTROL.
        CALL METHOD container_control->add_document_script
          EXPORTING
            NO_FLUSH       = 'X'
            document_cookie = doc_cookie
            script_name     = 'Macro'
            script_type     = '1'
            script_url      = table_url
          IMPORTING
            error           = gc_error.
        APPEND gc_error TO gt_error_table.
    Calling the script:
      CALL METHOD GC_DOCUMENT->EXECUTE_MACRO
        EXPORTING
          MACRO_STRING = 'Macro_demo_1'
          SCRIPT_NAME  = 'Macro'
          NO_FLUSH     = SPACE
       IMPORTING error = gc_error.
    APPEND gc_error TO gt_error_table.

  • I have some long spreadsheets and want to open them at the bottom instead of scrolling down through all the data. How do I do this?

    I have some long spreadsheets and want to go to the bottom to add new data without scrolling down through all the old entries. When I open a table now it goes to the top row and I have almost 300 rows to scroll through. I would like to set the table up to automatically go to the bottom row.

    Zach,
    You have a couple of options. If you use 100% View Zoom, and if you leave a cell selected in the bottom row of the table when you Save and Close the document, it will reopen with that cell in view.
    You could also sort your table in the opposite order and add new rows at the top. Then you wouldn't have to worry about what zoom you use. To insert a row at the top, select a cell in the current top row and press Option-UpArrow. That will add a new blank Top Body Row.
    Jerry

  • How to set up the interaction between InDesign CS6 8.0 and Photoshop CS 6 - if Photoshop is installed and the 64 and 32-bit?? default InDesign refers to the 64-bit version of Photoshop and scripts do not work.

    how to set up the interaction between InDesign CS6 8.0 and Photoshop CS 6 - if Photoshop is installed and the 64 and 32-bit?? default InDesign refers to the 64-bit version of Photoshop and scripts do not work.

    Nice of you to point it out here as I at least don’t follow Mr.Nash’s blog regularly.

  • With my new macbook I attempted to open an older spreadsheet and get the following error message:  "This spreadsheet cannot be opened because ti is too old.  To open it, save it with numbers '09 first"  So how does one do this when I only have ver3.1?

    With my new macbook I attempted to open an older spreadsheet and get the following error message:  "This spreadsheet cannot be opened because ti is too old.  To open it, save it with numbers '09 first"  So how does one do this when I only have ver3.1?

    Numbers 3.x can only open Numbers '09 and later.  You will need Numbers '09 to open Numbers '08 files.
    If it is a single file (or only a few) you can email me and I will open and convert then email back.  My email address is in the "Biography" of my profile.
    You may have Numbers '09 installed.  Look in the folder "/Applications/iWork '09"  if Numbers is in that folder launch it, open the file you tried to open, and save.  Then you should be able to open in Numbers 3.x

  • Insert a spreadsheet and word docs into a PDF with hyperlinks

    I have a spreadsheet index with hyperlinks to 455 single page word docs. I want to make a single pdf by inserting the spreadsheet followed by the word docs.
    Is there a way of having the hyperlinks recognize the inserted word docs pages inside the pdf via the original hyperlinks, or do I need to remove the hyperlinks before inserting the spreadsheet and then do bookmarks for all 455 pages? Or some other method?

    James,
    I doubt that will work. But it should be easy enough to find out. If you
    print to pdf from ID, I guarantee is will not work. If you export from
    ID, I doubt it will work, but ask in the ID forum, since the creation
    does not depend upon Acrobat.
    Mike

  • Mappings and script functoid

    Can you have both mappings (direct mapping in the graph) and scripting functoid in the same map?
    Anonymous

    Hi,
    Yes, direct mapping and scripting functoid can be used in the same map.
    In case of complex map and lot of direct mapping it is advisable to make use of more than 1 pages, just for better readability.
    Pages are a great way of dividing your map into smaller, more manageable blocks. The functionality of the map is in no way influenced with how many pages you have and what functionality goes into what pages.
    You can learn more about Biztalk Maps by following the links below:
    1) http://www.informit.com/articles/article.aspx?p=1752306
    2)
    http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&cad=rja&uact=8&ved=0CEMQFjAF&url=http%3A%2F%2Fbiztalkevents.files.wordpress.com%2F2013%2F03%2Fobid-biztalk-mapping-patterns-and-best-practices.pptx&ei=L2U3VJHrApHmauiLgZgD&usg=AFQjCNHnYSa-ynxUKRRdr14LcB85brSNUw&bvm=bv.76943099,d.d2s
    3)
    http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&cad=rja&uact=8&ved=0CDMQFjAD&url=http%3A%2F%2Fwww.slideshare.net%2FSandroPereira3%2Fbiztalk-server-basics-principles-of-maps&ei=L2U3VJHrApHmauiLgZgD&usg=AFQjCNG6iJRePcbrHr9CS2_apBuNAzYR0w&bvm=bv.76943099,d.d2s
    Hope this helps.
    Rachit
    Please mark the post answered your question as answer, and mark other helpful posts as helpful, it'll help other users who are visiting your thread for the similar problem

  • Read integer values from spreadsheet and display the values in a table

    Hi all,
    I have integer values to read from a spreadsheet and display them in a table. I am using 'Read from spreadsheet file' in 'integer' mode. I would like to display these values in a table. The problem is that the table takes only 2d-array of string as input but not integer.  
    It works fine if I change the mode of 'Read from spreadsheet file' from 'integer' to 'string' but I want to read integers and have to use the integer values for further calculations. Please give any suggestions on displaying integers to a table.
    Thank you. 
    Solved!
    Go to Solution.

    No don't take element by element just convert as a whole. See the attached example
    Good luck
    The best solution is the one you find it by yourself

  • I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    I have manually inputted data into a blank spreadsheet and would like to use a form to enter data into that sheet !!! How do I do that please

    Leigh,
    After creating your table, Tap the Tab marked "+" and select "Form" - you will be asked which table to use. (You should get into the habit of naming your tables - if the table name isn't visible, select the table and tap the Styles (Brush) Menu > Table > Turn ON table Name, then double tap on the Table to edit it.)
    Select the table you wish to to fill with a form and you will see a new form based on the header data.
    The form will allow you to add one row at a time and when you get to the last row, there is an option at the bottom of the form to add a new row using the "+" button. At the top of the form is the row header which you can rename by double tapping.
    You can also rename the form on the Tab by double tapping on the name.
    Try it out.

  • XML Validation using java for SQL Injection and script validation

    I have an input coming from xml file.
    I have to read that input and validate the input against sql injections and scripts.
    I require help now how to read this xml data and validate against the above two options.
    I am a java developer.
    in this context what is marshelling?

    http://www.ibm.com/developerworks/library/x-javaxmlvalidapi.html?ca=dgr-lnxw07Java-XML-Val
    http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/validation/package-summary.html
    The following code validates the xml against a xml schema
    // define the type of schema - we use W3C:
    String schemaLang = "http://www.w3.org/2001/XMLSchema";
    SchemaFactory factory = SchemaFactory.newInstance(schemaLang);
    Schema schema = factory.newSchema(new StreamSource("sample.xsd"));
    Validator validator = schema.newValidator();
    // at last perform validation:
    validator.validate(new StreamSource("sample.xml"));Message was edited by:
    haishai

  • Before the latest upgrade, I could get a spreadsheet and a gmail doc showing side by side on the screen.  Now I can't. G

    Before the latest upgrade, I could get a spreadsheet and a gmail doc side by side on the screen.  Now I can't.  Help please.  Geoff of Gata

    -> Update Firefox to the latest version 10
    * [[Installing Firefox on Windows]]
    Perform the suggestions mentioned in the following articles:
    * [[Troubleshooting extensions and themes]]
    Check and tell if its working.
    May not be related to your problem but some of your Firefox Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • Smart and script forms..?

    hi experts
    Can anybody explain me about the SAP SMART and SCRIPT forms ..
    1.What is Script and Smart forms.?
    2.Give some examples of both script and smart forms? (RFQ,PO,Sub-sontract challan, RG23A..registers ..)
    3.what is the difference between script and smart forms,?
    Thanks
    SAP-MM

    Dear Friend,
    Both smart form and script are output tools for print out, script is the older version
    1.SCRIPTS ARE CLIENT DEPENDENT
    SMARTFORMS ARE CLIENT INDEPENDENT
    2.WE CANNOT ADD COLORS IN SCRIPTS
    WE CAN ADD COLORS IN SMARTFORMS
    3.WE CANNOT GET THE FUNCTION MODULE WHEN WE ACTIVATE THE PROGRAM
    WHEN WE ACTIVATE THE PROGRAM WE GET FUNCTION MODULE
    4.WE CAN WRITE ENTIRE CODE IN SMARTFROM ITSELF
    Regards
    Pramod

  • PO Print Program and Script

    Hi All,
    Where I can find a Print Program and Script associated with a particular PO.
    Please suggest.
    GS

    Hi,
    Go to me22n or me23n. Give the PO no . Click on Messages > See whether any output type exists or not. If exists then go to tyransaction nace . In th application select EF -Purchase Order. Click output type> In the output type search your output type Select it and then click on Processing routines you will see the program name & form name.
    You can check with the output type in TNAPR table also . By giving output type in KSCHIL field it will give u print program & Form name.
    Thanks,
    Abhijit

  • Expressions and scripting

    Hi
    I've several questions about programming in Ae
    And I hope to find answers with you
    1- What are the differences between : expressions and scripting ???
    2- I'm not a programmer , so , can I be proficient in expressions ? and how ?
    3- again , I'm not programmer
    can I learning Java script ?

    An expression is a little piece of softwaremuch like a scriptthat evaluates to a single value for a single layer property at a specific point in time. Whereas scripts tell an application to _do_ something, an expression says that a property _is_ something.
    With expressions, you can create relationships between layer properties and use the keyframes of one property to dynamically animate other layers. For example, you can use the pick whip to link path properties, so a mask can take its path from a brush stroke or a shape layer object.
    The expression language is based on the standard JavaScript language, but you do not need to know JavaScript to use expressions. You can create expressions by using the pick whip or by copying simple examples and modifying them to suit your needs.
    Be sure to read the
    "Expressions" section of After Effects Help on the Web.
    Dan Ebberts has an excellent collection of example expressions and scripts and tutorials for learning how to work with expressions and scripts on his website: http://www.adobe.com/go/learn_ae_motionscripthome.
    The AE Enhancers forum provides many examples and much information about expressions, as well as scripts and animation presets: http://www.adobe.com/go/learn_ae_aeenhancershome.
    JJ Gifford provides several example projects on his website that demonstrate how to use expressions: http://www.adobe.com/go/learn_ae_jjgiffordexpressions.

Maybe you are looking for

  • Installation problem on RHEL4 ..

    Installation problem on RHEL4 (Red Hat Enterprise 4) i have install start at unzip tar.gz and tar -xf .... now i have run ./installFMS it show ./fmsini: error while loading shared libraries: libstdc++.so.5: cannot open shar ed object file: No such fi

  • Error while compiling xdk C sample program

    hello, the following error happens with xdk version 9.2.0.6 and oracle 9.2.0.4 installed on linux SUSE 9.1: while compiling the xdk C sample program "SAXSample.c" in $ORACLE_HOME/xdk/demo/c/parser, I got many "undefined reference" messages. Here foll

  • Photoshop Data can ot be stored on WIN 7 64bit

    Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "

  • Toplink JPA 2.0  migration in JDeveloper 11.1.1.2.0

    I would like to used Toplink JPA 2.0 in JDeveloper 11g, how to update toplink_111120_en.zip in JDeveloper IDE.? Even I added eclipselink and JPA 2.0 spec lib into classpath, I am still getting compile time error on orphanRemoval attribute in OneToMan

  • Problem recognizing wireless scanner

    I have an iMac that runs SnowLeopard 10.6.8. I use the Brother MFC All-in-One as a wireless scanner and printer. This has worked successfully for some time. Suddenly, although I can still print wirelessly, the computer doesn't recognize the wireless