Standard Dynamic action set up for country USA

Hi All,
Could anybody tell me where can search standard dynamic action set up for country USA.
Regards
Sirisha

Go to table V_T588Z and then enter the infotype for which you are checking. Then click on the Selection option from the menu, and then By Contents. you will get a small popup of the table fields. Scroll to the end and select "Var. function part" and then click on the green tick.  Then in the Field contents enter - T001P-MOLGA='10' then select choose.
You will then get all the D'actions for the US. Make a note of the numbers under the column FC & No. Then go back and then check the rows as per the noted number combinations. Thats all you have all the D'actions maintained for US.

Similar Messages

  • Dynamic Action on IT0002 for France-Molga 06

    Hello,
    I would like to set up a dynamic action on IT0002 for France (Molga 06) - field State - 'GBDEP'.
    The field 'GBDEP' is a mandatory field for France, but the business is not maintaining the record of the Birth State of an employees.
    So I would like to set up a dynamic action to create a default value for this field. The default value created is 999 and it will filled while creating IT0002 record for France during Hiring Action.
    I am not quite well versed with dynamic action, so i would appreciate a help in how to set up this dynamic action.
    I can share if more information is needed.
    Thanks in advance.

    Try this dynamic action:
    INFTY     SUBTY     FNAME     OPERA     SEQNO     KENNZ     VINFO
    0000               06     10     *     *FRANCE DEFAULT GBDEP
    0000               06     12     P     PSPAR-TCLAS='A'
    0000               06     14     P     T001P-MOLGA='06'
    0000               06     16     P     PSPAR-MASSN='XX'
    0000               06     18     I     INS,0002,,,(P0000-BEGDA),(P0000-ENDDA)
    0000               06     20     W     P0002-GBDEP='999'
    Here, XX is your hiring action code. Also, make sure you have a 999 entry in V_T005S for FR.
    Hope this helps.
    Donnie

  • Dynamic Action Set Value - PLSQL Error - cannot contain an expression

    I am trying to use below in a Dynamic Action to Set Value with PL/SQL Function. The dynamic action does not update the item appropriately. I tried to run the below directly in SQL Workshop but received the error "PLS-00372: In a procedure, RETURN statement cannot contain an expression". How can I get below to return the value needed?
    DECLARE
    rqstdaloe number;
    rqstdeloe number;
    devpercent number;
    rqsttarget date;
    timeleft number;
    PSPTime number;
    DevTime number;
    DevPer number;
    BEGIN
    SELECT SUM("TRACK_TIME_SPENT") INTO rqstdaloe
    FROM "TIME_TRACKER"
    LEFT JOIN "TBL_R66_TASK_TYPE" ON "TASK_TYPE_ID" = "TRACK_TYPE"
    WHERE "TRACK_REQUEST_ID" = :P2_REQUEST_ID AND "TASK_TYPE_TYPE" = 'DEV';
    rqstdeloe := :P2_REQUEST_ELOE;
    SELECT SUM(TT1."TRACK_TIME_SPENT") INTO DevTime
    FROM "TIME_TRACKER" TT1
    LEFT JOIN "TBL_R66_TASK_TYPE" TT2 ON TT1."TRACK_TYPE" = TT2."TASK_TYPE_ID"
    WHERE TT1."TRACK_USER" = :P2_PSP_ASSIGNED_PRIMARY AND TT2."TASK_TYPE_TYPE" = 'DEV';
    SELECT SUM(TT1."TRACK_TIME_SPENT") INTO PSPTime
    FROM "TIME_TRACKER" TT1
    WHERE TT1."TRACK_USER" = :P2_PSP_ASSIGNED_PRIMARY;
    DevPer := ROUND(DevTime/PSPTime,2)*8;
    timeleft := TRUNC(((NVL(rqstdeloe,0) - NVL(rqstdaloe,0))/DevPer)+.99999,0);
    rqsttarget := to_date(sysdate,'mm/dd/yyyy') + timeleft;
    RETURN rqsttarget;
    END;

    Hi Dave,
    just a quick hint. If you just want to have the time part of a date/sysdate, you can use TRUNC to do that. So your existing code
    rqsttarget := to_date(sysdate,'mm/dd/yyyy') + timeleft;could be changed to
    rqsttarget := trunc(sysdate) + timeleft;If you perform a TO_DATE on a date variable, the PL/SQL engine will first convert that date variable with an implicit type conversion to a VARCHAR2, because the TO_DATE interface only supports VARCHAR2's and NUMBER's.
    But implicit type conversions are always dangerous, because if your default date format mask isn't mm/dd/yyyy your TO_DATE will fail.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Dynamic UI set vAlign for Caption UI

    Hello everybody,
    I create dynamic UI-Elements.
    I have a GroupUI which nests a transparentContainer.
    The layout of the Group is GridLayout with 3 columns.
    For each cell of GroupUI I nest a captionUI. I want to set the vAlign-property to the caption.
    How can I achieve this?
    There is NO method:  caption.setValign!!!
    Thanks a lot, regards Mario

    Mario,
    Try this:
    IWDCaption caption
      = (IWDCaption)view.createElement(IWDCaption.class, null);
    IWDGridData cell
      = (IWDGridData)caption.createLayoutData(IWDGridData.class);
    cell.setVAlign(WDCellVAlign.TOP);
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • How to make dynamic actions using Set Value work in all browsers?

    I’m having a cross-browser incompatibility issue with dynamic actions using Set Value.  The dynamic action works like a charm on Chrome but has no effect on either IE or Firefox.  The code in oracle.apex.com and here are the credentials:
    Workspace: DDBA
    Username: [email protected]
    Password: redtruck12
    These code is on page 3 and here are the details:
    There are two report lists (Standard and Special) and some of the reports require additional information supplied in either select lists or text boxes.
    If the user selects a Standard report requiring a select list/text box, then the dynamic action sets the value of Special Reports to NULL (and vice-versa).
    The dynamic action is to prevent a simultaneous selection of both the Standard and Special reports.  To see how it works on Chrome, do this:
    Run Page 3
    Select the ‘Report for Search Criteria’ option from the Standard Report list.  A ‘Search Criteria’ text box appears
    Select the ‘Report by Release’ option from the Special Reports list.  A select list appears and the ‘Search Criteria’ text box disappears.
    If you do the same things on IE or Firefox, the text box does not disappear. 

    Hi,
    Things are going wrong with setting the item values to NULL. If you check your session state, you'll see that in chrome your items values indeed will be set to null, but in firefox they won't.
    Also I've noticed that you don't reset the other input fields, so their values persist in the session state. Since you submit your page every time you change one of the report select lists, this might lead to unexpected behaviour. Lastly, I've noticed you use a sql exists expression to manage the display/hide of your page items. A condition of type "Value of  expression 1 = expression 2" causes less overhead as you don't need to switch to the db sql engine for every item to validate.
    I'd suggest you rethink your specs and try to create:
    - One dynamic action (since a value of standard select excludes the value of special select, and vice versa)
    - Set the values for hidden items to null, also in session state
    - Use a refresh of region as extra event in your dynamic action, instead of submitting your page for every change.
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • Can we create a dynamic action for Training and Event Management???

    Hi All
    i need to configure automatic email generation for an employee when he gets booked for a training program in the training and event management module. can we use a dynamic action for it? and how to configure it?? I also guess that i have to use the Feature MAILS for it. but i am not sure abt it and also not sure how to configure it. I will really appreciate if someone can provide me with a step to step configuration for the same. Its urgently sought.
    Thanks and Regards

    Notifications in T&E are done through Workflow.Dynamic Actions are only for PA Infotypes.
    ~Suresh

  • Dynamic action for IT0015 & IT0014

    Hello All,
    I want to create a dynamic action for the following scenario:
    Whenever employee is moved form Payroll area 99 to any other payroll area then IT0015 & IT0014 will be created with the date as effective date (not system current date).
    I.e if emp is hired on 01.02.2008 & if he is moved form payroll area 99 to any other payroll area then IT0015 & 0014 will get created with effective date i. e 01.02.2008 & not current date.
    Please help me out for same. I am new in this filed of dynamic actions.
    Valuable points are assured...
    Regds,
    Nithi

    Hi Nalla & sikander,
    I have created the dynamic action as below for UK;
    ****CREATE IT14&15 WHEN PAY AREA CHANGE TO 99**
    0001 02 001 P  T001P-MOLGA='08'
    0001 02 002 P  P0001-ABKRS<>'99'
    0001 02 002 P  INS,0014,,,(P0000-BEGDA),(P0000-ENDDA)
    0001 02 002 P  INS,0015,,,(P0000-BEGDA),(P0000-ENDDA)
    The above dynamic action is not working when the payroll area is changed from 99 to aby other payroll area.
    Kindly suggest where i am going wrong.
    Regds,
    Nithi

  • Dynamic action with interactive report region refresh

    Hi!
    I'm using APEX 4.02
    I've got a page with 2 regions.
    Region1 is a (input) form
    Region2 is an interactive report on the same table as region 1
    When entering values on the form I'm trying to dynmically lookup similar records in the table with the interactive report.
    I've made a dynamic action on the change of the form fields which should refresh the interactive report region. I can see this one fires if I add a alert to debug if it fires.
    The dynamic report is based on a query with bind variables pointing to the form fields, for example
    where
    field1 = :P2_FIELD1
    This works great on the page load, so no dynamic action is fired but I can see the rows in the report region are the ones I am looking for.
    But the refresh of the report region is not working, it is never refreshing and/or showing the correct data after a change of the form fields, so it looks like the dynamic action "refresh region" is not working on the interactive report.
    Any ideas why this can go wrong ?
    I would like to solve this using standard dynamic actions and preferrably not via PL/SQL or JS, shoudl be possible if I should believe the documentation... ;)
    Cheers
    Bas
    Edited by: bklerk on 26-apr-2011 3:07

    Hi,
    When you change value to item, I assume you do not set value to session state.
    Use interactive report advanced attributes "Page Items to Submit" , set items session state before report is refreshed.
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/app_comp.htm#sthref1235
    Similar post/issue here
    Hide and show region - hides on refresh
    Regards,
    Jari

  • Straightforward dynamic action not working properly in 4.1 anymore

    Our application has a page with a great number of checkboxes all using the same LOV ('Y','N'). We defined a simple dynamic action that fires whenever the first checkbox is changed. If its value is set to 'Y' the value of all the other checkboxes is set to 'Y' as well. A false action does the reverse. This worked fine in 4.0. In 4.1 it still fires but instead of the complete list of affected items only the first item of that list has its value set. When we change the action to be fired from 'Set Value' to -for instance- 'Hide' or 'Disable' it works fine again (i.e. affects the entire item list).
    Has anyone an idea what can be the problem here?
    Robert.

    Hi Robert,
    I think you are hitting "4.9 Dynamic Action Set Value with Multiple Affected Elements" documented as change of behavior in the release notes of APEX 4.1 http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21672/toc.htm#CACFHAFB By coincident Mark Lancaster also blogged about it a few days ago. http://oracleinsights.blogspot.com/2011/09/dynamic-actions-changed-behavior-in.html
    BTW, if you have so many Y/N checkboxes, you might want to have a look at our "Simple Checkbox" item type plug-in at http://apex.oracle.com/plugins
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Dynamic actions in richfaces

    I have the following menu builder method, suppose it navigate to the to binding Expression
    but i did nothing, and there is no exception
    public void setMenu(HtmlDropDownMenu menu) {
              this.menu = menu;
              this.menu.getChildren().clear();
              HtmlMenuItem item;
              for(Object obj : menuList){
                   item = new HtmlMenuItem();
                   Application app = FacesContext.getCurrentInstance().getApplication();
                   MethodExpression mBinding =
                        app.getExpressionFactory().createMethodExpression(FacesContext.getCurrentInstance().getELContext(), "#{taskBarImpl.nav}",String.class ,new Class[]{ });
                   item.setActionExpression(mBinding);
                   item.addActionListener(new MethodExpressionActionListener(mBinding));
                   addToMenu(item, obj.toString());
         }

    Hi Abbas,
    Dynamic actions are not supported for Tabular Forms in a standard APEX way yet.
    The only workaround is to use CSS classes inside your tabular form. Your Dynamic action will fire for any action on this class!
    Tobias

  • Dynamic actions in apex 5.0

    I have upgraded an application to apex 5.0 and have a few bugs related to dynamic actions.
    It seems that even when the "page items to submit" field has been filled in the session state/item value is not updated and consequently can not be used in the dyamic action.  (its possible I had set this manually via js in the html attributes but if so then this was lost due to conversion..possible but it seems less likely.)
    Has anyone had a similar experience or know of a way to fix this?

    Hi,
    as already pointed out the above code isn't really a JavaScript Expression, because it doesn't return anything. APEX 4.2 and previous versions where more forgiving, because they used eval to execute that dynamic JavaScript code. Eval is very forgiving and also accepts code which doesn't return anything. Because of security best practices, APEX 5.0 isn't making use of eval anymore and expects that the JavaScript expression is really an expression and not a JavaScript code block. Please see the documented change of behavior '4.24 Dynamic Action Set Value Action Set Type JavaScript Expression More Strict' in our Release Notes at https://docs.oracle.com/cd/E59726_01/doc.50/e39143/toc.htm#HTMRN310
    In my opinion the above dynamic action should actually be of type 'Execute JavaScript Code' instead of 'Set Value'. Because that's what it's actually doing.
    You can run the following SQL Statement in SQL Commands to get an idea which dynamic actions might be affected by this change of behavior. It searches for multi line JavaScript Expressions.
    select page_id,
           page_name,
           dynamic_action_name,
           action_name,
           attribute_05
      from apex_application_page_da_acts
    where application_id = 96695
       and action_code  = 'NATIVE_SET_VALUE'
       and attribute_01 = 'JAVASCRIPT_EXPRESSION'
       and instr( attribute_05, chr(10) ) > 0
    order by page_id, dynamic_action_name;
    Sorry for the inconvenience this security change has caused for you.
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Call a routine in a dynamic action.

    Hi Experts,
    i want to write a routine in which i can give the error msg while saving the infotype 0002 incase the given condition is not fulfilled.
    Can you tell me where i can write this routine and how to call it in a dynamic action.
    i hav written other types of dynamic actions before but never called any routine before
    Plz give me the detailed info regarding writing a routine.
    regards
    TS

    Hello TS,
    You can do that using F in Indicator for step but iam not sure whether it will return an error message. We have user exits for this which might solve your issue. We have userexit PBAS0001 and in this EXIT_SAPFP50M_002 Function module, we need to write the code which ever you want to do.
    For Calling FORM in Dynamic actions.
    P - Check conditions
    I - Maintain infotype record
    W - Set default values when creating a new record
    V - Reference to another step
    F - Call routine
    M - Send mail
    Say you have a program ZTEST. In this you need to write the form that needs to be called in dynamic action and say for ex:form_test.
    You can fill only structure RP50D values, because these values you can get it back to dynamic action. ypu can check for examples in dynamic actions it self which have 'F' indicator step.
    Regards,
    Kiran I

  • APEX Dynamic Actions?

    Hello i'm trying to figure how how to have a dynamic action populate text fields.
    When the create button is hit, it will insert the record in the DB like normal.
    I had a search box doing a dynamic action when a record_number is entered and the selection changes
    It populates the remaining text boxes with the results of the record_number.
    I used a "SET_VALUE" true action on each individual ITEM
    For each individual item i have different SQL Statement populating that item.
    Ex. To populate Last_Name/ P2_LAST_NAME item i do the following
    Select LAST_NAME from patient_Demographics
    where record_id = :P2_RECORD_ID
    Affected Elements:
    P2_LAST_NAME
    So i have about 8 of these true statements, so i'm hitting the DB 8 times to get the individual items.
    Is there a way to hit the DB once and set the items using one PL/SQL statement?
    I tried using a PL/sql function body, i'll admit, it didnt know what i was doing, it didnt work

    Hi,
    So as you've found out, support for setting multiple affected elements in 4.0 is very limited. Are you definitely trying this out on 4.0? The reason I ask, is because we only introduced the 'Page Items to Return' attribute in 4.1.
    In 4.0, I would suggest falling back to a combination of a dynamic action, some JavaScript and a page level AJAX callback, as described here:
    Dynamic Action - setting the the value of multiple Affected Elements
    I think this should work better for you than trying to manipulate the 'Execute PL/SQL Code' action in 4.0 to do this.
    Hope that helps.
    Anthony.

  • Menu for Country of Origin

    Today I got my N8 and when trying to choose the country of origin, my hand touched a different country and I canceled that but now I do not know how to get back to that menu to set the right country USA  .     Also, how would I check to see if I have Anna or not
    Thanks in advance
    Solved!
    Go to Solution.

    In Phone settings.. go to Date and Time settings.. If you see a setting for TIME ZONE.. tap on the field below this.. and the list of Countries should appear.. Select the one you want to set as Local Time..

  • Dynamic Action infinite loop

    Hi,
    I have a page with number of days, start date and end date.
    If I change the number of days, I want to set the end date based on start date + num days.
    I also want to go the other way so if they enter an end date, it will calculate the number of days.
    I have dynamic actions for these and they both work fine. The problem is I get a Stack Overflow error after about a second. I assume it is stuck constantly running the 2 dynamic actions one after another, each triggering each other.
    Has anyone else had this issue? And how did you solve it?
    Thanks
    Richard

    Richard,
    Where you have Ajax based dynamic actions ('Set Value' and 'Execute PL/SQL Code') that attempt to save some item's value in session state (via the 'Page Items to Submit' attribute), you will definitely hit issues if SSP is enable for those particular items. This also effects other places where item values can be set via AJAX (Interactive report regions and cascading LOVs), not just in dynamic actions.
    The reason this doesn't work is is because it is not possible to generate a valid checksum on the client, in order for the item to be submitted successfully. In fact, providing a mechanism to calculate a checksum on the client would obviously open up a whole new security vulnerability.
    You can workaround this by evaluating each page item that you wish to set via dynamic actions and seeing if you can switch off SSP (setting to 'Unrestricted') for just that specific item. You can still have SSP enabled for the application and page, and for other page items, importantly including whichever item stores the primary key or where you have some other vulnerable value stored in some page item.
    I have also filed a documentation bug to better explain this in the help text. Patrick also filed an enhancement request for the 'Advisor', so that it checks if SSP is enabled for any page item values that are set from one of these places and alerts the user accordingly.
    Hope this helps.
    Anthony.

Maybe you are looking for

  • How the heck do I install windows on my eMac?

    Okay, by the topic heading you all know I'm a serious newb when it comes to anything Mac-related, but I've been messing around in the PC environment for a long time. A friend donated this eMac so I can familiarize myself with how Macs operate, and al

  • Amazing lack of customer service

    OK, first complaint: - It would certainly be nice to be able to talk to a real human who cares about customer service complaints.  The phone support really isn't empowered to do much, and there's no option after that...except posting to some forum. I

  • How to assign status profile to Business partner

    Hi Gurus, in sap crm 7.0 web ui i want to restrict particular user group to only" see" accounts it means only  "display"  view this we can achieve through status profile but how it is configured i don't know...can somebody help me understand it. Than

  • Mail.app refuses to start up

    Hi all: Today I encountered a problem using mail.app with my dotmac account. When try to run the application, either by clicking its icon in the applications folder or from the dock, I get the spinning beach ball, which is followed by an error messag

  • I Need to build a database/booking and dispatch system that intergrates with iCal, Address Book and all Apple device's What would be the best Way.

    Hi Can anyone give me some useful information on the best ways to design and build a database/booking & dispatch system that can be intergrated through ical, address book and available on my macbook, ipad & iphone and all accessed through icloud. I s