UWL and Input Parameters ?

Hi,
I've implemented the UWL for accepting/rejecting Leave Request with the corresponding workflow in backend R/3.
I use the "decision" step in workflow which in UWL is nicely translated to decision buttons for every decision possibility in this step.
I've been asked to investigate whether it is possible to have an input parameter on the UWL where one can add a comment if one decides to reject the leave request of one of his employees.
Anyone has experience with this ? I found something in the saphelp about 'UpdatingContainerHandler' ( http://help.sap.com/saphelp_nw04/helpdata/en/59/d516690e854c7090ae15bf492a869f/frameset.htm ), but is that working ? Anyone implemented this ?
It also says this is only available as of release 6.20, where still on a 4.6C as backend system.
Regards,
Igor Vernelen.

Hi Igor,
Did you ever work this out? I am also interested in doing something similar. Any info you could share would be much appriciated.
BRgds,
Simon

Similar Messages

  • Odata and Input Parameters

    Hello Experts,
    I have an Odata Service with multiple Input Parameters. I am creating a Dialog to allow user to enter values for Input Parameters and then show my Odata Model in a Table.
    I have two questions:
    1.) I will create a dialog that will contain Textboxes for entering Input parameters. Now I want to know how to pass these Text field values to my Odata Input Parameters.
    2.) I want my Dialog to be loaded first - As soon as I launch my index.html file - I want the dialog to appear and after entering Input Parameters, I want to load my Odata Model in table. How to achieve it?
    Regards,
    Rohit

    Hi Maksim,
    Thanks for your reply
    For now I am not using dialog but am using a panel to get input parameters and then another panel to show the table.
    I have created the panels as follows:
    The code is:
    sap.ui.jsview("testid.testr", {
           getControllerName : function() {
                  return "testid.testr";
           createContent : function(oController) {
    var updatePanel = new sap.ui.commons.Panel("updPanel").setText('Enter Input Parameters');
    var layoutNew = new sap.ui.commons.layout.MatrixLayout({width:"auto"});
                 var oVal1 = new sap.ui.commons.TextField("cArea",{tooltip: "Controlling Area", width: "200px", editable:true});
                 var oVal2 = new sap.ui.commons.TextField("sDate",{tooltip: "Start Date", width: "200px", editable:true});
                 var oVal3 = new sap.ui.commons.TextField("eDate",{tooltip: "End Date", width: "200px", editable:true});                
                 var oExcButton = new sap.ui.commons.Button({
                     text : "Submit"});
                 layoutNew.createRow(new sap.ui.commons.Label({text: "Controlling Area: "}), oVal1 ); 
                        layoutNew.createRow(new sap.ui.commons.Label({text: "Start Date: "}), oVal2 );
                        layoutNew.createRow(new sap.ui.commons.Label({text: "End Date: "}), oVal3 ); 
                        layoutNew.createRow(new sap.ui.commons.Label(),oExcButton);
                 updatePanel.addContent(layoutNew);
                 var tPanel = new sap.ui.commons.Panel("tbPanel").setText('Table');
                 var oModel = new sap.ui.model.odata.ODataModel("/Test/View/Services/testcv.xsodata/",false);
                         var oTable = new sap.ui.table.Table("TestTab",{tableId: "tableID",
                               visibleRowCount: 7,
                               firstVisibleRow: 3,
                               selectionMode: sap.ui.table.SelectionMode.Single,
                               navigationMode: sap.ui.table.NavigationMode.Paginator,
                               fixedColumnCount: 2
                         oControl = new sap.ui.commons.TextField({editable:false}).bindProperty("value","SAPClient");
                          oTable.addColumn(new sap.ui.table.Column({label:new sap.ui.commons.Label({text:"SAP Client"}),
                                template: oControl, sortProperty: "SAPClient", filterProperty: "SAPClient", width: "125px" }));
                          oControl = new sap.ui.commons.TextField({editable:false}).bindProperty("value","ControllingArea");
                          oTable.addColumn(new sap.ui.table.Column({label:new sap.ui.commons.Label({text:"Controlling Area"}),
                                template: oControl, sortProperty: "ControllingArea", filterProperty: "ControllingArea", width: "125px" }));
                          oTable.setModel(oModel);
                               var sort1 = new sap.ui.model.Sorter("CostCenter");
                                oTable.bindRows("/TestCalcView", sort1);
                 tPanel.addContent(oTable);
                 var oLayout = new sap.ui.commons.layout.VerticalLayout("Layout1",{
                    content: [updatePanel,tPanel]
                 //oLayout.createRow(updatePanel);
                 oLayout.setWidth('auto');
                    return oLayout;
    I want that when I click on Submit button the data is loaded in the table.
    Can you please let me know where to define the Input Parameters of Odata Service
    Can you please help me in how to get the values of textfields and how to pass them as Input parameters to Odata.
    Regards,
    Rohit

  • Pluggable Mappings and Input Parameters

    Hi All,
    I have a mapping which receives 2 input parameters. I have created a pluggable mapping to which I would like to pass those same values. Is is possible to pass parameter values into a pluggable mapping such that these values are NOT part of the input signature?
    thanks
    Ok, I have more information. When I deploy my mapping, I found the following code commented out of the main procedure:
    -- register custom input parameters:
    -- Temp fix until selective registration ensures correct handling of complex types
    -- wb_rt_mapaudit_util.register_custom_param(x_audit_id,
    -- '"MY_PARAM"',
    -- TO_CHAR("MY_PARAM"));
    What is the "selective registration" that they mention and how do I do it?
    thanks, again
    Edited by: philip_b on Mar 26, 2010 8:39 AM

    Thanks for responding David. I am using Client: 10.2.0.1.31 and Repo: 10.2.0.1.0
    I was hoping I didn't have to include it in the signature because I didn't want these values to be part of the incoming dataset; that just complicates the mapping logic for me.
    It would make sense to me that the pluggable mapping should have access to the parent mapping's parameter values.
    Why is the parameter registration code commented out inside the generated package? Do you know what it is referring to when it mentions "selective registration"? I can't find any reference to it:-/
    Someone else had the same issue last year on the following thread, but there were no responses to the issue:
    wb_rt_mapaudit_util register_custom_param call commented out in gen'd sql

  • The importance of input parameters and output parameters

    hi all.
    kindly suggest me the importance of output and input parameters in smart forms.

    HI,
    INPUT parameter----
    > the varibales which already defined and defined and holds the data.
    OUTPUR parameter----
    > the variables which are not holding the values before executing the flow logic
                                                          after  executing flowlogic these will hold the values.
    Eg:
    in flow logic:
    input para                                             output para
    gv_val                                                    gv_val1.
    code:
    gv_val1 = gv_val + 1
    reward me if it is useful.
    thanks
    AM

  • Can I validate input parameters and throw a message to user that parameters are invalid?

    Post Author: ak004
    CA Forum: General
    Hi,
    I have a report that accepts input parameters. Can I do a front end validation for these parameters and throw a message to the user that the parameters are invalid? Will this work fin if I deply it in infoview?
    Thanks

    I think I posted this on the wrong forum, I will repost this in the proper forum

  • GP and VC problem with input parameters

    Hi
    I have a problem with my GP dynamic approvals..
    I am trying to pass the parameters from one level to another level in GP using Visual COmposer screen with input and output parameters.
    When I see in NWA, I can see the ouput parameters of Screen1 is passed to input of Screen2 but I am not able to get the values in VC Screen.
    This scenario was working fine earlier.
    THe VC screen is same for all the approvals , I am doing dynamic approvals using predefined conditional callable  object and looping it.
    any suggestions..

    I have solved myself, I am sending html tags from one level to another level like <html></html> - these tags are not allowing VC screen to get all the parameters and they are blocked. I removed the tags, then I am able to get the parameters passed.

  • Run emigall with a "mig.object" and "input file" as parameters in a job?

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

  • Oracle Workflow and mapping input parameters

    Hello all,
    I am trying to create a process flow in OWB that will be able to pass input parameters into each of my mappings. Each mapping contains 2 inputs, a start time and an end time.
    Does OWB's process flows allow for this or is there another approach that i should take in creating a workflow for these mappings?
    I am currently using 11gR2(11.2.0.1) and OWF v. 2.6.4.
    Thanks in advanced for any and all help,
    Randy

    Hi Randy,
    Open the process flow editor. In the structure window (menu view->structure), select the mapping activity and expand it to see its parameters. If you select a parameter, you can set its value or bind it to a variable in the property window.
    In the structure window you can also add process flow parameters to the start activity or define process flow variables.
    Regards,
    Carsten.

  • Reg Input parmeters and Output parameters.

    Hi frnds,
                I would like to know about Input parameters and Ouput parametets.How they can be used in Smartforms. could please provide me some expamles if any.
    Regards many,

    Defining a Form Interface
    Use
    You define a form interface to send data from your application to a form.
    Integration
    The form interface is a part of the Interface form object and is defined in the Form Builder. The form interface of a form is structured in the same way as the interface of a function module in the system. However, form interfaces do not support Changing parameters.
    Prerequisites
    &#9679;     You have created an Interface form object.
    &#9679;     The application program provides the data that you want to insert in the form. Therefore, you already know the types of the corresponding variables.
    The semantics of the valid parameter types match the semantics of a function module,
    See also:
    Getting Information about Interface Parameters
    Overview of Function Modules (in ABAP Workbench: Tools)
    Creating Function Modules (in ABAP Programming (BC-ABA))
    Procedure
           1.      Open the required interface in the Repository Browser of the ABAP Workbench.
           2.      The Interface tab is displayed. Under Form Interface, double-click the Import node.
           3.      You see a screen for entering import parameters. This screen also shows the standard parameter /1BCDWB/DOCPARAMS. You cannot change this parameter.
    You use this parameter in your application program, to specify the value for the language setting, for example. To display this structure in the ABAP Dictionary, double-click the SFPDOCPARAMS type.
           4.      XML schema-based interface
    &#9675;     The standard parameter /1BCDWB/DOCXML with the type XSTRING is used for sending data from the application program.
    ABAP-based or Smart-Forms-compatible interface
    &#9675;     To insert a new line, choose Insert Line (). Enter the parameter names of the data you want to import. These names are valid for the whole form and do not have to match the variable names in the data collection program. All data types are valid. TYPE can be selected under Type Assignment.
           5.      When you double-click Export, you see the standard parameter /1BCDWB/FORMOUTPUT of the generated function module. You cannot change this parameter.
    You use this parameter in your application program, to make the generated form available as a PDF for further processing, for example.
           6.      To display the exceptions used by the generated function module, double-click Exceptions.
           7.      Activate the interface.
    At runtime, the application program must provide the parameters. If a parameter has been defined in the form, but is not defined when the application program is called, then the output of the form ends with the program crashing (hex dump).
    However, it is also possible that the application program provides parameters that the form does not need. You do not need to mention these parameters in the form; they can also be specified in a different order from the code of the application program. This has the advantage that an application program can work with several different forms.
    Migrated Smart Forms Interface or New Smart Forms-Compatible Interface
    When you edit the interface of a migrated Smart Form or a new interface that is compatible with Smart Forms, the Tables option gives you extra parameters. When you set the Import, Export, and Exceptions parameters, the system also lets you use the standard parameters from the Smart Forms.
    If you have a Smart Forms-compatible interface, you can use the existing application program of this Smart Form without making any modifications. (See also Switching Runtime in Migrating Smart Forms.)
    Result
    You have defined the form interface and you can use the specified parameter names in the form context.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/da/8fcc44d98b4e8bac6f102aa1fc69cc/content.htm

  • Create an API to Launch an LabVIEW Built Executable and Pass it Input Parameters

    Hello,
    I'm looking for a way to create an API to Launch/Close an executable, created with LabVIEW, which in additional to Launching/Closing tht executable, will also allow me to pass input parameters.
    To give you some background, I'm working on a logging utility, basically a background dameon, which I currently have implemented as a LabVIEW packed library and my API is a few VIs to launch that daemon and pass it a filename and a logging rate.  Functionally it works just fine however is executes within LabVIEW not as an independent process.  So instead of using a packed library, I would like to compile my logging daemon down to an executable but I still need a way to launch it and pass it parameters from an external application (such as Teststand).
    I know you can launch executables and pass parameters using windows command lines, but I'm wondering if there is a more direct method such as a DLL that I could call in Teststand?  Thanks.
    Post CLD and when I'm a CLA when someone asks who I am, I can spin around in my chair and say "I am... the architect."

    When Teststand Launches the Logger, it does so by opening a reference to the logger daemon using the "Open VI Reference" primitive and then it launches an instance of the dameon using the "Start Asynchronous Call" node.
    This currently, launches the logger within labview not teststand.  If I were to directly call the logger daemon VI itself as a step in TestStand, then it could run in a new teststand thread.  At that point I would need a way to stop that logger which I should be able to do by storing a reference to its control queue within the teststand thread that it is running in.  Since teststand let's you specify VI execution in the runtime engine instead of LabVIEW that might do the job.
    The one catch is once the sequence completes, the logger does some cleanup, post processing, etc that depending on the amount of data captured can take some time so if a set of sequences needs to be executed, this could hang up teststand until that post processing is completed.  That is one reason why I wanted it to execute outside of testtand so that additonal sequences could continue to run while the daemon finishes up in the background.
    But, it's something I'll have to look into.
    Post CLD and when I'm a CLA when someone asks who I am, I can spin around in my chair and say "I am... the architect."

  • Is there a difference between the X and Y input parameters of a "=" comparison​?

    Hello,
    In the attached Vi, if I switch the input parameters of the equal comparison, the Vi compiles. Otherwise it shows the class conflict error.
    In the real system, I just switched between the parameters and everything worked fine but I'd like to know why this version is wrong so next time I don't waste so much time debugging.
    Thanks,
    Marce
    Attachments:
    SDDSSupervisorTest2.vi ‏26 KB

    It looks like you dropped a refnum from the front panel palette and then set the type to boolean; this created a weak-typed refnem. To make a strong typed refnum, right click on the control and select create reference; a reference appears on the block diagram. Go to the reference and right click create control. The reference control on the front panel now has the orange star indicating that it is strong typed.
    I don't know why equals behaves the way it does with weak-typed references. You might also experiment with the equals operator on the Express palette.
    Attachments:
    SDDSSupervisorTest2-a.vi ‏34 KB

  • Input parameters from process

    Hi,
    I have a scenario where the user enters the process id as the input and once he submits it
    I have to retrieve the input parameters of that process
    Is it possible to get the input parameters using the GP API
    Please give me a lead on how to achieve this
    Thanks
    Padmaja

    Hi
    You can achieve this using wd api, you need to create the webdynpro application
    IGPProcess process = null;
         String message = "";
         String processName = "Cab Booking Process";
         try {
               IWDClientUser wdUser = WDClientUser.getCurrentUser();
               IUser user = wdUser.getSAPUser();
              // wdComponentAPI.getMessageManager().reportSuccess("current user is : " + user.getFirstName());
               IGPUserContext userContext = GPContextFactory.getContextManager().createUserContext(user);//, user.getLocale());
               process =GPProcessFactory.getDesigntimeManager().getActiveTemplate("7031AF6B877511DCBBB60016353AC84F",userContext);
               IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
               IGPProcessRoleInstanceList roles = rtm.createProcessRoleInstanceList();
               int rolenum = process.getRoleInfoCount();
               //wdComponentAPI.getMessageManager().reportSuccess("dyn user is : " + user.getFirstName());
               IGPProcessRoleInstance roleInstance=null;
               IGPStructure params = null;
              // wdComponentAPI.getMessageManager().reportSuccess("Title is "+ process.getTitle());
    //           if (process.getTitle().equals("Cab Booking Process"))
    //               wdComponentAPI.getMessageManager().reportSuccess("get process instance "user.getFirstName()"  "user.getLastName()rtm.getRunningInstances(0, new Date(2007,1,1), new Date(System.currentTimeMillis()), user));
               try {
                    params = GPStructureFactory.getStructure(process.getInputParameters());
                         if (process.getTitle().equals("Cab Booking Process")) {
                             params.setAttributeValue("RequestId.4",wdContext.currentContextElement().getRequestId());
                             params.setAttributeValue("EmployeeId.4",wdContext.currentContextElement().getEmployeeId());
                             params.setAttributeValue("ApproverId.4",wdContext.nodeZhr_Emp_Sup_Info_Input().nodeOutput_Approver().node_Output().current_OutputElement().getUser_Id());
                             params.setAttributeValue("ApproverName.4",wdContext.nodeZhr_Emp_Sup_Info_Input().nodeOutput_Approver().node_Output().current_OutputElement().getName());
                             params.setAttributeValue("Name.4",wdContext.currentOrg_AssignmentElement().getName());
                             params.setAttributeValue("Grade.4",wdContext.currentOrg_AssignmentElement().getEsubgroup());
                             params.setAttributeValue("Department.4",wdContext.currentOrg_AssignmentElement().getOrgtxt());
                             params.setAttributeValue("PersonalArea.4",wdContext.currentContextElement().getPersonalSubAreaText());
                             params.setAttributeValue("CostCenter.4",wdContext.currentContextElement().getCostCenter_GuestText());
                             //params.setAttributeValue("ActionName.4","Test Cab Request From Reddy");
                             if(wdContext.currentContextElement().getResultState().equalsIgnoreCase("Submit")){
                                  //setting the Action name dynamically(UWL Task Name)
                                  wdContext.currentContextElement().setActionName("Approve Cab Request Of " + wdContext.currentOrg_AssignmentElement().getName());
                                  params.setAttributeValue("ActionName.4", wdContext.currentContextElement().getActionName());
                                  wdComponentAPI.getMessageManager().reportSuccess("Your Request Form has been sumbited for the Approval.");
                                  message = "Your Request has been sumbited for the Approval.\n\tRequest ID : " + wdContext.currentContextElement().getRequestId();
                             } else {
                                  //setting the Action name dynamically(UWL Task Name)
                                  wdContext.currentContextElement().setActionName("Cab Booking Request from " + wdContext.currentOrg_AssignmentElement().getName());
                                  params.setAttributeValue("ActionName.4", wdContext.currentContextElement().getActionName());
                                  params.setAttributeValue("Extra.4",getTravelDeskPortalId());//Travel Desk Id
                                  wdComponentAPI.getMessageManager().reportSuccess("Your Request has been sent to Travel Desk.");
                                  message = "Your Request has been sumbited to the Travel Desk.\n\tRequest ID : " + wdContext.currentContextElement().getRequestId();
                    }catch(Exception e){
                         wdComponentAPI.getMessageManager().reportSuccess("Exception in Parameter Set "+e);
               IGPProcessInstance prInstance = rtm.startProcess(process,processName,"This process has been started using the GP public API",user,roles,params,user);
               catch(Exception e){
                    wdComponentAPI.getMessageManager().reportSuccess("Exception Main Try Block "+e);
               try{
               catch (Exception e){
                   wdComponentAPI.getMessageManager().reportSuccess("Error in Calling Complete" +e.getMessage());

  • Error while creating a BO Universe (using IDT) on top of SAP HANA Calculation View with Input Parameters

    Hi All..
          We are trying to create a Universe (using IDT-Version4.0) on top of the HANA Calculation view. The Calculation view has 4 input parameters, So
    in Universe side we have created the respective prompts. For the creation of derived table we have used the following code
    SELECT *
    FROM "_SYS_BIC"."<schema_name>.<CV_Calculation_View_test>"
    'PLACEHOLDER'=('$$IP_A$$','@Prompt(A)'),
    'PLACEHOLDER'=('$$IP_B$$','@Prompt(B)'),
    'PLACEHOLDER'=('$$IP_C$$','@Prompt(C)'),
    'PLACEHOLDER'=('$$IP_D$$','@Prompt(D)')
    While validating the above code we are getting an error.
    I have attached the snapshot of that error for your reference. Please find the attachment and help me in resolving it.
    Thanks in advance.

    Hello George,
    I don't have any personalization set on the info space. Also I am using mapped Account in BI to connect to HANA. The confusing part is that it is able to validate the infospace with the input parameters and index it. However query does not return any results. I even tried running the same query which explorer sends to HANA in the SQL editor and there too the same results,the query does not return anything. The model does return data when I do a data preview and if accessed from other tools like AAO.
    Also when I use SSO connection to HANA, indexing of the infospace fails. Where can I see the error log?
    Thanks,

  • How to log input parameters for Function Modules?

    Hi,
    I need to create a Logging system to trace input parameters for function modules.
    The log functionality could be done by developing a class method or a function module (For example 'write_log'), and calling it within each function module that I want to log. The 'write_log' code should be independent from the interface of the Function Module that I want to log.
    For example, I'd like to write a function/class method that can log both these functions modules:
    Function DummyA
       Input parameters: A1 type char10, A2 type char10.
    Function DummyB
       Input parameters: B1 type char20, B2 type char20, B3 type char20, B4 type Z_MYSTRUCTURE
    Now the questions...
    - Is there a "standard SAP" function that provide this functionality?
    - If not, is there a system variable in which I can access runtime all parameters name, type and value for a particular function module?
    - If not, how can I loop at Input parameters in a way that is independent from the function module interface?
    Thank you in advance for helping!

    check this sample code. here i am capturing only parameters (import) values. you can extend this to capture tables, changin, etc.
    FUNCTION y_test_fm.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(PARAM1) TYPE  CHAR10
    *"     REFERENCE(PARAM2) TYPE  CHAR10
    *"     REFERENCE(PARAM3) TYPE  CHAR10
      DATA: ep TYPE STANDARD TABLE OF rsexp ,
            ip TYPE STANDARD TABLE OF rsimp ,
            tp TYPE STANDARD TABLE OF rstbl ,
            el TYPE STANDARD TABLE OF rsexc ,
            vals TYPE tihttpnvp ,
            wa_vals TYPE ihttpnvp ,
            wa_ip TYPE rsimp .
      FIELD-SYMBOLS: <temp> TYPE ANY .
      CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE'
        EXPORTING
          funcname                 = 'Y_TEST_FM'
    *   INACTIVE_VERSION         = ' '
    *   WITH_ENHANCEMENTS        = 'X'
    *   IGNORE_SWITCHES          = ' '
    * IMPORTING
    *   GLOBAL_FLAG              =
    *   REMOTE_CALL              =
    *   UPDATE_TASK              =
    *   EXCEPTION_CLASSES        =
        TABLES
          exception_list           = el
          export_parameter         = ep
          import_parameter         = ip
    *   CHANGING_PARAMETER       =
          tables_parameter         = tp
    *   P_DOCU                   =
    *   ENHA_EXP_PARAMETER       =
    *   ENHA_IMP_PARAMETER       =
    *   ENHA_CHA_PARAMETER       =
    *   ENHA_TBL_PARAMETER       =
    *   ENHA_DOCU                =
       EXCEPTIONS
         error_message            = 1
         function_not_found       = 2
         invalid_name             = 3
         OTHERS                   = 4
      IF sy-subrc = 0.
        LOOP AT ip INTO wa_ip .
          MOVE: wa_ip-parameter TO wa_vals-name .
          ASSIGN (wa_vals-name) TO <temp> .
          IF <temp> IS ASSIGNED .
            wa_vals-value = <temp> .
          ENDIF .
          APPEND wa_vals TO vals .
        ENDLOOP .
      ENDIF.
    ENDFUNCTION.

  • How to write a SQL query in SAP B1 2007 B with input parameters?

    How to write a SQL query in SAP B1 2007 B with input parameters, on execution of which will ask for some input value from the user and the values will be selected from a list such as item list?

    The syntax like
    SELECT * FROM OITM T0 WHERE T0.ItemCode = '[%0\]'
    Thanks,
    Gordon

Maybe you are looking for

  • How do I hide the parent folder of the user home folders in File Sharing?

    In 10.6 Server I would set the parent folder so that "Everyone" could not list folder contents, then set "Everyone else" read only.  This prevented the parent folder from showing up in the list of available Share Points and allowing users to see the

  • Problem using dynamic variable as HashMap key

    I have created a HashMap called instantHashMap and loaded it with data from a query. I can load a variable with a value for the HashMap key and successfully output the HashMap value: <c:set var = "gameno" value="150" /> <c:out value = "${instantHashM

  • Lenovo ThinkVantage Button W500

    Recently Installed Window 7 Pro 64 bit and the blue ThinkVantage button is no longer working.  Is there a driver update for this?

  • Equipment Number not showing after created through IE01

    Hi, We have created a Equipment through IE01...after it system shows a message - Equipment XXXXXXXX and asset XXXXXXX created... But when we want to see it through IE03 or in master table EQUI (or in all equipment related tables), this is not showing

  • Send from Color back to FCP

    At the point of sending color corrected files back to FCP from Color a window entitled "Send To Sequence Option" come up with the message: "Change graded Final Cut Pro sequence to match the Quicktime export codec?" I'm using Apple Intermediate Codec