Grid records and actions

We would like to fill a datagrid with two kind of records;
only difference between the two records is the "new" or "Passed"
var. How to make an select click action based on this var.
gr
Hurby

Hi,
I think you get a quicker response if you submit this in the BPM forum: SAP Business Workflow
Eddy

Similar Messages

  • Error message after recording and running Action In PS CS3

    I have recorded an action to create a transparent image on a batch of photos. Next I ran the image processor using the File/Scripts/image processor. When running the action the error message occurs no matter how many ways I attempt to modify the action. Error: The object "Style "Shape Style"" is not currently available.
    I then look in the action window to check and under the steps Make Fill Layer: Style: Shape, Style 1 appears but I can't delete it.
    This one error message makes it impossible for me to image process a batch of photos with a watermark on them.
    Thank You In Advance for your Help.
    SPE

    can you save them into a new action set then save that?
    ex. create a new set, icon bottom of action palette, then create a new action in that set, then save that set via the flyout menu in the action palette and save action set
    what i'm getting at is maybe you have the action palette file locked.
    the main file is called "Actions Palette.psp" and lives in: C:\Documents and Settings\YOUR_USER_NAME_HERE\Application Data\Adobe\Adobe Photoshop CS3\Adobe Photoshop CS3 Settings
    make sure you have full access to that folder.
    another thing to maybe try... copy out that whole folder to a new location. then delete everything in it. then restart photoshop. then try to save the action again. at worst you can always copy the old files back in, at best, you'll clear out a disturbing error...

  • ERMS: Creation of Interaction Record and Service Ticket

    Hi All,
    I am configuring the ERMS system (SAP CRM 2007). So far I am been able to get internal emails into the CRM system and the emails are getting routed to the respective agent's inbox based on the rule in Rule Modeler.
    I have created rule for creating Interaction Record and Service ticket. However, Interaction Record and Service ticket are not getting generated. Also, I am not able to receive external emails (yahoo, gmail etc..) into SAPconnect.
    Any input on these issues is appreciated.
    Thanks & regards.

    Hi Namita,
    Same as the other thread, please make sure that the BP is identified for the incoming email and then only the creation of the IR/SO ERMS Actions will get executed with success.
    I am not sure, whether you still face this issue ?
    Thanks & Best Regards,
    Vinod
    Edited by: Vinod C on Mar 25, 2009 3:38 PM

  • Insert record and email

    Hello
    How do I insert a record with the image filename into a database, then send the data just entered as an email?
    I was able to do this before but now this new CS3 seems so complicated!
    I am unable to just use an insert record behavior then add form fields and change the insert or update recored behavior like before.
    Please can I be shown some actual working tutorials on this?
    This search function on this forum does not work as I tried to search for this exact statement "insert record and email" and no records appear.
    Cheers

    Ok, here is the entire page:
    <br />
    <br /><?php require_once('Connections/cnreviva.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("");<br /><br />// Make unified connection variable<br />$conn_cnreviva = new KT_connection($cnreviva, $database_cnreviva);<br /><br />$editFormAction = $_SERVER['PHP_SELF'];<br />if (isset($_SERVER['QUERY_STRING'])) {<br />  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);<br />}<br /><br />// *** Mail form as Text format ***<br />if (isset($_POST["FX_sendForm"]) && $_POST["FX_sendForm"] == "frmupload") {<br />  $format = strtolower("Text");<br />  if ($format != "html") $format = "plain";<br />  $filefield = "uploadfile";<br />  $top = "\r\n";<br />  $body = "\r\n";<br />  $excludeArray = array("button","button_x","button_y","uploadfile","FX_sendForm","MM_insert","MM_update"); <br />  $i = 0;<br />  while ($i<sizeof($_POST)) {<br />    if (!in_array(key($_POST),$excludeArray)) {<br />      if (is_array(pos($_POST))) {<br />        $postVar = implode(", ", pos($_POST));<br />      } else {<br />        $postVar = pos($_POST);<br />      } <br />      $body .= strtoupper(key($_POST)) . ": " . stripslashes($postVar) . "\r\n";<br />    }<br />    $i++;<br />    Next($_POST);<br />  }  <br />  $bottom = "\r\n";<br />  $from = $_POST["email"];<br />  // set parameters<br />  $recipient = "[email protected]";<br />  $subject = "Test";<br />  $message = $top . $body . $bottom;<br />  // set extra parameters<br />  $headers = "From:" . $from . "\r\n";<br />  $headers .= "Cc:\r\n";<br />  $headers .= "Bcc:\r\n";<br />  require_once("FXInc/FX_mailForm_php.inc");<br />  // send all<br />  mail($recipient, $subject, $message, $headers);<br />  $body = urlencode(str_replace("\r\n", "<br>", $body));<br />  $redirect = "thankyou.php";<br />  if ($redirect) header("Location: " . $redirect);<br />}<br /><br />// Make an insert transaction instance<br />$ins_tblfeedback = new tNG_insert($conn_cnreviva);<br />$tNGs->addTransaction($ins_tblfeedback);<br />// Register triggers<br />$ins_tblfeedback->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");<br />$ins_tblfeedback->registerTrigger("END", "Trigger_Default_Redirect", 99, "thankyou.php");<br />// Add columns<br />$ins_tblfeedback->setTable("tblfeedback");<br />$ins_tblfeedback->addColumn("name", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("email", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("city", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("country", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("shoe_size", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("feedback", "STRING_TYPE", "POST", "");<br />$ins_tblfeedback->addColumn("activate", "STRING_TYPE", "POST", "", "N");<br />$ins_tblfeedback->addColumn("photo", "FILE_TYPE", "FILES", "uploadfile", "");<br />$ins_tblfeedback->setPrimaryKey("id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rstblfeedback = $tNGs->getRecordset("tblfeedback");<br />$row_rstblfeedback = mysql_fetch_assoc($rstblfeedback);<br />$totalRows_rstblfeedback = mysql_num_rows($rstblfeedback);<br />?>
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <script src="includes/common/js/base.js" type="text/javascript"></script>
    <br />
    <script src="includes/common/js/utility.js" type="text/javascript"></script>
    <br />
    <script src="includes/skins/style.js" type="text/javascript"></script>
    <br />
    <br />
    <br />
    <br />
    <form action="%3C?php%20echo%20$editFormAction;%20?%3E" method="post" name="frmupload" id="frmupload">
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <table width="300" border="0" cellspacing="0" cellpadding="5">
    <tr>
    <td>Name
    <br />
    <br />
    <input type="text" name="name" id="name" length="20" value="" /></td>
    </tr>
    <tr>
    <td>Email
    <br />
    <br />
    <input type="text" name="email" id="email" length="20" value="" /></td>
    </tr>
    <tr>
    <td>City
    <br />
    <br />
    <input type="text" name="city" id="city" length="20" value="" /></td>
    </tr>
    <tr>
    <td>Country
    <br />
    <br />
    <input type="text" name="country" id="country" length="20" value="" /></td>
    </tr>
    <tr>
    <td>Image
    <br />
    <br />
    <input name="uploadfile" type="file" id="uploadfile" /></td>
    </tr>
    <tr>
    <td>&#160;</td>
    </tr>
    <tr>
    <td>
    <?php<br /> echo $tNGs->getErrorMsg();<br />?>
    <input type="submit" name="button" id="button" value="Submit" />
    </td>
    </tr>
    </table>
    <br />
    <input type="hidden" name="FX_sendForm" value="frmupload" />
    <br /></form>
    <br />
    <p>&#160;</p>
    <br />
    <br />

  • How to I record an Action to Save As that doesn't include a file name??

    Hi -
    I have an Action that will crop and scale a PDF file then Save As a JPG to a destination folder.  The problem is that when I recorded the Action I did so with a file named ABC.PDF and Saved it as ABC.JPG - and now every file saved with this
    Action is named ABC.JPG
    This makes it impossible to use with a bunch of different files.  One file gets overwritten multiple times with the same name.  The  file name ABC.JPG is "burned" into the Action.
    SO - how do I record an Action to Save As without including a file name??
    TIA your help on this crazy problem -
    Josh
    CS5 on Windows7

    PeterK - thanks for the reply.  I tried that already - initially actually. 
    I even tried blanking out the field so I would save a file with NO name.  PSD added it's own .jpg and saved it like that.  Every file after that over wrote that one too so after using the Action on 6 files I still only had one ".jpg" in the folder.
    I was hoping that there was a setting or preference somewhere.  SInce this is Windows might it be OS related?

  • How to record 'select' action in alv report using BDC technique

    hi guys, u r the best;)
    my question is: when u select one line in alv report, the line will be high-lighted, right? and suppose there's a button for further processing, then u can click the button to process only this line. ok now, using BDC technique, the system doesn't record the 'select' action! even i go to menu-->select all, it still doesn't work.
    or if anybody knows how to release customer expected price except t-code v.25? cuz, i'm trying to record actions in v.25.
    thx in advance, u helped me a lot.

    Hi :
       you cannot record ALV using BDC.According to ur req., after u enter data in selection screen, it goes to ALV list , there u select particular record and process further rite, say create in bck ground or foreground.
    While doing recording, in selection screen if u have any check box which displays ALV List , uncheck it and continue ur recording.
    In the bdc program u can see a field some thing like p_alvlist ' ', mark it as p_alvlist ' / '.
    If not, copy the program along with includes,  in ur  program comment all the alv part, and  call that particular FM where this selection takes place from ur main program.
    Hope this helps.
    Reward points if this is useful.
    Thx.
    Raghu

  • Record and playback of OATS functional testing in multiple tabs

    New tabs functionality have been a part of browsers for sometime now. But Openscript doesnot record any action relating to new tabs. Is there a way to modify the code so as open new tabs and switch between tabs during the playback?
    This will reduce sufficient time during testing of multiple URLs which share the same cookies.
    This is required for Fusion Functional testing.

    Hi,
    I suggest a couple of things:
    NI USRP 2920 is a non-calibrated device. So setting a gain value of 0 at different frequencies could mean a different actual gain. So try increasing the Rx recording gain (on the USRP) in cases where you observe low SNR. Similarly Tx is not calibrated.
    Is the signal recording done with cables or over wireless medium ? You can try to eliminate any spurious signals if you use SMA cables while recording.
    I think the power at the center of the spectrum is the DC offset. You may refer to the DC Offset/LO leakage section in the best practices section here http://www.ni.com/white-paper/13881/en/
    Thanks.

  • Vibrance level not recording in action in CS5

    I'm trying to record an action in which I set the vibrance level.  After creating a new action I add a vibrance adjustment layer and set the slider to "70".  I stop the action and when I run it I get the layer added, but the vibrance level is set to "0".

    Warning about creating actions that add adjustment layer.  Unless your carefull the way the ply bat will be a crap shoot. Adobe intriduced bufs in Photoshop CS4 adding bad option to the Added Adjustment Panel. In its Fly-out menu Adobe added to option that may brake the way actions andscripts that add adjustment  layers work.
    That said the newer versions of Photoshop record addige adjustment layers in Two steps. Where old versions added a single step the add and set the adjustment setting.  The neer version of Photoshop recirds two steps instead One add the adjustment layer abt the second step adjust the adjustment layers settings.  The recording of the second step is also delayed till you start our your next operation. It sounds like you only had the first step and are missing the second step the set the vibrance to some value.
    My Advice is to leave these option set to the default setting and forget they exist.  Photoshop will work like it always has worked before CS4.

  • Insert record AND post form

    Hi,
    I'm sure this is a common problem, I could not find anything
    relating to it in search here so...
    I have a form, which I insert data into database, fine.
    I then want to post the same form to paypal payment page.
    I've got paypal set-up fine with hidden fields in the form
    etc. However, how can I make the insert into database and then post
    the form to paypal ? should I use onClick event to trigger insert
    and action to post to paypal ?
    using asp vb
    Any advise appreciated.

    It'd be a 2 page process. On page 1, you submit the form and
    insert record
    into database. Then redirect to page 2. On page 2, you'd
    submit the form on
    load and post it to paypal.
    Jules
    http://www.charon.co.uk/charoncart
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004

  • BDC can't record scrolling action

    Hi Experts,
    I'm facing a problem in recording scrolling action in screen when doing BDC recording.
    I have to enhance the standard SAP program in user exit (IDOC_INPUT_ORDERS) which is using BDC way in creating Sales Order when receive Inbound IDOC.
    The new requirement is to fill in serial number in each item, the total of serial number needed depends on the quantity ordered for that item.
    (in VA01, click on particular item, go "Extra" -> "Technical objects" and enter the serial number. Item with quantity 60 will have 60 serial numbers to enter.)
    The problem is, when i try to enhance the BDC formed in IDOC_INPUT_ORDERS, the recording  failed to record the scrolling down action when trying to fill in all serial number. (The screen only able to fill in max 19 serial numbers and requires scrolling after filling in 19 serial numbers)
    Can someone please help and give me an idea on how to solve this problem?
    Thanks.
    Best Regards,
    Jason

    Dear Jason,
    I have the same requirements as you have to populate serial numbers for a sales order creation with IDOC_INPUT_ORDERS. Unfortunately, I was not able to make it work. Could you please be able to share your code with me so I understand where is my mistake.
    Many thanks in advance.
    Regards,
    Marcus Rego
    SAP Senior Technical Consultant
    Research In Motion
    Canada

  • Recording script actions in an action

    Is it possible to record the steps that a script performs (e.g. creating a new layer, switching to a certain layer, applying a filter) in an action? When you activate the record button on the Action panel and run a script, only the script execution is recorded and not the things that the script does. Is there a way to pass the script steps to the Action panel so that it records it?

    Davide, I did not try anything new in this direction yet. It is a pity that operatons triggered by a script, panel or plugin cannot be recorded by the Actions panel. Only manually performed operations seem to have that privilege.
    But I still have not given up hope that there is a workaround to make it possible anyway. Maybe if the operations are triggered via simulated key shortcuts, they may be recorded by Photoshop. That would probably only be possible via a plugin or if a script calls a function from a .dll file. But not all things can be done that way.
    Another option would be to dynamically save a script on the hard drive for each operation and then trigger each script to produce a new recording step. But then these script files need to stay on the harddrive as long as the action is still in use. But I do not know if that would really work.
    Maybe it is also possible somehow to inject an event into the scripting system that can be recorded. But so far I have no idea how to do that.

  • Join Path not recording in action

    I'm trying to build an action in Illustrator CC (17.1) to post-process some vector files exported from a CAD package. The workflow is:
    Select All
    Object > Path > Join
    Effect > Path > Offset... (0.25mm)
    However, when recording the action only Select All is captured. The Join and Offset operations are performed on the artwork, but do not appear in the action. I've tried searching around for more details on Join used in actions, or limitations of actions, and haven't found any issues here.  I  would expect all of the basic object manipulations in the Object and Effects menus to be available for action recording, but it seems that may not be the case? Can anyone shed light on what's going on here?

    In the Actions panel menu, take a look at the Insert Menu Item command.

  • How to record user action?

    Dear All,
    I am trying to build a performance testing tool like jmeter. I want to know how jmeter or any HTTP performance tool records user action. I don't know how to write the action recording code. If anybody knows please help me out.
    The following are the logic behind the jmeter action recording
    1. Turn on the proxy (HTTP in this case). Jmeter starts listening to HTTP traffic to/from the specified URL. It basically acts like a sniffer for the traffic between your client (the browser) and the server IP address.
    2. User starts performing his business process (the activities/requests to the server).
    3. When a request is sniffed/captured by the tool, it immediately creates a code to send the same request (basically an HTTP GET/POST method created).
    4. At the same time it monitors the response from the server and creates a checking code for verifying that the response obtained is correct (This is used further by the tool when we run the test). The response includes the complete HTML data including the Header and Body sections.
    5. All the requests and corresponding responses are captured by the tool and the corresponding code generated automatically.
    6. Once the recording ends, it puts together these snippets to create a complete code which could be further modified by the users so that they can run it in a multi-threaded environment.
    7. Users run the code specifying the number of users (basically threads) to perform a load test on the server. (The code generated would be thread-safe so that there are no overlaps)
    Thanks & regards

    So why not using Jmeter and make you own modification when required
    This is the great benefit of open source community
    Regards,
    Alan Mehio
    London,UK

  • Edit watch me do after recording and then integrate again

    Hi All,
    I am a new bee to Automator. I am trying to automate testing for an application whose UI controls, most often, are not identified by Automator. Therefore automator uses statements of the sort "UI element 1 of UI element 1 of scroll area 1 of......" and so on. Therefore, I cannot write these scripts on my own ( or please guide me if I can). So, I record an action which is a combination of steps. From this "watch me do" I drag out a step to see its script. Now I want to do similar things:
    This records actions in a window names untitled1. I would like to edit this name in the script to "any title".extn (How can I do this?) Now I want to integrate this edited step back to its original location in watch me do.
    TIA!
    regards,
    vb

    Thanks a lot! Accessibility Inspector (AI) is what I was searching for. I thought of using the Dictionary of "Script Editor", but my application was not listed among scriptable apps there. Thanks for this.
    Now the issue is the application does not expose any controls.
    I am not sure how automator recognizes the controls while replay, but AI does not show any different names for the controls on stage. Moreover, on looking at the script recorded by Automator, I see all the elements named as UI element 1.
    Now knowing the fact that elements are not identified, I tried using keyboard to complete actions. But automator does not recognize tab, return etc. Can I do this using scripts.
    My previous questions still remain:
    Can I edit apple script of a step in automator action and integrate it back to the action? If yes How?
    And how can I edit the name of window in applescript of a step from say "untitled.rtf" to "*.rtf"
    cheers,
    vb

  • Get value from table record and set Disabled property...

    Hi! I have table in my JSPX page. I search for records and then press on one of the records with right click, see: http://my.jetscreenshot.com/2677/20120203-fas1-30kb
    I set disabled property like this of my commandMenuItem:
    #{row.GenResGrupa != 'true'}But as You can see from my picture above, the disabled property do not work. Where I am wrong with my code:
    <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.GenResGrupa != 'true'}"/> Please correct me! If You need some other information, please let me know.
    Best regards, Debuger!

    Dear fedor! Popup is in facet contextMenu. contentDelivery="lazyUncached" for my popup:
    <af:popup id="p1" contentDelivery="lazyUncached">
                            <af:menu text="menu 1" id="menu1">
                              <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"/>
                            </af:menu>
                          </af:popup>In my pageDef I have this code:
    <bindings>
        <tree IterBinding="LVAIMeklesanaIterator" id="LVAIMeklesana">
          <nodeDefinition DefName="kokaugi.model.view.LVAIMeklesana"
                          Name="LVAIMeklesana0">
            <AttrNames>
              <Item Value="Accename"/>
              <Item Value="LvaiKolekcijaPk"/>
              <Item Value="Accenumb"/>
              <Item Value="AvsGrupa"/>
              <Item Value="Cropname"/>
              <Item Value="EkspGrupa"/>
              <Item Value="GenResGrupa"/>
              <Item Value="Genus"/>
              <Item Value="Species"/>
              <Item Value="Sinonims"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
        <action IterBinding="LVAIKolekcijaDatiIterator"
                id="setCurrentRowWithKeyValue"
                InstanceName="KokaugiModuleDataControl.LVAIKolekcijaDati"
                DataControl="KokaugiModuleDataControl" RequiresUpdateModel="false"
                Action="setCurrentRowWithKeyValue">
          <NamedData NDName="rowKey" NDValue="#{row.LvaiKolekcijaPk}"
                     NDType="java.lang.String"/>
        </action>
      </bindings>And disabled property is like this:
    disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"But it is still do not working. I am wrong somewhere? Maybe the only way to correct my problem is like Hohn said?
    Best regards, Debuger!

Maybe you are looking for

  • How to check the database connection using OCI

    I am working on enhhancement of very old application developed using C and OCI. It has a background process which acts as a middleware for interaction of any other front end process with oracle database. Any processes, which needs to interact with da

  • Using Reports in Web Layout Editor

    I am tring to figure out how to use the commit date of a document to the repository in a historical or active report. I have the option of release date but this will not work for the SLA metrics that I am trying to gather as some documents enter work

  • How to change WBS code to description in IM52

    Hi All, I am using Investment Management. I would like to distribute budget in IM52. but in IM52 it shows the WBS code not the wbs description, how to make it change to description ? Please help. Cheers, Nies

  • N96 facebook app problem

    I downloaded nokia facebook client to my n96 and it install the facebook app for me.But any time I tried to login it gives message "invalid app ID".Please any help cuz i like the sis fb app than J2me fb app.Thanks

  • Looking for Info on DBMS_SHARED_POOL

    Can anyone direct me to better documentation about DBMS_SHARED_POOL (preferrably with examples) than is in the Supplied PL/SQL Packages document? It is (as one expects from Oracle Documentation) extremely terse. Thanks