Custom Trigger help needed

How do I include values from existing recordsets in a SQL statement
within a Custom Trigger?
For example, my page has a few recordsets. Assume one of the recordsets
tells me what state the current user lives in. $row_rsCurUsr['state']
There is an Insert form on the page with a Custom Trigger (after)
attached. I need the Custom Trigger to perform another action (insert,
update, delete, whatever) but it needs to use the $row_rsCurUsr['state']
value. How can I do this?
I've tried something similar to:
$triggerSql = "INSERT INTO anothertable (id, state) VALUES
({SESSION.kt_login_id},{rsCurUsr.state})";
and
$triggerSql = "INSERT INTO anothertable (id, state) VALUES
(".$_SESSION['kt_login_id'].",".$row_rsCurUsr['state'].")";
but neither seems to work.
Alec
Adobe Community Expert

Ok. How about executing a SELECT inside a Custom Trigger and accessing
the resulting rows to use in PHP code also in the trigger?
Example - within the Custom Trigger execute:
$sql="SELECT * FROM table";
How do I execute it? With the regular DW code like:
mysql_select_db($database_conWV, $conWV);
$sql="SELECT * FROM table";
$result = mysql_query($sql, $conWV) or die(mysql_error());
$row_result = mysql_fetch_assoc($result);
$totalRows_result = mysql_num_rows($result);
or with some ADDT code like:
$result = $tNG->connection->execute($sql);
If I do the "ADDT" way, how do I access the rows?
$result['column'] or something?
Alec
Adobe Community Expert

Similar Messages

  • Custom Trigger Help

    Can i make a custom trigger that searches for all " " and replaces them with a zero (0). I have the update form feeding in to a form that will show errors if there is a zero in it, because it is using math.
    I have about 40 fields in a form and it can't have any blanks in it.
    Thanks in advance.
    Amy

    Ah I think I understand,
    <br />
    <br />---------
    <br /><% 'start Trigger_Custom trigger Function Trigger_Custom (ByRef tNG)<br /><br />Set Trigger_Custom = nothing<br />End Function<br />'end Trigger_Custom trigger<br />%>
    <br />---------
    <br />
    <br />sorry for still struggling a little, but as I´m a PHP guy, this code doesn´t say much to me - however this:
    <br />
    <br />$tNG-&gt;setColumnValue("column_name", your string replacement code here, $tNG-&gt;getColumnValue("column_name")));
    <br />
    <br />...would have to be copied and pasted into the "enter custom trigger code" text field of ADDT´s "Custom Trigger" behaviour, and then assumingly modified by replacing my "your string replacement code" dummy placeholder with your ASP code which would do that string replacement.
    <br />
    <br />Does this answer your question ?
    <br />
    <br />-------
    <br />As far as do you ever stop working, I mean you seem to be online all the time. Do you ever get a break?
    <br />-------
    <br />
    <br />Usually I´d take a nap now, because it´s 1:35 AM here in Germany -- but I´m a late riser anyway and still have some work to do, so I don´t care ;-)
    <br />
    <br />Cheers
    <br />Günter Schenk
    <br />Adobe Community Expert, Dreamweaver

  • Custom text - help needed

    Hi Guys, I've got to design a Family Tree for a client and they want a very particular style. An arc sits at the bottom centre of the page, and inside the arc there are two names/birthdays/deaths/marriages etc. At right angles outside the arc, more names/births/deaths/marriages are listed. For each new generation there will be a new arc, and each new name etc will be at right angles to the arc below, no matter where they sit on the arc. I've done a really rough example of what they want.
    So basically my question is this: can it be done easily? (typing on text paths, scripts etc etc..)  I really don't want to have to put each new name into an individual text box and rotate to the correct angle, if I can help it. There are up to 8 generations and several hundred names. Family tree goes back to early 1800's...
    Any help would be greatly appreciated!

    It looks like a great opportunity to write a script. After all, it's all just maths; the names 'above' the root can evenly be distributed by dividing the available arc (180°) by the number of names (3), resulting in a separation of 60°, and the initial angle should be half that of that separation. So the first name is at 30°, the second at 90°, the third at 150°, and then there is a remainder of 30° again for the right side.
    These same values should be used for the next layer of this onion (family trees can be smelly too), but this time I think the content should be centered on that angle, so the angle for each single line depends on the number of lines in that branch.
    It sounds perfectly doable with a script, apart for one thing: how are you going to point out what texts must go where?

  • Custom Exit  help needed

    HI ,
    I have developed a custom exit , to restrict based on USER who logs in and gets detais for him from my two ODS in the report
    the code is some thing like this
    FOR I_STEP = 2 .
    select zempno from /bic/azhrpe00100 into table itab1 where /bic/zspnm = sy-uname.
    select zempno from /bic/azhrpe00100 into table itab2 where /bic/zspnm = sy-uname.
    CLEAR L_S_RANGE.
    loop at itab1 into temp_zempno1.
    L_S_RANGE-LOW = temp_zempno1.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    EXIT.
    ENDLOOP.
    CLEAR L_S_RANGE.
    loop at itab2 into temp_zempno2.
    L_S_RANGE-LOW = temp_zempno2.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    EXIT.
    ENDLOOP.
    SORT E_T_RANGE.
    DELETE ADJACENT DUPLICATES FROM E_T_RANGE.
    ENDIF.
    this is my code , when i debug i can see E_T_RANGE getting the values , for the STEP 2 , but i am getting this error
    <b>Error: Error for variable in customer enhancement ZEMPLO</b>

    Hi,
    For what variable? (Remember => NOT ready for Input! and mandatory input)
    a.) encapsulate it by
    FOR I_STEP = 2.
    CASE I_VNAM.
    WHEN <Your Variable>.
    Your Coding
    endcase.
    b.) also assign a high value.
    L_S_RANGE-LOW = temp_zempno1.
    L_S_RANGE-HIGH = temp_zempno1. "as well as for zempno2.
    L_S_RANGE-SIGN = 'I'.
    hth
    cheers
    sven

  • Can anyone help with a custom trigger?

    Hi - I know this is a tough one and appreciate anyone's help!
    I'm trying to create a custom trigger that confirms 2 fields belong to the same record. If they do, proceed with insert transaction.
    I have gone through the tutorial (from the old Interakt Discussion Board tutorial at http://www.interaktonline.com/Documentation/MXKollection/075000_tutorialdiscussionboard.h tm) on how to create a custom trigger that checks to see whether a duplicate message and subject exist in the table and if so, stop the insert. I have this working fine, using my own table and fields.
    Can anyone help me to change the script here to confirm that both fields belong to the same record? Here is what I have right now:
    $query = "SELECT * FROM dan_camptrans_login_familyid_confirmid WHERE family_id = ".KT_escapeForSql($tNG->getColumnValue("family_id"),$tNG->getColumnType("family_id"))." AND confirm_id = ".KT_escapeForSql($tNG->getColumnValue("familyconfirm_id"),$tNG->getColumnType("familycon firm_id"));
    $result = $tNG->connection->Execute($query);
    if(!$result) {
    $error = new tNG_error("Could not access database!",array(),array());
    return $error;
    } else {
    if($numberOfRecords = $result->recordCount()) {
    $uniqueFailed = new tNG_error("There is already a message with the same subject and content!",array(),array());
    return $uniqueFailed;
    } else {
    return NULL;
    Any help would be SUPER appreciated!
    Dan

    Thank you very much Shane for responding.
    Right now, if I fill out the form and enter any numbers in the family_id and familyconfirm_id fields that are currently NOT in the dan_camptrans_login_familyid_confirmid table, the form submits fine. If however, both fields already exist within the same record, the error is returned.
    I guess what I am looking for is the opposite. When the form is submitted, the table dan_camptrans_login_familyid_confirmid is checked. If both field entries are not within the same record, return the error.
    Basically, I am sending out a user ID and confirmation number via mail to users. When they register they need to enter in both of these numbers and only if they match the records will the registration proceed.
    The main recordset/form that this custom trigger is attached to is one for my user registration table. This custom trigger and associated table is only to confirm the user registering has the correct information to register.
    Thanks again - I hope that I am explaining this clearly.
    Dan

  • Guidence needed for Custom Trigger

    I have an ADDT Dynamic List and Form. (I love these things!) When I add/edit/delete a record using the form, I would like to update another (unrelated) database table and would like to know if that is possible using a Custom Trigger. I have read Ch. 16 of the ADDT Help manual and am a bit lost with the jargon  as I am not a power-php person.
    Here is what I need to do: Select from a different table a record by a value in a field and update another field in it. Then return to the Dynamic List page.
    The other solution which is an easy cop-out is once the transactions have been completed on the Form page, go to an intermediate PHP script that carries out the Select and Update process then return to the Dynamic List page.
    Any suggestions/comments welcome. Thanks.

    Hi Albert. Thanks for pointing out yet another hidden gem in ADDT.
    The help for this SB is a little vague.
    As a result I have no idea on how this will help.
    Here is the situation in a bit more detail.
    Lets say the Dynamic Form is used to enter News items. These are kept in a table for News Items. These Items are presented on a News page in the site. This page gets its content from the Pages table as well as the News table.
    There is no relationship between the two tables. However, the Pages table includes a field called updated which contains the date the "page" was last updated. Each News item also has an Updated field, but when the news item is updated I also want to update the updated field for the News Page.
    My first thought was to add a custom trigger to the News Items Form page that could grab the News Page record from the Pages table and update its updated field.
    So the Pages Table looks like this:
    Table name:pages_pag
    Columns:
    id_pag  - the primary key
    idpag_pag - the self foreign key
    menulabel_pag - the menu label
    template_pag - the template file used to display the page.
    pageheading_pag - the page heading
    content_pag - the page content
    updated_pag - the date created/updated
    etc etc......
    The News Table looks like this:
    Table name: news_nws
    Columns:
    id_nws
    heading_nws
    summary_nws
    details_nws
    updated_nws
    etc...
    Hope this explains what I am trying to achieve.

  • Help needed in creating a Customer in SD

    Hi,
    I am trying to create a customer using the FM  'BAPI_CUSOTMERCREATEFROMDATA1'. Without Providing Reference Customer nbr, i am not able to create. Is there no means to create a customer without giving Reference Customer.
    All helpful answers will be rewarded.
    Regards,
    Udaya

    Hi Udaya,
    I have checked for the FM you have mentioned. That does not exist in my system. Anyway I could successfully create a customer using the FM BAPI_CUSTOMER_CREATE.
    This is the FM which lets you create a customer without the need of any reference. If it is configured in XDN1 that your account group has external number, please provide a number to your customer in the initial screen after you execute your BAPI.
    Let me know if you have any further concerns,
    Regards,
    Ramakanth

  • Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx

    Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx Plz guys anyone can help plzz....I've lost all contact and I dont even have any secondary back up also...!!!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • Need help  on - custom F4  help

    Requirement :
    Suppose I have 3  I/O screen fields :
    <b>FIle_name</b>              <b>Description</b>           <b>File_Grp               </b>
    The custom F4 help is provided only on  <b>File_name</b> using 'F4IF_INT_TABLE_VALUE_REQUEST'. The F4 pops up as required which again has some additional fields with file_name.
    The F4 help looks likw this
    <b> Sr No   File_name              Description           File_Grp    Default</b>
           1           AAA                        AAA-Desc            A1             X
           2           BBB                        BBB-Desc            B1            
    Now if i select the 2nd row, the screen fields should fill up like this
    <b>FIle_name</b>  : BBB            <b>Description</b> : BBB-Desc           <b>File_Grp</b>  :B1
    Thanks
    SMS

    Check this sample code
    the custom F4 help provided, returns the material group of the material selected to the selection screen parameter <b>P_MATKL</b>
    REPORT  ZYH284_TEST1.
    parameters:
      p_matnr type mara-matnr,
      p_matKl type mara-matkl.
    data:
      begin of itab occurs 0,
        matnr type mara-matnr,
        matkl type mara-matkl,
      end of itab,
      t_ret_tab LIKE STANDARD TABLE OF DDSHRETVAL,
      t_dyn_map LIKE STANDARD TABLE OF DSELC,
      fs_ret_tab TYPE  DDSHRETVAL,
      fs_dyn_map TYPE DSELC,
      w_repid type sy-repid,
      w_dynnr TYPE sy-dynnr.
    at selection-screen on value-request for p_matnr.
    select matnr
           matkl
       from mara
       into table itab
       up to 10 rows.
      fs_dyn_map-fldname =  'F0002'.
      fs_dyn_map-dyfldname = 'P_MATKL'.
      APPEND fs_dyn_map TO t_dyn_map.
      w_repid = sy-repid.
      w_dynnr = sy-dynnr.
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
         EXPORTING
         DDIC_STRUCTURE         = ' '
           retfield               = 'MATNR'
         PVALKEY                = ' '
          DYNPPROG               = w_repid
          DYNPNR                 = w_dynnr
          DYNPROFIELD            = 'P_MATNR'
         STEPL                  = 0
         WINDOW_TITLE           =
         VALUE                  = ' '
          VALUE_ORG              = 'S'
         MULTIPLE_CHOICE        = ' '
         DISPLAY                = ' '
         CALLBACK_PROGRAM       = ' '
         CALLBACK_FORM          = ' '
         MARK_TAB               =
       IMPORTING
         USER_RESET             =
         tables
           value_tab              = itab
         FIELD_TAB              =
          RETURN_TAB             = t_ret_tab
          DYNPFLD_MAPPING        = t_dyn_map
       EXCEPTIONS
         PARAMETER_ERROR        = 1
         NO_VALUES_FOUND        = 2
         OTHERS                 = 3
       IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.

  • Help Me Customer Service - I Need A Refrigerator Delivered

    Best Buy is always my Go-To store, so I'm very surprised by the run-around I'm receiving.  I purchased an open-box LG Refrigerator - Model LFXS29766S on 4 Dec 2014 at (Best Buy #1459).  At that time, we scheduled delivery for 10 Dec 2014.  As promised by the very professional salesman, on 9 Dec, I received verification of delivery between 9:00 and 10:00 am on 10 Dec.  
    I took a day off today and at 9:00 am the warehouse manager in San Marcos, Texas (75 miles away) called and said the refrigerator never made it to the warehouse for delivery.  The person stated he would call the store at 10:00 am when they opened and have the manager contact me with information.
    At 10:40 am I called the San Pedro store since I had not received a call.  I was told the Appliance Manager, Anna {removed per forum guidelines}, was not in, but the senior sales rep Carlos would look into it and call me right back.
    Since I did not receive the call by 1:10 pm, I again called my Best Buy and asked to speak with a manager.  The person I received stated the issue was being discussed at the Dallas warehouse, but he did not know what the issue was.  I asked if the refrigerator was in the store and was told it was not.  They said the Dallas office will call me soon.  It is currently 2:15 pm.
    Please Customer Service help me resolve this issue and reassure me this is only a fluke and not the new norm.  I've sold my current refrigerator and it's leaving my house this evening.  I'm relying on my new refrigerator today.  My time off is valuable and very difficult to coordinate within my office.  
    A call is welcomed!  Joe {removed per forum guidelines}

    Hi badilloja,
    It is frustrating to hear that this refrigerator delivery didn’t go off without a problem, but I was glad to read this is now taken care of for you. Thanks for the update, and for remaining a customer of ours.
    Thanks for posting,
    Allan|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • EDI IDOC generation for interface with Vendor software help needed.

    EDI IDOC help needed.
    We are NOT an EDI shop, but have a project to output data to Sales Force.com
    Sales Force requests IDOC output - eg. 810 Outbound Invoice.
    We will need to do a historical load of Orders/Quotes/Invoices from the past 2 years.
    Is there a function module or series of FM's that are used to generate the E2EDKxxxxx type segments?
    I have been testing using the IDOC_OUTPUT_INVOIC and IDOC_OUTPUT_ORDRSP FM's, but they generate segments begining with E1EDKxxxxx.
    Basicall we have a report program that the user enteres in the date range of Order/Quotes/Invoices they wish to extract, the the program needs to output a flat file (.txt) on the server which is then picked up by Sales Force.com.
    Also, is there a way to have in the Partner Profile a generic Partner under the "Type KU" that can be used for all orders/invoices so I don't have to create a KU Partner Type for each and every Sold-To customer we have?
    I am very new to EDI so any help would be greatly appreciated.
    Thanks.
    Scott.

    Hi Scott,
    We will need to do a historical load of Orders/Quotes/Invoices from the past 2 years.
    I know it's very tempting to use an interface for such loads if you anyhow have to create one. However, often the volume alone speaks against interface usage for such scenarios.
    Is there a function module or series of FM's that are used to generate the E2EDKxxxxx type segments? I have been testing using the IDOC_OUTPUT_INVOIC and IDOC_OUTPUT_ORDRSP FM's, but they generate segments begining with E1EDKxxxxx.
    Well, the E2* segments basically reflect the external name of the IDoc segment, whereas the function modules you're referring to basically just create an internal version of the IDoc. Once the IDoc framework then passes the IDocs to the partner, the segment names usually (depends on how the IDocs are passed on) get converted to their external name. If there are multiple versions of a segment, then the version number will be appended to the segment name.
    Note that IDoc segment definitions are only partially stored in the data dictionary. If you want to see all versions you should always use transaction WE31 to look at segments. There you can also see for example for E1EDK01 the several versions and when you then use in SE37 function module SEGMENT_EXTERNAL_NAME_GET you will see what SAP produces as the external name for segment E1EDK01. This function module is basically the one that handles the segment name translations.
    Ignore the comments for subsystem, this is basically an option in SAP to possibly trigger further external tools (e.g. mapping etc.) for handling the outbound IDocs.
    Again, the funny thing is that via the WE30 transaction, if i put in INVOIC02 as the Obj. name and see the segments, i can see that E2EDK01 there is a version 005, but if i go to SE11 and put in E2EDK01005 structure line and i get a "not found". We just have up to E2EDK01002.
    In the old days SAP used to generate E1, E2 and E3* structures in the data dictionary (SE11). The E1* structure reflected the character type representation of an IDoc segment, whereas the other two (definition and documentation) contained actual references to data elements (e.g. if you used a quantity field). However, in newer releases those dictionary structures (E2* & E3*) are no longer generated, because they're superfluous (meta data defined via WE31 is sufficient).
    Cheers, harald

  • Custom trigger

    Hi--
    I am inserting into 2 tables sc_tblBioInfo and sc_tblSemesterInfo. I have 2 fields 'Plantoenroll' and 'year' that are inserted into 2 different fields into sc_tblSemesterInfo. That works fine.
    I also need to insert 'Plantoenroll' and 'year' combined into 1 field called 'Plantoenroll' in sc_tblBioInfo.
    I have created a custom trigger to combine them and insert into sc_tblBioInfo:
    function Trigger_Custom(&$tNG) {
    $Plantoenroll = $tNG->getColumnValue("Plantoenroll");
    $year = $tNG->getColumnValue("year");
    $newSubject = $Plantoenroll . $year;
    $ins_sc_tblBioInfo->addColumn("Plantoenroll","STRING_TYPE","VALUE",$newSubject);
    return null;
    I am getting an error "Column Plantoenroll is not part of the current transaction." How do I make Column Plantoenroll part of the current transaction?
    Is there a better way to insert 2 fields into a table and also insert those 2 fields as 1 field into a different table?
    Thanks for any help.
    --rayne

    Rayne,
    If I understand correctly, you want to insert/update a different table than the table the ADDT form is inserting to.
    The form on your page inserts a new record into sc_tblSemesterInfo table. You also want to insert a new value based on combining two fields into one and insert or update the new value in the sc_tblBioInfo table.
    Unfortunately, you cannot use:
    $ins_sc_tblBioInfo->addColumn("Plantoenroll","STRING_TYPE","VALUE",$newSubject);
    to update a different database table than the one the form is associated with.
    The correct code would be:
    $tNG->addColumn("Plantoenroll","STRING_TYPE","VALUE",$newSubject);
    but using this in a trigger only allows you to add Columns to the trasaction database table that the form is inserting to. You cannot tell it to update a different database table like this.
    The key question is whether you need to do an Update to an existing record in sc_tblBioInfo, or are you a doing fresh an insert in the sc_tblBioInfo table?
    You need to do a custom trigger that does a database call to do an insert or update operation on the sc_tblBioInfotable table. After you combine the values into a new value, are you needing to insert a new record into the sc_tblBioInfotable table, or are you needing to update an existing record in the sc_tblBioInfotable table?
    Shane

  • Help needed : Extension manager cs6 not listing products

    Help needed to Adobe extension manager cs6 to show all my cs6 products
    I downloaded Extension manager from here Adobe - Exchange : Download the Adobe Extension Manager
    My Computer windows xp 32bit
    My Photosop version cs6
    My Dreamweaver version cs6
    I installed photoshop here : C:\Program Files\Adobe\Adobe Dreamweaver CS6
    and my XManConfigfile
    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration>
        <VariableForExMan>
            <Data key="$sharedextensionfolder">$shareddatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration/Extensions</Data>
            <Data key="$dreamweaver">$installfolder</Data>
            <Data key="$dreamweaver/Configuration">$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE/Configuration</Data>
            <Data key="$UserBinfolder">$userdatafolder/Adobe/Dreamweaver CS6/$LOCALE</Data>
            <Data key="NeedOperationNotification">true</Data>
            <Data key="QuitScript">dw.quitApplication()</Data>
            <Data key="SupportedInSuite">CS6</Data>
            <Data key="HostNameForCSXS">DRWV</Data>
            <Data key="ProductVersion">12.0</Data>
            <Data key="Bit">32</Data>
    <Data key="DefaultLocale">en_US</Data>
    </VariableForExMan> 
    </Configuration>
    Extension manager installed here : C:\Program Files\Adobe\Adobe Extension Manager CS6
    Photoshop Installed here: C:\Program Files\Adobe\Adobe Photoshop CS6
    and my XManConfigfile
    <?xml version="1.0" encoding="UTF-8"?>
    <Configuration>
        <VariableForExMan>
            <Data key="EmStorePath">$SharedRibsDataFolder/Adobe/Extension Manager</Data>
            <Data key="$photoshopappfolder">$installfolder</Data>
            <Data key="$pluginsfolder">$photoshopappfolder/Plug-Ins</Data>
            <Data key="$presetsfolder">$photoshopappfolder/Presets</Data>
            <Data key="$platform">Win</Data>
            <Data key="$actions">$presetsfolder/Actions</Data>
            <Data key="$blackandwhite">$presetsfolder/Black and White</Data>
            <Data key="$brushes">$presetsfolder/Brushes</Data>
            <Data key="$channelmixer">$presetsfolder/Channel Mixer</Data>
            <Data key="$colorbooks">$presetsfolder/Color Books</Data>
            <Data key="$colorrange">$presetsfolder/Color Range</Data>
            <Data key="$colorswatches">$presetsfolder/Color Swatches</Data>
            <Data key="$contours">$presetsfolder/Contours</Data>
            <Data key="$curves">$presetsfolder/Curves</Data>
            <Data key="$customshapes">$presetsfolder/Custom Shapes</Data>
            <Data key="$duotones">$presetsfolder/Duotones</Data>
            <Data key="$exposure">$presetsfolder/Exposure</Data>
            <Data key="$gradients">$presetsfolder/Gradients</Data>
            <Data key="$huesat">$presetsfolder/Hue Sat</Data>
            <Data key="$imagestatistics">$presetsfolder/Image Statistics</Data>
            <Data key="$keyboardshortcuts">$presetsfolder/Keyboard Shortcuts</Data>
            <Data key="$layouts">$presetsfolder/Layouts</Data>
            <Data key="$lenscorrection">$presetsfolder/Lens Correction</Data>
            <Data key="$levels">$presetsfolder/Levels</Data>
            <Data key="$liquifymeshes">$presetsfolder/Liquify Meshes</Data>
            <Data key="$menucustomization">$presetsfolder/Menu Customization</Data>
            <Data key="$optimizedcolors">$presetsfolder/Optimized Colors</Data>
            <Data key="$optimizedoutputSettings">$presetsfolder/Optimized Output Settings</Data>
            <Data key="$optimizedsettings">$presetsfolder/Optimized Settings</Data>
            <Data key="$patterns">$presetsfolder/Patterns</Data>
            <Data key="$reducenoise">$presetsfolder/Reduce Noise</Data>
            <Data key="$replacecolor">$presetsfolder/Replace Color</Data>
            <Data key="$scripts">$presetsfolder/Scripts</Data>
            <Data key="$selectivecolor">$presetsfolder/Selective Color</Data>
            <Data key="$shadowhighlight">$presetsfolder/Shadow Highlight</Data>
            <Data key="$smartsharpen">$presetsfolder/Smart Sharpen</Data>
            <Data key="$styles">$presetsfolder/Styles</Data>
            <Data key="$textures">$presetsfolder/Textures</Data>
            <Data key="$tools">$presetsfolder/Tools</Data>
            <Data key="$variations">$presetsfolder/Variations</Data>
            <Data key="$webphotogallery">$presetsfolder/Web Photo Gallery</Data>
            <Data key="$workspaces">$presetsfolder/Workspaces</Data>
            <Data key="$zoomify">$presetsfolder/Zoomify</Data>
         <Data key="$hueandsaturation">$presetsfolder/Hue and Saturation</Data>
         <Data key="$lights">$presetsfolder/Lights</Data>
         <Data key="$materials">$presetsfolder/Materials</Data>
         <Data key="$meshes">$presetsfolder/Meshes</Data>
         <Data key="$rendersettings">$presetsfolder/Render Settings</Data>
         <Data key="$volumes">$presetsfolder/Volumes</Data>
         <Data key="$widgets">$presetsfolder/Widgets</Data>
            <Data key="$localesfolder">$photoshopappfolder/Locales</Data>
            <Data key="$additionalplugins">$localesfolder/$LOCALE/Additional Plug-ins</Data>
            <Data key="$additionalpresets">$localesfolder/$LOCALE/Additional Presets</Data>
            <Data key="$localeskeyboardshortcuts">$localesfolder/$LOCALE/Additional Presets/$platform/Keyboard Shortcuts</Data>
            <Data key="$localesmenucustomization">$localesfolder/$LOCALE/Additional Presets/$platform/Menu Customization</Data>
            <Data key="$localesworkspaces">$localesfolder/$LOCALE/Additional Presets/$platform/Workspaces</Data>
            <Data key="$automate">$pluginsfolder/Automate</Data>
            <Data key="$digimarc">$pluginsfolder/Digimarc</Data>
            <Data key="$displacementmaps">$pluginsfolder/Displacement Maps</Data>
            <Data key="$effects">$pluginsfolder/Effects</Data>
            <Data key="$extensions">$pluginsfolder/Extensions</Data>
            <Data key="$fileformats">$pluginsfolder/File Formats</Data>
            <Data key="$filters">$pluginsfolder/Filters</Data>
            <Data key="$imagestacks">$pluginsfolder/Image Stacks</Data>
            <Data key="$importexport">$pluginsfolder/Import-Export</Data>
            <Data key="$measurements">$pluginsfolder/Measurements</Data>
            <Data key="$panels">$pluginsfolder/Panels</Data>
            <Data key="$parser">$pluginsfolder/Parser</Data>
         <Data key="$3dengines">$pluginsfolder/3D Engines</Data>
            <Data key="$lightingstyles">$pluginsfolder/Filters/Lighting Styles</Data>
            <Data key="$matlab">$photoshopappfolder/MATLAB</Data>
            <Data key="UserExtensionFolder">$photoshopappfolder</Data>
            <Data key="$photoshop">$UserDataFolder/Adobe/Adobe Photoshop CS6/Configuration</Data>
            <Data key="DisplayName">Photoshop CS6 32</Data>
            <Data key="ProductName">Photoshop32</Data>
            <Data key="FamilyName">Photoshop</Data>
            <Data key="ProductVersion">13.0</Data>
            <Data key="IconPath">Configuration/PS_exman_24px.png</Data>
            <Data key="SupportedInSuite">CS6</Data>
            <Data key="HostNameForCSXS">PHSP</Data>
            <Data key="Bit">32</Data>
        </VariableForExMan> 
    </Configuration>
                                                                        Please someone help me i cant install any photoshop extension because of this issue,,,

    Waiting for your reply ...thanks
    Here is the results
    I installed photoshopcs6 illustrator cs6 dreamweaver cs6 illustrator cs6 in the system , But nothing seems
    Result: BridgeTalk Diagnostics
      Info:
      Name = estoolkit-3.8
      Status = PUMPING
      Path
      Version = 2.0
      Build = ES 4.2.12
      Next serial number = 40
      Logging: = OFF
      Now = 15:55:49
      Messages:
      Message Version = 2.05
      Authentication = ON
      Digest = ON
      Thread: estoolkit-3.8#thread
      Avg. pump interval = 55ms
      Last pump = 62ms ago
      Ping: 7
      ECHO_REQUEST: ECHO_RESPONSE
      Timeout = undefined
      Handler = undefined
      STATUS: PUMPING
      Timeout = undefined
      Handler = undefined
      MAIN: MAIN
      Timeout = undefined
      Handler = installed
      LAUNCHED: LAUNCHED
      Timeout = undefined
      Handler = installed
      DIAGNOSTICS: DIAGNOSTICS
      Timeout = undefined
      Handler = installed
      INFO: INFO
      Timeout = undefined
      Handler = installed
      SETUPTIME: thread=0ms, left=16ms
      Timeout = undefined
      Handler = undefined
      Instances: 3
      estoolkit-3.8#dbg:
      msg[15:55:49]: 00000035
      @BT>Version = 2.05
      Target = estoolkit-3.8#dbg
      Sender = estoolkit-3.8#dbg
      Sender-ID = localhost:win3788
      Timeout = 15:55:50
      Type = Ignore
      Response-Request = Timeout
      Headers = (no headers)
      Timestamp = 15:55:49
      Serial-Number = 35
      Received = undefined
      Result = undefined
      Error = undefined
      Body = (empty)
      Incoming: 1
      Outgoing: 0
      Handler: 9
      ExtendScript = for all messages
      Error = for only msg #25
      Error = for only msg #27
      Error = for only msg #31
      Result = for only msg #35
      Error = for only msg #35
      Timeout = for only msg #35
      Result = for only msg #37
      Error = for only msg #37
      estoolkit-3.8#estk:
      msg[15:55:49]: 00000037
      @BT>Version = 2.05
      Target = estoolkit-3.8#estk
      Sender = estoolkit-3.8#dbg
      Sender-ID = localhost:win3788
      Timeout = 16:05:49
      Type = Debug
      Response-Request = Result Error
      Headers = (no headers)
      Timestamp = 15:55:49
      Serial-Number = 37
      Received = undefined
      Result = undefined
      Error = undefined
      Body: 107 bytes
      Text = <get-properties engine="main" object="$.global" exclude="undefined,builtin,prototype" all="true" max="20"/>
      Incoming: 1
      Outgoing: 0
      Handler: 1
      ExtendScript = for all messages
      estoolkit-3.8: (main)
      Incoming: 0
      Outgoing: 0
      Handler: 1
      ExtendScript = for all messages
      Targets: 1
      Connector = PCD
      Installed: 0
      Running: 0
      exman-6.0:
      Path = C:\Program Files\Adobe\Adobe Extension Manager CS6\Adobe Extension Manager CS6.exe
      Display Name = Adobe Extension Manager CS6
      MsgAuthentication = ON
      MsgDigest = ON
      ESTK = OFF
      BundleID = com.adobe.exman
      Status = (not running)
      ExeName = Adobe Extension Manager CS6.exe
      Installed: 1
      Running: 0
      Groups = (no groups defined)

  • Help needed please.. how do I remove my credit card from itunes? just discovered over $450 of charges when I looked at my email... Kids had no clue they were using our money and not their gift cards

    Help needed please.... I just discovered over $450 charges to my credit card from Itunes. The kids had no idea they were using our credit card and not their itunes gift cards and 4 year old just clicks on anything! I didnt save my credit card details so am a bit miffed at this... I cant find anywhere in itunes to remove it. Edit.. but not remove. Editing does not remove it.. HELP

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Accepted forms of payment  >  http://support.apple.com/kb/HT5552
    Changing Account Information  >  http://support.apple.com/kb/HT1918

  • Session variable not storing in custom trigger

    I have a custom trigger in which I want to store a session variable , so i can use the value in the insert transaction which happens after. But for some reason the session variable is not stored, resulting in the data not being stored.
    any clues would help.
    rudi
    here are the relevant code:
    //start Trigger_Custom_Subject_Mentor trigger
    function Trigger_Custom_Subject_Mentor(&$tNG) {
    //Check subject exists
    @session_start();
    $_SESSION['sb_id'] = $subject_id;
    //end Trigger_Custom_Subject_Mentor trigger
    // Make an insert transaction instance
    $ins_share = new tNG_insert($conn_smart);
    $tNGs->addTransaction($ins_share);
    // Register triggers
    $ins_share->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");
    $ins_share->registerTrigger("END", "Trigger_Redirect", 90);
    // Add columns
    $ins_share->setTable("`share`");
    $ins_share->addColumn("share_item", "NUMERIC_TYPE", "POST", "share_item");
    $ins_share->addColumn("share_subject", "NUMERIC_TYPE", "SESSION", "sb_id");
    $ins_share->setPrimaryKey("share_id", "NUMERIC_TYPE");
    // Register triggers
    $ins_share->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");
    $ins_share->registerTrigger("BEFORE", "Trigger_Custom_Subject_Mentor", 50);
    $ins_share->registerTrigger("END", "Trigger_Default_Redirect", 99, "share.php?item_id={share_item}");

    hi User,
    1) Pull a dummy column in Fx use the Session variable --->(Variable -->session )
    2) Next, goto narrative view in Narrative view section use @1
    3) If u want you can hide the column that we created in criteria section

Maybe you are looking for

  • Company Webmail Outlook Web Access

    When I'm on a biz trip I have to use Web Access for my webmail. I noticed that when I use Safari vs. when I use my PC lap top, the whole look is very different. PC allows me to have a preview page and on my ibook it constantly asks for my password. A

  • Pavilion Laptop dv6-1230 DVD CD RW drive dead.

    In lieu of shipping the computer to HP for warranty repair, Is it possible to get a warranty replacement from HP and swap it out myself.  It would certainly be less costly to HP to just send me a new drive. I'm have tech skills, but no experience wit

  • Vendor-ejb-jar.xml to orion-ejb-jar.xml, finder methods

    Hello I want to convert a inprise based EJB 1.1 application from inprise to OC4J. The inprise based finder methods are quite different from the syntax of orion-ejb-jar.xml, regarding the finder methods. Does anyone know if this can be done more easil

  • Regarding session handling in BSP

    hi all,     we have integrated our BSP application to EP 5.o, we have used 'existbspapplication'(used buffered page) function in our default page to handle the sessions.    and its working fine, but now we have to integrate it to the  EP 6.0 and we f

  • Working with multiple channels

    Hello I am writnig a vi in which I acquire data from a force torque tranducer who has 6 channels (ai0,ai1,ai2,ai3,ai4,ai5 for Fx,Fy,Fz,Tx,Ty,Tz respectively) what I see in the text file which I create is a matrix with 5000 rows (I took 500 samples) a