Production boards from script?

Feature request: It would be great to be able to generate a production board from an Adobe Story script from within the app.

Thanks for the feature request.

Similar Messages

  • Calling dll file to control a third party board from PC Control.

    Hi there,
    I have this hawkeye stepper motor control board from PC control company. 
    It comes with a software written by the company  which is in DLL format. I would like to call the DLL file in labview and be able to do further programming on it using labview platform to control the motor board. 
    The reason that I need to call this DLL file is because labView does not recognise the control board when connected to it. 
     I would really be grateful if anyone who has purchased the same motor control board from PC control company before and successfully using labview to control it could share the code and driver with me. 
    Many thanks.
    XI CAN LIU

    Hello,
    I'm not using that vendor products so I can't help you directly with your issue.
    Nevertheless, you can find several documents on this site explaining how to use DLLs in LabVIEW: I point you to three of them, but yu can find more with apropriare searches.
    Can LabVIEW C? - Example 3: Using the Right Tools with LabVIEW a whitepaper on using external DLs in LabVIEW
    Calling External Code From LabVIEW link useful documents on how to call different external codes in LabVIEW
    Using Existing C Code or a DLL in LabVIEW a tutorial which explainh how to use DLLs
    I must also warn you that this is not the proper forum board where to post LabVIEW-related questions: this board is dedicated to LabWindows/CVI users, while there is a specific board for LabVIEW users where I suggest you to post further questions.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How to get Exchange 2010 Product Keys from an existing installed servers

    hi All,
    we are facing some kind of critical issues. we had 3 MB servers . the two servers are in DAG all our productions DB's running in DAG. the DAG servers are crashed due to hardware issues. one server is acting as archival server. all servers are running exchange
    2010 sp3. 
    now we are trying to rebuild new servers to restore DB's. the new servers is prompting the product key to be entered. unfortunately we don't have product keys of exchange 2010. since we are gold partner we have partner network portal. when i tried to get
    the product key from portal am able to see only 2013 keys. we called up Microsoft and explained but no use. they said we have to use exchange 2013. but we cant simply go ahead and migrate. 
    but the only option is we have exchange 2010 installed servers they all act as CAS/HUB server with the same licence. please let me know how do i retrieve exchange 2010 product keys from an existing servers. Please advise me its very critical.
    can we get the product keys through some kind of scripts?
    Thanks, Venkatesh. "Hardwork Never Fails"

    Hi,
    For this issue, I recommend you contact Microsoft customer service to consult this question. Thanks for your understanding.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Install Oracle from script

    Install Oracle from script
    Hi
    I need to install and uninstall oracle from script (Win platform), as part of product installation .
    How to do it?
    Can you lead me for a link explain abut it ?

    Hi;
    What is your oracle version?
    I need to install and uninstall oracle from script (Win platform), as part of product installation .If you are 10g level than check
    http://download.oracle.com/docs/cd/B19306_01/install.102/b14316/toc.htm << search as slient installation
    If you are 11g level than check
    http://download.oracle.com/docs/cd/E11882_01/install.112/e16773/toc.htm
    Also see below good explaination on Tim site
    http://www.oracle-base.com/articles/misc/OuiSilentInstallations.php
    Regard
    Helios

  • Replacing "" from scripts which has table DDLs

    HI,
    I use an oracle version of Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production.
    I have few scripts consisting of DDLs for table. But  almost all CREATE TABLE syntax  consist of double quotes "" for the column name and table name like below example:
    After architecture review, we came to know that we need to remove all the double quotes from all scripts for column names and table names making sure other double quote usage are not impacted in any part of those scripts. But doing it manually by going through all scripts/tables seems to be huge effort. So am seeking suggestion if there is any way we can achieve this in a simpler way.
    Thanks

    After architecture review, we came to know that we need to remove all the double quotes from all scripts for column names and table names making sure other double quote usage are not impacted in any part of those scripts. But doing it manually by going through all scripts/tables seems to be huge effort. So am seeking suggestion if there is any way we can achieve this in a simpler way.
    Yes, there are at least two much simpler ways:
    1. Replace the architecture review team with people who use logic and reason as the basis for the standards that they adopt.
    2. Replace the 'remove all the double quotes' requirement from the standards list.
    If you plan to adopt a standard then you should adopt an industry standard. If you use any other standard then there should not only be a rational justification for NOT using the industry standard (in this case Oracle's) but there should also be some rational, and demonstrable, value to the standard that you adopt. I cannot think of any justification for NOT using the Oracle standard not am I aware of any value whatsoever to removing all double quotes from scripts.
    In addition, in almost 30 years of working in the field I am not aware of ANY organization that has adopted such a standard.
    Oracle both provides, and uses, extensive functionality for creating and using DDL. The DBMS_METADATA package is used by Oracle for both export and import and the standard used by that package is to enclose object names in double quotes. The reasons for this standard have already been stated by others. One example is the possible use of mixed-case for object names. But mixed-case is also used for path names in DIRECTORY objects, TABLESPACE objects, database links and for extracted passwords.
    Any extraction of DDL your org does will likely etiher use the DBMS_METADATA package or a tool that follows the Oracle standard.
    So your teams 'standard' not only contravenes the industry standard but imparts a substantial penalty in terms of the resources needed to constantly identify and correct the any DDL extracted from your systems.
    Here is a trivial example of using the Oracle package to extract DDL for the SCOTT.EMP table.
    select dbms_metadata.get_ddl('TABLE', 'EMP', 'SCOTT') from dual
    CREATE TABLE "SCOTT"."EMP"
    ( "EMPNO" NUMBER(4,0),
    "ENAME" VARCHAR2(10),
    "JOB" VARCHAR2(9),
    "MGR" NUMBER(4,0),
    "HIREDATE" DATE,
    "SAL" NUMBER(7,2),
    "COMM" NUMBER(7,2),
    "DEPTNO" NUMBER(2,0),
    CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "USERS" ENABLE,
    CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
    REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE
    ) SEGMENT CREATION IMMEDIATE
    PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "USERS"
    If this were me I would use ALL of my political capital to fight the battle against this non-sensical 'standard'. There is simply no rhyme or reason for it, it will waste a lot of valuable personal resources and the cost/benefit ratio simply can't justify it.
    Those resources would be MUCH better used on other tasks.

  • Error while generating Production Order from Recommondation Report

    Hi..
    I have got few production orders to be created through Recommendation Report. 
    After getting them 'Checked' when i try to create production order, following error message appears :
    No matching records found 'Product Tree' (OITT) (ODBC - 2028) [message 131-183]
    Please let me know what went wrong ?
    Regards
    Rakhi

    Hi.......
    I think you are trying to make production orders who has no BOM. First prepare BOM and then Create Production Order from Recomemdation Report. Because it supports only Standard Production Order and not Special......
    Regards,
    Rahul

  • Product replication from R/3 to CRM

    Hi Experts,
    <u>Project:</u> I'm implementing a Sales and Marketing project and the scope involves Activity, Lead & Opportunity Management
    <u>Background:</u> I've successfully done all the configurations. I've also migrated all the Business Partners and Products successfully from R/3. All the customizing objects have been migrated and are in the done state. All the queues are working fine and are empty. Even the heirarchies and categories have been migrated from R/3.
    <u>Problem:</u> Though the Products have been replicated from R/3 are not visible in the transaction <b>commpr01</b>.
    <u>Business Impact:</u> The project is stuck due to this issue and i have missed the GoLive.
    Would request all to share their expertise and rescue me out of this problem.
    In Anticipation
    Arvind

    Hi
    Pls go through following note, it might help you
    "Before data can be transferred from the ERP material master to the product master, certain Customizing information must be transferred. Once this information has been transferred without errors, the material master records can be transferred. The data is transferred using middleware. The Customizing information transferred determines, for example, how the product ID is stored in the product master and which product data can be created.
    Unless indicated otherwise, the information contained in this info object is relevant to the ERP material master for industries and to the ERP article master for retail. Retail users are requested to substitute:
    &#9679;      Article for material
    &#9679;      Merchandise category for material group
    Prerequisites
    If a product hierarchy is used in the ERP system:
    &#9679;     You have created the numbering scheme R3PRODHIER in the CRM system for the product hierarchy from the ERP system, making sure that the numbering scheme precisely corresponds to the structure for the product hierarchy in the ERP system (that is, structure PRODHS). This numbering scheme is essential for the data to be created correctly.
    &#9679;     The number of levels in the numbering scheme must be the same as the number of fields in structure PRODHS, and the number of digits for each level must be the same as the length of the corresponding field in structure PRODHS.
    For more information, see in the Implementation Guide (IMG) Cross-Application Components ® SAP Products ®Product Category ® Define Category Numbering Schemes.
    Features
    The following information is transferred:
    &#9679;     Information for converting the ERP material number to the product ID
    This is whether the material number is stored lexicographically in the ERP system and the length of the product ID in the database of the ERP system.
    &#9679;     ERP material groups
    This information is transferred to the hierarchy R3MATCLASS.
    &#9679;     Information in the ERP material type that determines which data can be created for a product
    This is transferred to the hierarchy R3PRODSTYP (product subtype). The hierarchy has two levels. The first level contains the categories MAT_ for materials and SRV_ for services. In the case of materials, the second level is a sublevel of MAT_ and contains the material types imported from ERP, each with the prefix MAT_. For example, the ERP material type HAWA (trading goods) is created as the category MAT_HAWA.
    In addition, the SAP-defined CRM set types are assigned to the categories of the hierarchy R3PRODSTYP as follows:
    &#9675;     The following set types are assigned to the category MAT_:
    &#9632;      COMM_PR_MAT (basic data on materials)
    &#9632;      COMM_PR_SHTEXT (description)
    &#9632;      COMM_PR_UNIT (conversion of units of measure)
    &#9632;      COMM_PR_LGTEXT1 (basic texts)
    As a result, these set types are inherited by all material types.
    &#9675;     The following set types are also assigned to the category MAT_ if the status Sales is assigned to the material type in the ERP system:
    &#9632;      CRMM_PR_SALES (sales: distribution chain)
    &#9632;      CRMM_PR_SALESA (sales: control fields, units of measure, and quantities)
    &#9632;      CRMM_PR_SALESG (sales: groupings)
    &#9632;      CRMM_PR_TAX (sales: taxes)
    &#9632;      CRMM_PR_LGTEXT2 (sales: texts)
    &#9632;      CRMM_PR_LGTEXT (texts)
    &#9679;     ERP product hierarchies
    This information is transferred to the CRM hierarchy R3PRODHIER.
    Activities
           1.      Using transaction R3AS, transfer the following middleware objects for the class CUSTOMIZING:
    &#9675;     DNL_CUST_PROD0 (storage form of material numbers in sending system)
    &#9675;     DNL_CUST_PROD1 (material types, material groups, and product hierarchy)
    &#9675;     DNL_CUST_PROD3 (material statuses in sales and distribution)
           2.      Using transaction COMM_HIERARCHY, check whether the corresponding hierarchies have been created in CRM.
           3.      Check in Customizing for Cross-Application Components whether the storage form (lexicographical or not) is correct for the material number transferred, by choosing SAP Products ® Basic Settings ®Define Output Format and Storage Form of Product IDs.
    reward points if helps
    Regards
    Kushal

  • Error during OIM schema upgrade during product ugprade from 9.1.0.2 to 11g

    Hi All,
    We have received following error during product upgrade from 9.1.0.2 to 11g.
    Error occurred during fourth step ( Task 4: Use Upgrade Assistant to Upgrade the Oracle Identity Manager Schema)
    On the screen while running upgrade assistance (ua.bat)
    Following message came on screen.
    Schema Version registry >> succeeded
    Oracle Identity Manager Schema Upgrade >> Failed
    I could see only following error in the log file.
    \middleware_home\Oracle_IDM1/server/db/oim/oracle/Upgrade/Oracle_upg_91_92_x2ell_92.sql
    [2012-06-28T09:34:51.147-06:00] [FrameworkMR] [NOTIFICATION] [] [upgrade.FrameworkMR] [tid: 14] [ecid: 0000JWnikOB6qIvyKWYBSQ1Fv7Zd000005,0] finalize() instance 1 of 2
    [2012-06-28T09:35:00.863-06:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JWnijRj6qIvyKWYBSQ1Fv7Zd000004,0] UPGCMP-00924: SQL error [{0}]
    [2012-06-28T09:35:00.863-06:00] [OIM] [INCIDENT_ERROR] [] [upgrade.OIM] [tid: 13] [ecid: 0000JWnijRj6qIvyKWYBSQ1Fv7Zd000004,0] [[
    java.sql.SQLSyntaxErrorException: ORA-00955: name is already used by an existing object
    ORA-06512: at line 31
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1074)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1466)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2123)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:2067)
         at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:306)
         at oracle.ias.mrua.plugin.oim.SchemaUpgrader.loadScript(SchemaUpgrader.java:303)
         at oracle.ias.mrua.plugin.oim.SchemaUpgrader.doUpgrade(SchemaUpgrader.java:139)
         at oracle.ias.mrua.plugin.oim.OIMSchemaUpgradePlugin.doUpgrade(OIMSchemaUpgradePlugin.java:302)
         at oracle.ias.mrua.MRUA.executePlugins(MRUA.java:3672)
         at oracle.ias.mrua.MRUA.internal_driver(MRUA.java:2448)
         at oracle.ias.mrua.MRUA.driver(MRUA.java:1710)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:390)
    Any Idea ?
    Ritu

    Hi All,
    We are also trying to upgrade OIM 9.1.0.2 which is present in our environment to OIM11g. Request your help.
    Now how do we achieve the upgrade? Should my source of OIM9i software  and target of OIM 11g software  be installed on the same server?
    I did install OIM11g and OIM9i on the same server  and tried to do schema upgrade based on the link:
    Upgrading Oracle Identity Manager Environment
    But during examine phase I get error the below error
    UPGAST 00091- ERROR DURING EXAMINE OF COMPONENETS
    UPGAST 01004- UPGRADE IS UNABLE TO DYNAMICALLY LOAD COMPONENET SPECIFIC SOFTWARE MODULES.
    When i check in the log in internet it says :
    Cause: Repository upgrade framework was unable to dynamically load the Java classes of its component-specific software modules. mrua.xml file might have been corrupted.
    Action: This is an internal error. Verify that the Java classpath has been correctly set, the mrua.xml file is correct, and that the .jar files for all component-specific software modules are present in the jlib directory. Contact Oracle Support Services for assistance
    What is the javaclasspath to be set?how to check if mrua.xml and jar files are fine
    Pls help.Any help is much appreciated.

  • On Windows 7 Ultimate, desktop with C (system) drive, D K and L drives, can I install Adope Creative Suite 6 Production Premium (from cd's) to Drive D (not C). Thank you.

    On Windows 7 Ultimate, desktop with C (system) drive, D K and L drives, can I install Adope Creative Suite 6 Production Premium (from cd's) to Drive D (not C). Thank you.

    you can but there may be some issues and a lot of files will be saved to your c drive, anyway.

  • Create a product catalog from flat fiile

    Hello All,
    I have a requirement to create a product catalog from a flat file. Basic requirement is to add products under product catalog. Further requirement can be extended to add views and add images to product catalog.
    I want to know steps or function modules which will be used in order to achieve basic requirement first and then extended requirement.
    Any sample example explaining the same will be more useful.
    Thanks in advance
    Madhura

    By uploading images to a Product Catalog, the program below will also add the item to the catalog area specified.
    SE38 - Run Program COM_PCAT_MASS_DOC_IMPORT
    It has it's own Program Information to explain how it works.
    Here's the first portion of the that information:
    Title
    Mass Import of Multimedia Documents for Product Catalogs
    Purpose
    This report enables you to automatically import multimedia documents that are already available in a file system and assign these documents to product catalog items. The items are identified using a product number. An item is created if a corresponding one is not available.
    A simple text file, which can be created using the normal spreadsheet programs or simple text editors, is used as a basis for the import.
    We have used this in the past, but it has some performance issues, so experiment to be sure you don't try to upload too many images at once...it can bog down after a few batches and begin crawling.

  • Print out of production order from co02

    Hi All,
      How do I take a print out of production order from co02. If I go to co02- Functions-Print- I get an error that after the next update the order will be printed. Since the production order is already in the released state how do I take the print.

    Priya,
    What system is prompting is that once you use the print function in the change mode of the order, system prints the papers to Spool or Printer once it is saved, that is the reason it is giving you a message.
    Please save the order after using the Print function in the change mode of the order, I am sure that you would get the print output either directly to the printer configured or to spool. If it was configured for spooling, use the transaction SP01/SP02 to print the spool request.
    Regards,
    Prasobh

  • How do you change the Print Products Store from USA to UK like you can do in IPhoto?

    How do you change the Print Products Store from USA to UK like you can do in IPhoto?

    Please keep in mind that Aperture is not an enhanced iPhoto, it is a different application with a different philosophy and a different intended audience. If you approach it with that in mind you will have a lot less frustration as you learn Aperture.
    Aperture adds a layer of complexity that is not needed by many.  iPhoto is a very powerful application and fits the needs of many amateur photographers.
    As for your original issue, as I said I am surprised that iPhoto allows you do switch countries like that and am not surprised that Aperture doesn't. If this is something you really need to do working in Aperture but using iPhoto to order the prints is a good work around and will not be all that difficult to do once you get the hang of it.
    As for your new question, the books in iPhoto and Aperture are different enough that the code that created the book in iPhoto wouldn't work in Aperture. What happens when you import an iPhoto library into Aperture is that the images in the book are combined into an album in Aperture with the same name as the iPhoto book. You will need to re-create the book in Aperture uaing the images in this album.
    Hope this helps, post back if you have anymore questions.
    regards

  • Transferring Product Data from SRM 7.0 to SRM-MDM 3.0

    Dear SRM-MDM experts,
    We are running the program BBP_CCM_TRANSFER_CATALOG to transfer product data from SRM 7 to SRM-MDM 3.0  The question we have is after running the program, where do we find the file the XML file which the program has generated so we can see the results?  SLG1 just shows how many products were processed.  We need to see the list of the products generated.
    Thanks and regards
    Pedzi

    Hi Pedzi,
    You can find the generated XML file in MDM server. Here is the path to get the Product Data XML file.
    C:/usr/sap/SRD\MDS00/mdm/distributions/MDD_ORCL/REPOSITORYNAME/Inbound/SRM/_MDMProductDataTransmission/Archive
    Thanks,
    Anshuk Saxena

  • Calling java from scripting

    Hello,
    I would like to integrate some scripting capability in my web application.
    The main purpose is to cover the following scenario :
    - I develop a web app with JSP technology, packaged in a MyAPP.WAR file containing my application and another file (MyCustomer.RAR?) containing installation specific informations. I want the MyApp.WAR to be the same for all my customers, just having the RAR file specific to each customer (installation).
    - In this ressource file, there could be some scripting functions that will be called from my JSP Pages to change the default presentation with some customer particular informations.
    Those informations would be extracted from my java data model. The purpose is to enable the customer to code some little script, and to avoid coding those in Java.
    The question I have on that are :
    1/ is it possible to call java instances from scripting language (I read on apache that the answer was yes for some of them), but I would like to know if javascript can do that.
    2/ Can I recover the "result" of the script in JSP ?
    An example :
    1/ The class containing a marvellous property
    class MyClass {
    public String myProperty;
    2/ The JSP page :
    <stlLib:callScript(Customer.RAR, "ScriptToCall",anInstance) />
    <stlLib:getResult ???>
    3/ A user script (pseudo-code)
    Customer 1 :
    Function ScriptToCall(object) {
    variable iwanttoshowsquareroot;
    iwanttoshowsquareroot = squareroot(object.myProperty);
    return iwanttoshowsquareroot ;
    Customer 2 :
    Function ScriptToCall(object) {
    variable mychoiceisdifferent;
    mychoiceisdifferent= object.myProperty / 2;
    return mychoiceisdifferent;
    According to what ScriptToCall looks like the result on page would be different
    Thanks in advance for your advises
    Olivier.

    1) The script will be running in the browser, not the server, yes? So in Netscape you can load Java objects via Javascript, but IE doesn't seem to support this. Although in either, you can call methods on an applet in the page. But you can't call a JS function from the Java code in the JSP page, since that is only executed on the server.
    2) Only if the "result" is submitted back to the server.

  • Anyone else waiting on a replacement Power Supply & Logic Board from Apple?

    On Dec. 26, I took my iMac G5 to my local service provider to resolve some power issues under the Repair Extension Program. They ordered the part (new power supply and logic board) from Apple that very day, yet I'm still stuck here waiting 16 days later.
    Anyone else out there waiting for this part to arrive? How long should it take? Can I call Apple directly in order to get a better estimate?
    Thanks!
    1.8 GHz iMac G5   Mac OS X (10.4.8)  

    All right, so here's the latest plot changes in the ongoing saga of my iMac G5...
    I spoke with two very kind and helpful women at Apple this afternoon. Both agreed that this sort of behavior from my AASP was certainly unacceptable. I was able to lodge a formal complaint against my AASP, as well.
    My particular part order was given some sort of high priority status by Apple. I was asked to call back on Friday to receive an update on the order's status.
    I was also asked to send a letter to Apple's Corporate Customer Care division explaining my situation in full. I'll try to send out this letter within the next few days.
    So that's where we stand right now. No computer yet, but at least SOME progress is being made.

Maybe you are looking for