Dynamic Action help please

Good day
I am a new user to SAP (roughly 6 weeks), focussing on the HR side. I have been asked to attempt to compile the code for the following requirement:
Capture IT9007 (Service History) for new employees, or those who have a change in Position The fields required are Start Date; To Date; Employee Type; Status; Workplace; Grade; Position.
Please help me understand how to go about gathering the data. Explanation of the syntax too would be appreciated too.
Thanks for the help
P.s. I have put together the following code, but my colleague has just informed me it does nothing...
IType     STy.          Field Name     FC     No.     S     Variable function part
0                    6          P     SY-TCODE='PA40'
0                    6          P     PSPAR-BUKRS='5005'
0               MASSN               P     P0000-MASSN='Z1'/X
0               MASSN               P     P0000-MASSN='Z2'/X
0               MASSN               P     P0000-MASSN='ZA'/X
                    0          I     COP,P0001-PLANS
                              W     P9007-PLANS=P0001-PLANS
0               MASSN               P     P0000-MASSN='12'/X
0               MASSN               P     P0000-MASSN='Z9'/X
0               MASSN               P     P0000-MASSN='ZAZ5'
                    0          I     COP,P0000-BEGDA
                              W     P9007-BEGDA=P0000-BEGDA
                    0          I     COP,P0000-ENDDA
                              W     P9007-ENDDA=P0000ENDDA
                    0          I     COP,PSPAR-PERSG
                              W     P9007-EMPLOYEE_TYPE=PSPAR-PERSG
                                   EMPLOYEE STATUS
                    0          I     COP,P0001-WERKS
                              W     P9007-WORKPLACE=P0001-WERKS
                    0          I     COP,P0001-PERSK
                              W     P9007-GRADE=P0001-PERSK
                    0          I     COP,P0001-PLANS
                              W     P9007-PLANS=P0001-PLANS

Hi KNaidoo,
Welcome to swim the SAP ocean:).
Dynamic actions are actions that is triggered during infotype maintainance.
lets say you enter some details in infotypes and save it (PAI ) ,it has to populate an email or populated another inoftype,its intended for this purpose.
There are standard infotypes and customer infotypes(9000-9999).If you see in your case it IT9007(customer infotype)
http://www.hrexpertonline.com/downloads/Rehan%20Zaidi%20Online%20Portion.doc
tcode pa30 lets say you are opening IT0001  for one employee and when you go to view the infotype details.click system->under SAP data you will find MP000100(MPXXXX) its module pool program .when you double click on that will take you to abap editor.every module pool program of the infotype will have a standard program MPPERS00(standard include) and it wil have the routine that checks if there is a dynamic action maintained for that infotype be refering T588Z.
Rehan zaidi power of dymamic action is an execllent one for understanding .please download the doc from the link shared.
No Worries
KG

Similar Messages

  • Dynamic Action-help needed

    Hi ,
    My requirement is in dynamic Action I need to delimit all records in a Subtype of an Infotype and create New record for these records with BEGDA as ENDDA + 1 of the delimited records.
    Iam able to delimit all records in the Subtype but , Iam not able to create new records.
    My code for delimiting is as given below, in T588Z,
    9901 2 06 801 P P9901-SUBTY='2'
    9901 2 06 802 P PSYST-IOPER='MOD'
    9901 2 06 803 P P9901-STATS='X'
    9901 2 06 804 P P9901-PREAS='91'
    9901 2 06 805 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 2 06 806 W P9901-ENDDA=RP50D-ZZDATE3
    9901 2 06 807 I MOD,9901,3
    9901 3 06 808 P SY-UCOMM='UPD'
    9901 3 06 809 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 3 06 810 W P9901-ENDDA=RP50D-ZZDATE3
    The above code is working fine.
    My code for creating new record is as given below, even though the control is oing to the subroutine, INS statement is not working, and hence new record is not getting created.
    9901 3 06 811 P SY-UCOMM='UPD'
    9901 3 06 812 P PSAVE-ENDDA<>P9901-ENDDA
    9901 3 06 813 P P9901-STATS<>'X'
    9901 3 06 814 I INS,9901,3
    9901 3 06 815 F BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901 3 06 816 W P9901-BEGDA=RP50D-ZZDATE3
    9901 3 06 817 W P9901-ENDDA='99991231'
    Kindly help me on this.
    Thanks in Advance

    hi,
    thankyou for all ur valuable replies.
    Time constraint for this custom infotype is 2.
    It is not allowing to create a new subtype record if 1 exists.
    Here scenerio is
    Each Subtype ,ie, Subtp 2 ad 3 has got 4 records each with distinct OBJPS field.
    when STATS field of subtype 2 is changed for any 1 record in Subtype 2, corresponding record in Subtype 3 should get delimited .
    And, rest of the records of Subtype 3 should get created again with new start date.
    The code I have written for this is ,
    9901     2          06     800           *BEG*****DEATH OF WIDOW*****************
    9901     2          06     801     P     P9901-SUBTY='2'
    9901     2          06     802     P     PSYST-IOPER='MOD'
    9901     2          06     803     P     P9901-STATS='X'
    9901     2          06     804     F     DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901     2          06     805     W     P9901-ENDDA=RP50D-ZZDATE3
    9901     2          06     806     *     ****PSAVE-ENDDA<>P9901-ENDDA
    9901     2          06     807     F     LOCK_REC3(ZHSRAS_T588Z_0015)
    9901     2          06     808     I     <b>MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     812     *     *BEGCREATE NEW REC FOR SURVIVING WIDOWS******
    9901     2          06     813     *     *
    9901     2          06     814     P     P9901-STATS<>'X'
    9901     2          06     815     F     BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901     2          06     816     W     P9901-BEGDA=RP50D-ZZDATE3
    9901     2          06     817     W     P9901-ENDDA='99991231'
    9901     2          06     818     I     <b>COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     819     *     *ENDCREATE NEW REC FOR SURVIVING WIDOWS*****
    9901     2          06     830     *     ***END*****DEATH OF WIDOW*****************
    Control is going to all routines, but
    MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)  and
    COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA) is not working.
    Message was edited by: Shahana Shahul
    Message was edited by: Shahana Shahul

  • HR - Dynamic Actions help required

    Hi,
    We have a requirement like this:
    Each Org unit is attached to a Work Address and the same is stored in Infotype 1028.
    Whenever hiring action takes place the dynamic action should read the Infotype 1028 for the Org unit to which the employee is assigned and fetch the Work address details.
    These details should be stored in Infotype 0006 under Work Address subtype.
    Request your help as this is a very urgent requirement for us.
    Title edited by: Alvaro Tejada Galindo on Jun 12, 2008 7:05 PM

    In the dynamic actions, you can specify the name of a subroutine of a program.
    Create a subroutine, and write code inside that

  • Dynamic Insert Help Please

    quote:
    <cfoutput query="stand">
    <tr bgcolor="#IIf(CurrentRow Mod 2, DE('ffffff'),
    DE('cccccc'))#">
    <td>
    <select name="score_identifierscore"
    id="score_identifierscore">
    <option value="0" selected>0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    </select>
    <input name="score_identifier" type="hidden"
    id="score_identifier" value="#stand.ident_name#">
    <input name="score_teacherid" type="hidden"
    id="score_teacherid" value="#session.pstid#">
    <input name="score_studentid" type="hidden"
    id="score_studentid" value="#url.stid#">
    <input name="score_vid" type="hidden" id="score_vid"
    value="#url.vid#">
    <input name="score_staid" type="hidden" id="score_staid"
    value="#url.staid#">
    <input name="score_studentname" type="hidden"
    value="#studentname.first_name# #studentname.last_name#">
    </td>
    <td><div
    align="center">#stand.ident_name#</div></td>
    <td> #stand.ident_description#</td>
    </tr>
    </cfoutput>
    Start off by saying I work for a school corp, so my knowledge
    is limited to what I've taught myself and any help will be
    appreciated.
    Alright, here's what I have. I'm dynamically creating a list
    of standards and for each standard I want to submit a score chosen
    by the teacher and the identifier along with some other
    information. My problem is that on the insert I can't figure out
    how to match score with identifier. I can't possibly create a field
    in the table for every identifier, so I need to take the list and
    insert it into another table with score_identifer and
    score_identifierscore and so on....the above way is not workign for
    me.
    How can I get this accomplished, I can usually work off of
    examples, so please examples or any help please? If you have a
    better way, I'm up for it, because this way isn't working.
    Thanks in advance...

    quote:
    Originally posted by:
    AlwaysWannaLearn
    What does the INSERT statement look like?
    Why can't you create a table with columns names as: PK,
    score_identifierscore, score_identifier, score_teacherid,
    score_studentid, score_vid, score_staid, score_studentname this way
    you can also map any of these fields against other tables to create
    a more robust query result set?
    Almost exactly the way I have it setup. Small snippet of the
    dynamically generate html code that the user inputs. The problem is
    in my insert statement:
    <tr bgcolor="ffffff">
    <td>
    <select name="score_identifierscore"
    id="score_identifierscore">
    <option value="0" selected>0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    </select>
    <input name="score_identifier" type="hidden"
    id="score_identifier" value="F1.17.1 ">
    </td>
    <td><div align="center">F1.17.1
    </div></td>
    <td> Estimate and secure necessary supplies
    </td>
    </tr>
    <tr bgcolor="cccccc">
    <td>
    <select name="score_identifierscore"
    id="score_identifierscore">
    <option value="0" selected>0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    </select>
    <input name="score_identifier" type="hidden"
    id="score_identifier" value="F1.17.2">
    </td>
    <td><div align="center">F1.17.2
    </div></td>
    <td> Determine plants, shrubs, and tree
    locations
    </td>
    </tr>
    <input name="score_teacherid" type="hidden"
    id="score_teacherid" value="#session.pstid#">
    <input name="score_studentid" type="hidden"
    id="score_studentid" value="#url.stid#">
    <input name="score_vid" type="hidden" id="score_vid"
    value="#url.vid#">
    <input name="score_staid" type="hidden" id="score_staid"
    value="#url.staid#">
    <input name="score_studentname" type="hidden"
    value="#studentname.first_name# #studentname.last_name#">
    Here's my insert statement, but now that I've look at it,
    that won't match the identifier with the score, so it's crap. Any
    help is appreciated. Thanks
    <cfloop index="I" list="#form.score_identifier#"
    delimiters=",">
    <cfquery datasource="whatever">
    INSERT INTO voc_scores
    (score_studentid, score_vid, score_staid, score_identifier,
    score_teacherid, score_studentname,score_identifierscore)
    VALUES('#FORM.score_studentid#','#FORM.score_vid#','#FORM.score_staid#','#I#','#FORM.score _teacherid#','#FORM.score_studentname#',
    '#FORM.score_identifierscore#')
    </cfquery>
    </cfloop>

  • Action Help PLEASE

    Trying to run an action that I had purchased from a scrap site. It is a rose. Everything works fine until I get to the part where it creates a stem for the rose. It says The command smooth is not currently available, and the same thing for feather. Can someone please help me out? I am really new to photoshop. I have CS3 and I am running Vista SP1. Any help would be greatly appreciated.

    The cause of this error could be several things... difficult to diagnose in a typed Q/A format like this.
    While the previous "rerecord the failing commands" advise is sound, here's "plan B" if you run into problems or you're not ready to jump into that sort of thing.
    I have CS3. If you'll e-mail the .atn file to me (click my name above/left for e-mail addy), it will take about 5 min. to diagnose and get you going.
    I promise to purge the .atn at my end when done so there's no issue regarding you sending me a "purchased" .atn I did not pay for. I don't do scrap booking. :)

  • CS5 extended Export or Save an ACTION Help Please

    I have created a couple of actions that a buddy of mine wants and I can find no way to export or save the action off so that I can email it to him. Can someone please tell me how to do this and is it even possible.
    Windows 7 64bit on my computer Adobe CS5 extended.
    Mac version on his computer Adobe CS5 extended
    Surely this should be as simplae as can be ...
    Thanks for the help.

    You need to highlight the action set not the action only action sets can ce saved if you highlight an action save action will not be an option it will be grayed out. I know you wrote you highlited the set make sure that is what you have done.

  • Dynamic Report - HELP Please

    Hello,
    I store a query to a table. That query is dynamic. It is created at runtime. I have another page that gets the query from the table. I need to use that query to generate a report. The problem is that some columns in the report are not summed and other columns are summed and I don't know which columns are summed or not summed until runtime. I am working with APEX 2.2. Any help would be greatly appreciated.
    Sharon

    Sharon,
    I am not sure I understand your question. Have a look in my demo application:
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    there are many examples you could use to solve your problem.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Need help in Dynamic Actions

    Hi Experts,
    I have a requirement to create Additional Payments for two wage types 591 and 691 for a particular Employee subgroup and for three personnel areas whenever a person is hired. I have written the code like this
    400           *BEK047.01 RECURRING PAYM 591 / 691
    401     P     PSPAR-MASSN='01'
    402     P     P0001-PERSK='AA'
    403     P     P0001-WERKS='037'
    404               P                    P0001-Werks='039'/X
    405               P                   P0001-WERKs='041'/X
    406     I     INS,0014/D
    407     W     P0014-LGART='0591'
    408     W     P0014-BETRG='109'
    409     W     P0014-ZANZL='1'
    410     W     P0014-ZEINZ='012'
    411     W     P0014-ZDATE=P0001-BEGDA
    412     W     P0014-BEGDA=P0001-BEGDA
    414     W     P0014-ENDDA=P0001-ENDDA
    Apparently above code doenst work . I removed the OR condition and write the code three times for diff personnel area and that works. So i wanted to know what is wrong in above code. Also when records are created they should be defaulted with the amount mentioned in the code i.e. 109 .....but somehow some other value is coming which i havent entered.
    Please help
    Regards,
    Navneet.

    Dear Navneet
               your dynamic action shows that you want to default the valued in the Recurring Payment and Deductions but not the Additional Payments. Usually the Indicator /X is used with the condition is endup with Logical OR.
    Try out the following values and test
    IT            FC     Num     Indi     Variable Function Part
    0001     04     101     P     T001P-MOLGA='40'
    0001     04     102     P     P0000-MASSN='01'
    0001     04     103     P     P0001-PERSK='AA'
    0001     04     104     P     P0001-WERKS='037'
    0001     04     105     P     P0001-WERKS='039'
    0001     04     106     P     P0001-WERKS='041'
    0001     04     107     I     INS,0014,,,(P0001-BEGDA),(P0001-ENDDA)/D
    0001     04     108     W     P0014-LGART='0591'
    0001     04     109     W     Q0014-BETRG='109'
    0001     04     110     W     P0014-ZDATE=P0001-BEGDA
    0001     04     111     W     Q0014-ZANZL='1'
    0001     04     112     W     Q0014-ZEITX='Months'
    If the above coding is not working, Tryout individually for every condition seperately starting from 3rd line and followed by I like followes.
    0001     04     101     P     T001P-MOLGA='40'
    0001     04     102     P     P0000-MASSN='01'
    0001     04     103     P     P0001-PERSK='AA'
    0001     04     107     I     INS,0014,,,(P0001-BEGDA),(P0001-ENDDA)/D
    0001     04     108     W     P0014-LGART='0591'
    0001     04     109     W     Q0014-BETRG='109'
    0001     04     110     W     P0014-ZDATE=P0001-BEGDA
    0001     04     111     W     Q0014-ZANZL='1'
    0001     04     112     W     Q0014-ZEITX='Months'

  • Tying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel.  Help

    am tTying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel. Can anyone help me?

    Hi,
    Here is a similar thread for your reference:
    There is no email program associated to perform the requested action. Please install an email program or, if one is already installed, create an association in the Default programs control panel
    http://social.technet.microsoft.com/Forums/en/w7itproappcompat/thread/036e3cf6-bff7-4ef2-bd0a-555cd2399ad4
    Hope this helps
    Vincent Wang
    TechNet Community Support

  • I just bought an iPhone 4s. Now the search iphone function is not working. When I swipe the screen to the left, the search box appears but when I type what I want to search for, there is no action. Please help.

    I just got an iphone 4s. Now the search iphone function is not working. When I swipe the start screen, the search box shows up. But when I type what I want to search, there is no action. Please help.

    Try this...
    You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... (But can take Longer...)
    Release the Buttons...
    Turn the Phone On...

  • Help using a dynamic action to update tabular form items (specifically radio button) based on collection

    Hi Everyone, I have posted this question in the past and made huge progress with Denes Kubicek's help:  https://apex.oracle.com/pls/apex/f?p=31517:294:115851992029365::::: based on my earlier question posted: https://forums.oracle.com/forums/thread.jspa?threadID=2537494
    I am struggling with one item in my tabular form.  It is a radio button.  The choices all appear properly, but the value is not saved in the collection (and hence, not saved in the table).  All other items in the tabular form save properly.
    here is what I have for the query.   It is item c024 (which maps to ;'f03'), which is defined as a radio LOV based on an existing LOV.
    Currently I have:
    2 page items:
    P110_ID
    P110_VALUE
    Dynamic action called CHANGE COLUMN:
    event: CHANGE
    selection type: jQUERY Selector
    jQuery:
    jQuery Select = input[name='f03'],select[name'f08'],select[name='f09'],input[name='f10'],input[name='f11'],input[name='f12'],select[name='f40'],input[name='f21'],input[name='f22'],input[name='f23'],input[name='f50']
    event scope: Dynamic
    true action#1: set value P110_ID javascript expression this.triggeringElement.id
    true action#2: set value P110_VALUE javascript expression this.triggeringElement.value
    true action#3: execute pl/sql code
    declare
      v_member number;
      v_seq number;
    begin
      v_member := TO_NUMBER (SUBSTR (:p110_id, 2, 2));
      select ltrim(substr(:p110_ID,5,4),'0') into v_seq from dual;
      safis_collections.update_column(v_seq,
                                    v_member,
                                    :p110_value);
    true ation#4 refresh region :LANDINGS_COLLECTION
    the tabular form is based on the query:
    SELECT
    apex_item.text(1,seq_id,'','','id="f01_'||seq_id,'','') "DeleteRow",
    seq_id,
    seq_id display_seq_id,
    apex_item.text_from_LOV(c004,'SPECIES')||'-'||apex_item.text_from_LOV(c005,'GRADE')||'-'||apex_item.text_from_LOV(c006,'MARKETCODE')||'-'||apex_item.text_from_LOV_query(c007,'select unit_of_measure d, unit_of_measure r from species_qc') unit,
    apex_item.select_list_from_LOV(8,c008,'DISPOSITIONS','onchange="getAllDisposition('||seq_id||')"','YES','0','  -- Select Favorite --  ','f08_'||seq_id,'') Disposition,
    apex_item.select_list_from_LOV(9,c009,'GEARS','style="background-color:#FBEC5D; "onFocus="checkGearPreviousFocus('||seq_id||');"onchange="getAllGears('||seq_id||')"','YES','3333','-- Select Favorite --','f09_'||seq_id,'') Gear,
    apex_item.text(10,TO_NUMBER(c010),5,null, 'onchange="setTotal('||seq_id||')"','f10_'||seq_id,'') Quantity,
    apex_item.text(11,TO_NUMBER(c011),5,null,'onchange="getPriceBoundaries('||seq_id||')"','f11_'||seq_id,'') Price,
    apex_item.text(12, TO_NUMBER(c012),5,null, 'onchange="changePrice
    ('||seq_id||')" onKeyDown="selectDollarsFocus('||seq_id||',event);"','f12_'||seq_id,'') Dollars,
    decode(c013,'Y',apex_item.text(14, c014,30,null,'style="background-color:#FBEC5D;" onClick="onFocusAreaFished('||seq_id||');"','f14_'||seq_id,''),'N','N/A') Area_Fished,
    decode(c017,'Y',apex_item.text(18, c018,4,null,'style="background-color:#FBEC5D; "onBlur="setUnitQuantity('||seq_id||')"','f18_'||seq_id,''),'N','N/A') UNIT_QUANTITY,
    decode(c017,'Y',apex_item.text(19,'CN',3,null,'readOnly=readOnly;','f19_'||seq_id,''),'N','N/A') UNIT_COUNT,
    c024 hms_flag,
    decode(c050,'Y',apex_item.checkbox(21,'Y','id="f21_'||seq_id||'" style="background-color:#FBEC5D; " onClick="alterYes('||seq_id||');" onKeyPress="alterYes('||seq_id||');"',c021),'N','N/A') FinsAttached,
    decode(c050,'Y',apex_item.checkbox(22,'N','id="f22_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterNo('||seq_id||');" onKeyPress="alterNo('||seq_id||');"',c022),'N','N/A') FinsNotAttached,
    decode(c050,'Y',apex_item.checkbox(23,'U','id="f23_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterUnk('||seq_id||');" onKeyPress="alterUnk('||seq_id||');"',c023),'N','N/A') FinsUnknown,
    decode(c050,'Y',apex_item.textarea(28,c028,3,null,null,'f28_'||seq_id,''),'N','N/A') Explanation,
    decode(c024,'N',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'U',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'Y','N/A') Nature_Of_Sale,
    decode(c020,'Y',
    apex_item.select_list_from_LOV(40,c040,'HMS_AREA_CODE','style="background-color:#FBEC5D;"',null,null,null,'f40_'||seq_id,''),
    'N','N/A') HMS_AREA_CODE,
    c020,c050,
    decode(c020,'Y',
    apex_item.text(41,TO_NUMBER(c041),5,null,null,'f41_'||seq_id,''),
    'N','N/A') Sale_Price
    from apex_collections
    where collection_name = 'SPECIES_COLLECTION' order by seq_id
    I have noticed the following:
    when I change column C011 (price) the following values are set in the dynamic action:
    P110_ID = f11_1
    P110_VALUE = whatever I change the price to.
    when I change the column C024 (hms_flag), the following values are set:
    P110_ID = f03_0001
    P110_VALUE = whatever I change hms_flag to.
    the region is refreshed in my dynamic action, and the change for hms_flag does not hold.  I have tested the SQL query that generates the value for v_SEQ in the dynamic action.   In both a change to price and HMS_FLAG it appears valid
    select ltrim(substr(:p110_ID,5,4),'0') into v_seq from dual;
    if f11_1, v_seq:= 1
    if f03_0001, v_seq := 1
    thank you!

    solved.  sort of. 
    field c024 references f03.
    the Dynamic ACtion, step 4 calculates v_member by taking a substring of P110_ID...and in all other fields, the column and the field (fxx) are the same value....except for c024.
    I am not certain exactly how to resolve, but see the problem.

  • TS3989 Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

  • Tried to upgrade and after uninstalling and reinstalling several times, keep getting "procedure entry point could not be located in dynamic link library" followed by "iTunes was not installed properly"  Error 7.....Help, please??

    Tried to upgrade as instructed and after uninstalling and reinstalling (even back to the former iTunes which I was happy with)several times, keep getting message "Procedure entry point could not be located in dynamic link library"  followed by "iTunes was not installed properly"  "Error 7".    Help, please??

    Entry point errors can usually be fixed by deleting the offending dll, then repairing the component it is part of from the programs and features control panel. Unfortunately you neglected to include the detail of which dll is mentioned.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Need Help calling Dynamic Action from Link in Interactive Report

    Hello I have an Interactive Report. I would like to have a Dynamic Action called when the user selects a row (Clicks a Link).
    I am running Application Express 4.0.2.00.07 on Oracle 11gR1.
    Any help would be great.

    Hi VANJ,
    Sorry for the poorly written original post. I will be much more specific.
    I have a Interactive Report on page 40. That report has a column named X_UID that is a link back to page 40 and sets a text item named P40_X_UID in a Region we will call "Form X" with the value of the column. That page refresh also then calls a Automated Row Fetch process to fetch all the values needed for the rest of the page items in the "Form X" region. Also "Form X" region has a conditional display on to only display when P40_X_UID is not null.
    What I would like to do:
    When the user clicks on link in the IR for X_UID instead of the "Form X" region becoming visible I would like to become modal. I am trying to use a Plug-In named "ClariFit Simple Modal - Show". I have it working with a Dynamic Action when you click a Page Item. But I would like to to work when the link is clicked and the data populated.
    I hope that helps some.

  • Help with loading dynamic classes ..need help please

    i'm trying to design a program where by i can load dynamic classes
    the problem i'm getting is that only one class is loading.
    classes are loaded by their names,and index numbers of public methods from a linklist
    .When the program runs only the first class is ever loaded and only the methods of that class ..
    help please
    //class loader
    import java.lang.reflect.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class Test2 extends Thread
         public Class c;
         public Class Ray;
         public Class[] x;
         public static Object object = null;
         public Method[] theMethods;
         public static Method[] method,usemethod;
         public int methodcount;
         public static int MethodCt;     
         public static JList list;
    public Method[] startClass(String SetMethodName)
         try
              c = Class.forName(SetMethodName);
              object = c.newInstance();
              theMethods = c.getDeclaredMethods();
              // number of methods
              //methodcount = theMethods.length;
         catch (Exception e)
              e.printStackTrace();
    // return the array then invoke the particular method later
    return theMethods ;
    public void RunMethod(Method[] SomeMethod, int methodcount)
         try
              SomeMethod[methodcount].invoke( object,null );
         catch (Exception e)
              e.printStackTrace();
    // end class loader
    //main calling program
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing .*;
    import java.lang.reflect.*;
    public class JFMenu extends JFrame
         public static JMenu pluginMenu;
         public static JMenuBar bar;
         public static final Test2 w = new Test2();
    public static Method[] setmethod;
    private static ClassLinkList startRef = null;
    private static ClassLinkList linkRef3 = null;
    private static ClassLinkList startRef2 = null;
    private String ClassName,ShortCut;
    private int MethodNumber;
    private JMenuItem PluginItem;
         JFMenu()
              super (" JFluro ");     
              JMenu fileMenu = new JMenu("File");
              fileMenu.setMnemonic('F');
              JMenuItem exitItem = new JMenuItem("Exit");
              exitItem.setMnemonic('X');
              fileMenu.add(exitItem);
              exitItem.addActionListener
                   new ActionListener()
                        public void actionPerformed(ActionEvent event )
                             System.exit(0);
              JMenu pluginMenu = new JMenu("Plugins");
              pluginMenu.setMnemonic('P');
              startRef = new ClassLinkList ("Hello","Hello ",2,1926,"Painter");
              addToList("Foo","Foo ",0,1930,"Author");
              while (startRef.linkRef5 != null)
                   //pluginMenu.addSeparator();
                   ClassName = startRef.linkRef5.className;
                   ShortCut = startRef.linkRef5.shortcutName;
    MethodNumber = startRef.linkRef5.methodNumber;
    AddMenuItem(pluginMenu,ShortCut,ClassName,MethodNumber);
                   startRef.linkRef5 = startRef.linkRef5.next;
              // create menu bar and add JFMenu window to it
              JMenuBar bar = new JMenuBar();
              setJMenuBar(bar);
              bar.add(fileMenu);
              bar.add(pluginMenu);
              //attributes for JFMenu frame
              setSize(500,200);
              setVisible(true);
         }// end JFMenu constructor
         public void AddMenuItem(JMenu MainMenu, String shortcut,String className, final int methodCount )
              if (MainMenu==null)
                   return;
              //JMenuItem item;
              JMenuItem item = new JMenuItem(shortcut);
              MainMenu.add(item);
              setmethod = w.startClass(className);
              item.addActionListener
                   new ActionListener()
                        public void actionPerformed(ActionEvent event )
                             w.RunMethod(setmethod,methodCount);
              //item.addActionListener(ij);
         public JMenuItem AddMenuItem2(JMenu MainMenu, String shortcut)
              //if (MainMenu==null)
              //     return Main;
              //JMenuItem item;
              JMenuItem item = new JMenuItem(shortcut);
              MainMenu.add(item);
              //setmethod = w.startClass(className);
              //item.addActionListener(this);
                   new ActionListener()
                        public void actionPerformed(ActionEvent event )
                             w.RunMethod(setmethod,methodCount);
              //item.addActionListener(ij);
         return item;
         public void ReloadMenu(JMenuBar Bar, JMenu PluginMenu)
              if (Bar==null)
                   return;
              //     setJMenuBar(Bar);
              Bar.add(PluginMenu);
              //item.addActionListener(ij);
    public static void main (String args[])
              JFMenu menapp = new JFMenu();
    public static void addToList(String clname, String shcutname, int metnumber, int year2,
                                  String description) {
         // Create instance of class ClassLinkList
    ClassLinkList newRef = new ClassLinkList(clname,shcutname,metnumber,year2,
                                       description);
    // Add to linked list;
         startRef = startRef.addRecordToLinkedList(newRef);
    // end main calling program
    class Hello extends Thread
    public int getNum()
    System.out.println("I can be ");
    return 5;
    public void rayshowName()
    System.out.println("anything i want ");
    public void rayshowName3()
    System.out.println("to be ");
    class Foo extends Thread
    public int getNum()
    System.out.println("IMHOFF");
    return 5;
    public void rayshowName()
    System.out.println("raYMOND");
    // FAMOUS PERSONS LINKED LIST EXAMPLE
    // Frans Coenen
    // Saturday 15 January 2000
    // Depaertment of Computer Science, University of Liverpool
    class ClassLinkList {
    /* FIELDS */
    public String className;
    public String shortcutName;
    public int methodNumber;
    public int yearOfDeath;
    public String occupation;
    public ClassLinkList next = null;
    public ClassLinkList linkRef5 = this;
    public ClassLinkList startRef = null;
    /* CONSTRUCTORS */
    /* FamousPerson constructor */
    public ClassLinkList(String classname, String shortcutname, int methodnumber, int year2,
                                  String description) {
         className = classname;
         shortcutName = shortcutname;
         methodNumber = methodnumber;
         yearOfDeath = year2;
         occupation = description;
         next = null;
    /* METHODS */
    /* Output famous person linked list */
    public void outputClassLinkedList()
         //public ClassLinkList outputClassLinkedList() {
         ClassLinkList linkRef = this;
         // Loop through linked list till end outputting each record in turn
    while (linkRef != null)
         //System.out.println(linkRef5);
         System.out.println(linkRef.className + ", " + linkRef.shortcutName +
                   " (" + linkRef.methodNumber + "-" + linkRef.methodNumber +
                   "): " + linkRef.occupation);
         linkRef = linkRef.next;     
    //return linkRef;
    //public String ShowCasname()
    //return String ;     
    /* Add a new record to the linked list */
    public ClassLinkList addRecordToLinkedList(ClassLinkList newRef) {
         ClassLinkList tempRef, linkRef;
         // Test if new person is to be added to start of list if so return
    if (newRef.testRecord(this) ) {
         newRef.next = this;
         return(newRef);
         // Loop through remainder of linked list
         tempRef = this;
         linkRef = this.next;
         while (linkRef != null) {
         if (newRef.testRecord(linkRef)) {
         tempRef.next = newRef;
              newRef.next = linkRef;
              return(this);
         tempRef = linkRef;
         linkRef = linkRef.next;
    // Add to end
    tempRef.next = newRef;
         return(this);
    /* Delete a record from the linked list given the first and last name. Four
    posibilities:
    1) Record to be deleted is at front of list
    2) Record to be deleted is at end of list
    3) Record to be deleted is in middle of list
    4) Record not found. */
    public ClassLinkList deleteRecord(String lName, String fName) {
    ClassLinkList tempRef, linkRef;
    // Record at start of list
    if ((this.className == lName) & (this.shortcutName == fName))
         return(this.next);
         // Loop through linked list to discover if record is in middle of list.
         tempRef = this;
    linkRef = this.next;
    while (linkRef != null) {
         if ((linkRef.className == lName) & (linkRef.shortcutName == fName)) {
    tempRef.next = linkRef.next;
    return(this);
    tempRef = linkRef;
    linkRef = linkRef.next;
    // Record at end of list, or not found
    if ((linkRef.className == lName) & (linkRef.shortcutName == fName))
                        linkRef = null;
         else System.out.println("Record: " + lName + " " + fName + " not found!");
         return(this);
    /* TEST METHODS */
    /* Test whether new record comes before existing record or not. If so return
    true, false otherwise. */
    private boolean testRecord(ClassLinkList existingRef) {
         int testResult = className.compareTo(existingRef.className);
         if (testResult < 0) return(true);
         else {
         if ((testResult == 0) & (shortcutName.compareTo(existingRef.shortcutName) < 0 ))
                             return(true);
         // Return false
         return(false);
         public void addToList(String clname, String shcutname, int metnumber, int year2,
                                  String description)
         // Create instance of class Famous Person
    ClassLinkList newRef = new ClassLinkList(clname,shcutname,metnumber,year2,
                                       description);
    // Add to linked list;
         startRef = startRef.addRecordToLinkedList(newRef);

    I have a similar problem. I am writing a program to read the class names from database and instantiate several classes which extends from ServiceThread (an abstract class extending from Thread).
    rs = pStmt.executeQuery();
    while(rs.next()) {
    String threadclassname = rs.getString("classname").trim();
    try{
    ServiceThread threadinstance = (ServiceThread)Class.forName(threadclassname).newInstance();
    }catch ...
    So far, only the first class is ever instantiated and runs fine. But subsequent classes do not even get pass the "... ... Class.forName(...).newInstance();" line.
    Funny thing is that there are also no exceptions. The JVM just seem to hang there.

Maybe you are looking for

  • Messages In Inbox and sent mailbox have disappeared

    I have been using my mac e-mail for a considerable time with no problems however in the last month, I have lost virtually all of my messages in both my inbox and sent mailbox> I have checked my preferences and the deletion of e-mails is set to 'never

  • Quicktime to YouTube = No Audio

    Hello- I've uploaded a QT movie to YouTube. Now there is no Audio on the YouTube version. Tried uploading a couple times with no luck. Format: MPEG-4 Video, 852 x 480, Millions AAC, 2.0 (Mono Mono), 44.100 kHz AAC, Stereo (L R), 44.100 kHz Any though

  • Having a "carbon" copy of my old mac to new

    Hey all, I have a question (sorry if it has been answered before but because it is kind of urgent i havent been able to search a lot). I am going to buy a new macbook pro but i would like to have the exact same utilities, applications and app licence

  • Query regarding SPAU & SPDD

    Hi All, Is there a possible way to download the SPAU & SPDD list to local system. I tried to search the forum but didn't find anything relevant. Thanks in advance, Amit

  • I can only purchase 3 times per day,how can i turn off this sort of protection?

    I can only purchase 3 times per day,how can i turn off this sort of protection?