Why we are using dynamic actions in HR

why we are using dynamic actions in HR?? main purpose of it>>

Check the link -
Re: Dynamic Actions
Re: dynamic actions
Re: Dynamic Actions
www.hrexpertonline.com/downloads/Rehan%20Zaidi%20Online%20Portion.doc
Regards,
Amit
Reward all helpful replies.

Similar Messages

  • How to make a default value by using dynamic actions

    Hi,
           I want to default a field nationality in infotype 0002 as a great britan, using dynamic actions but unable to go ahead. Any help regarding this really appreciate.
    Regards
    Niranjan

    Hi,
    I need some guidance around creating dynamic action with default value, Please guide me through.
    I am aware I can set default values for new infotype, but I need to set default value for same infotype, let me explain the scenario.
    Currently employee is on one pension scheme which is called NE1 and now we are moving this employee to CRESP Pension Scheme.
    When employee is in NE1, his IT0071 has got a opt in field with a flag on, when the same employee is moved from NE1 pension scheme to CRESP Pension scheme, his new IT0071 record should have the same opt in field with a flag on, I want it to set this flag automatically using dynamic action. I dont want to update this field manually, while moving from NE1 to CRESP.
    Currently the below dynamic  action is coded when employees are being moved form NE1 to CRESP, but now they will have a opt in flag which should appear automatically, What needs to be done to make this happen?
    Please let me know if I set default value for the Opt in field for the same infotype.
    . When employees are being moved from NE1 to CRESP pension scheme we currently use a dynamic action as show below:
    0071                      04      10      I        INS,0069
    0071                      04      20      W       P0069-BEGDA=P0071-BEGDA
    0071                      04      30      W       P0069-ENDDA=P0071-ENDDA
    0071                      06      1        F        DYNACT_PAE031(ZHRPROG016)
    Also if it is not possible via dynamic action could you please explain how to create it using user exit, I am not an ABAPer.
    Your help is very much appreciated.
    Kind Regards,
    SK

  • About creating an AJAX page with DML procedures  using dynamic actions

    About creating an AJAX page with DML procedures in APEX using dynamic actions. Help with limitations.
    I want to share my experience, creating AJAX procedures in APEX 4.0.
    LIMITATIONS
    •     How Can I Hide UPDATE button while I press NEW button. ??
    •     How Can I Hide CREATE button while I’m UPDATING A RECORD. ??
    •     How can I avoid multiple Inserts or Updates. ??
    Here are the steps to create an AJAX Updatable Form using the sample table DEPTS. You can see the demo here: [http://apex.oracle.com/pls/apex/f?p=15488:1]
    1)     Create a blank page
    2)     Add a Report Region for departments (It shows the columns deptno, dname and loc).
    3)     Add an HTML Region and create the elements to edit a Department.
    a.     P1_DEPTNO (Hidden to store PK)
    b.     P1_DNAME (Text Field)
    c.     P1_LOC (Text Field)
    4)     You also have to create a hidden element called P1_ACTION. This will help to trigger dynamic actions to perform DMLs.
    5)     Open Page Attributes and in the HTML Header Section include the following code.
    <script>
         function doSelect(pId){
              $x_Value(‘P1_DEPTNO’,pId);
              $x_Value(‘P1_ACTION’,’SELECT’);
    </script>
    6)     Modify the column DEPTNO in the report, to add column link. In the link text you can use #DEPTNO# , in target you must select ‘URL ‘ and in the URL field write javascript:doSelect(#DEPTNO#);
    7)     Create the following Buttons in the Form Region.
    CANCEL     Redirects to URL: javascript:$x_Value(‘P150_ACTION’,’CANCEL’);
    NEW          Redirects to URL: javascript:$x_Value(‘P150_ACTION’,’NEW’);
    SAVE          Redirects to URL: javascript:$x_Value(‘P150_ACTION’,’UPDATE’);
    CREATE          Redirects to URL: javascript:$x_Value(‘P150_ACTION’,’CREATE’);
    8)     Create the following Dynamic Action to Select a Department
    Name:     Select Dept
    Event:     Change
    Selection Type:     Item(s)
    Item(s):     P1_ACTION
    Condition:     equal to
    Value:     SELECT
    Action:     Execute PL/SQL Code
    PL/SQL Code:     
    SELECT dname, loc
    INTO :P1_DNAME, :P1_LOC
    FROM dept
    WHERE deptno = :P1_DEPTNO;
    Page Items to Submit:     P1_DEPTNO, P1_DNAME, P1_LOC     
    Don’t include any false action and create the Dynamic Action.
    The first limitation, the value of page elements don’t do refresh so I added the following true actions to the dynamic action AFTER Execute PL/SQL Code.
    Action:     Set Value
    Unmark *‘Fire on page load’* and *‘Stop execution on error’*
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_DNAME
    Page Items to submit:     (none) (leave it blank)
    Affected Elements: Item P1_DNAME
    Action:     Set Value
    Unmark *‘Fire on page load’* and *‘Stop execution on error’*
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_LOC
    Page Items to submit:     (none) (leave it blank)
    Affected Elements: Item P1_LOC
    These actions allow refresh the items display value.
    9)     Create the following Dynamic Action to Update a Department
    Name:     Update Dept
    Event:     Change
    Selection Type:     Item(s)
    Item(s):     P1_ACTION
    Condition:     equal to
    Value:     CREATE
    Action:     Execute PL/SQL Code
    PL/SQL Code:     
    UPDATE dept SET
    dname = :P1_DNAME,
    loc = :P1_LOC
    WHERE deptno = :P1_DEPTNO;
    Page Items to Submit:     P1_DEPTNO, P1_DNAME, P1_LOC     
    Don’t include any false action and create the Dynamic Action.
    Include the following True Actions BEFORE the Execute PL/SQL Code true Action.
    Action:     Set Value
    Unmark ‘Fire on page load’ and ‘Stop execution on error’
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_DNAME
    Page Items to submit:     P1_DNAME
    Affected Elements: Item P1_DNAME
    Action:     Set Value
    Unmark *‘Fire on page load’* and *‘Stop execution on error’*
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_LOC
    Page Items to submit:     P1_LOC
    Affected Elements: Item P1_LOC
    These actions allow refresh the items display value.
    Finally to refresh the Departments report, add the following true action at the end
    Action:     Refresh
    Affected Elements: Region Departments
    10)     Create the following Dynamic Action to Create a Department
    Name:     Create Dept
    Event:     Change
    Selection Type:     Item(s)
    Item(s):     P1_ACTION
    Condition:     equal to
    Value:     CREATE
    Action:     Execute PL/SQL Code
    PL/SQL Code:     
    INSERT INTO dept(deptno,dname,loc)
    VALUES (:P1_DEPTNO,:P1_DNAME,:P1_LOC);
    Page Items to Submit:     P1_DEPTNO, P1_DNAME, P1_LOC     
    Don’t include any false action and create the Dynamic Action.
    Include the following True Actions BEFORE the Execute PL/SQL Code true Action.
    Action:     Set Value
    Unmark *‘Fire on page load’* and *‘Stop execution on error’*
    Set Type:     PL/SQL Function Body
    PL/SQL Function Body:     
    DECLARE
    v_pk NUMBER;
    BEGIN
    SELECT DEPT_SEQ.nextval INTO v_pk FROM DUAL;; -- or any other existing sequence
    RETURN v_pk;
    END;
    Page Items to submit:     P1_DEPTNO
    Affected Elements: Item P1_DEPTNO
    Action:     Set Value
    Unmark *‘Fire on page load’* and *‘Stop execution on error’*
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_DNAME
    Page Items to submit:     P1_DNAME
    Affected Elements: Item P1_DNAME
    Action:     Set Value
    Unmark ‘Fire on page load’ and ‘Stop execution on error’
    Set Type:     PL/SQL Expression
    PL/SQL Expression:     :P1_LOC
    Page Items to submit:     P1_LOC
    Affected Elements: Item P1_LOC
    These actions allow refresh the items display value.
    Finally to refresh the Departments report, add the following true action at the end
    Action:     Refresh
    Affected Elements: Region Departments
    11)     Create the following Dynamic Action to delete a department
    Name:     Delete Dept
    Event:     Change
    Selection Type:     Item(s)
    Item(s):     P1_ACTION
    Condition:     equal to
    Value:     DELETE
    Action:     Execute PL/SQL Code
    PL/SQL Code:     
    DELETE dept
    WHERE deptno = :P1_DEPTNO;
    Page Items to Submit:     P1_DEPTNO
    Don’t include any false action and create the Dynamic Action.
    Include the following True Actions AFTER the Execute PL/SQL Code true Action.
    Action:     Refresh
    Affected Elements: Region Departments
    Action:     Clear
    Unmark ‘Fire on page load’
    Affected Elements: Items P1_DEPTNO, P1_DNAME, P1_LOC
    12)     Finally Create the following Dynamic Action for the NEW event
    Name:     New Dept
    Event:     Change
    Selection Type:     Item(s)
    Item(s):     P1_ACTION
    Condition:     equal to
    Value:     NEW
    Action:     Clear
    Unmark *‘Fire on page load’*
    Affected Elements: Items P1_DEPTNO, P1_DNAME, P1_LOC

    I need some help to solve this issues
    •     How Can I Hide UPDATE button while I press NEW button. ??
    •     How Can I Hide CREATE button while I’m UPDATING A RECORD. ??
    •     How can I avoid multiple Inserts or Updates. ??

  • Is it possible to change LOV definition using dynamic action?

    Hi,
    I have a multi-select LOV page item, P27_MULTI_CLASS_CODE, defined as below.  On page load, this list only contains values based on what has been passed to P27_OLO_CODE or P27_OLO_CODE_SW.
    SELECT DISTINCT c.class_code d, c.class_code r
      FROM ORGANIZATION o,
           POSITION p,
           CLASS c
    WHERE o.org_wk = p.org_wk
       AND p.class_wk = c.class_wk
       AND o.org_active_flag = 'Y'
       AND p.pos_active_flag = 'Y'
       AND c.class_active_flag = 'Y'
       AND (o.olo_code = :P27_OLO_CODE
            OR o.olo_code = :P27_OLO_CODE_SW)
    ORDER BY c.class_code ASC
    Before submitting the page, I would like the LOV definition of P27_MULTI_CLASS_CODE to change to the following (similar query without reference to P27_OLO_CODE or P27_OLO_CODE_SW) based on whether the user selects checkbox item, P27_ALLOW_SW.   By doing this, P27_MULTI_CLASS_CODE would contain a full range of values rather than limited values.
    SELECT DISTINCT c.class_code d, c.class_code r
      FROM ORGANIZATION o,
           POSITION p,
           CLASS c
    WHERE o.org_wk = p.org_wk
       AND p.class_wk = c.class_wk
       AND o.org_active_flag = 'Y'
       AND p.pos_active_flag = 'Y'
       AND c.class_active_flag = 'Y'
    ORDER BY c.class_code ASC
    I wanted to avoid writing Javascript.  Is this possible using dynamic actions...or at least somehow refresh P27_MULTI_CLASS_CODE so that it ignores P27_OLO_CODE and P27_OLO_CODE_SW?
    I've tried creating a dynamic action to clear the value of  P27_OLO_CODE or P27_OLO_CODE_SW, in hope it would trigger P27_MULTI_CLASS_CODE to display all values, but it has not been successful.  Any ideas?
    APEX 4.2

    I was able to resolve by changing the SQL statement to P27_MULTI_CLASS_CODE.  Note:  I also included an additional condition.
    SELECT DISTINCT c.class_code d, c.class_code r
      FROM ORGANIZATION o,
           POSITION p,
           CLASS c
    WHERE o.org_wk = p.org_wk
       AND p.class_wk = c.class_wk
       AND o.org_active_flag = 'Y'
       AND p.pos_active_flag = 'Y'
       AND c.class_active_flag = 'Y'
       AND (:P27_ALLOW_SW = 'Y'
            OR (o.olo_code =  :P27_OLO_CODE
                OR o.olo_code = :P27_OLO_CODE_SW)
       AND (:P27_PAY_PLAN IS NULL
             OR p.pay_plan = :P27_PAY_PLAN)
    ORDER BY c.class_code ASC
    I also changed the Cascading LOV Parent Item(s) value to:  P27_OLO_CODE,P27_OLO_CODE_SW,P27_PAY_PLAN,P27_ALLOW_SW.  Optimize Refresh = No, since a change in any one of these values should trigger refresh of LOV.
    The Dynamic Action was also modified to NULL out P27_OLO_CODE,P27_OLO_CODE_SW when P27_ALLOW_SW was enabled.
    So far, so good!  Thanks for your suggestions Tom and Howard!

  • How to use dynamic action to fill multi item on a page ?

    Hi..
    I want to fill multi items on a page so I build a dynamic action ( Execute PL/SQL Code ) to do it .The problem is that when the page loads I can't see any data and I tried to see the session values using debug and I found data. Moreover when I save the row I got these data saved.
    So what is the magic there?
    Thanks

    Firstly, to get the multi-select populated with "pre-selected" values the easiest approach is to use Computation or Process at a process point On Load Before Header or After Header or Before Regions.
    All you need to do is populate your "Select List " page Item with : (colon) separated list of selected values. E.g is you want A,B and C out of A,B,C,D,E selected then get A:B:C into the Page Item.
    If you have used Dynamic Actions, what is your event on which the action fires? For Dynamic-Actions the page (HTML DOM) needs to be existing , so it must fire after the page has loaded.
    Regards,

  • How to use getAncestor(n),getdescendant(child,child) in sql why they are use please give me example

    how to use getAncestor(n),getdescendant(child,child) in sql why they are use please give me example
    jitendra

    Below are a few examples that demonstrate these hierarchyid data type methods.  See the hierarchyid reference in the SQL Server Books Online for more examples of these and other methods (http://technet.microsoft.com/en-us/library/bb677193.aspx).
    --return a child of this node ('/1/')
    SELECT CAST('/' AS hierarchyid).GetDescendant(NULL, NULL).ToString();
    --returns a child of this node greater than child node '/1/' ('/2/')
    SELECT CAST('/' AS hierarchyid).GetDescendant(CAST('/1/' AS hierarchyid), NULL).ToString();
    --returns a child of this node less than chold node '/1/' ('/0/')
    SELECT CAST('/' AS hierarchyid).GetDescendant(NULL, CAST('/1/' AS hierarchyid)).ToString();
    --returns a child of this node greater than child node '/1/' and less than child node '/2/' ('/1.1/')
    SELECT CAST('/' AS hierarchyid).GetDescendant(CAST('/1/' AS hierarchyid), CAST('/2/' AS hierarchyid)).ToString();
    --return ancestor of node 1 level up from this node ('/1/2/')
    SELECT CAST('/1/2/3/' AS hierarchyid).GetAncestor(1).ToString();
    --return ancestor of node 2 levels up from this node ('/1/')
    SELECT CAST('/1/2/3/' AS hierarchyid).GetAncestor(2).ToString();
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Why we are using cluster tables mainly HR

    can any plz tell me why we are using cluster tables mainly HR???

    Nice question -
    Am making my guess based on whatever little I know;
    PCLn are <i>file</i> systems and not a traditional (RDBMS) table system. Each File may contain one or more data clusters. SAP Defines data clusters thus -
    <i>A data cluster is a grouping of several data objects. Elementary fields, field strings and internal tables can be grouped in a data cluster</i>.
    <i>Example</i>:<i>Clusters B1 and B2 in files PCL1 and PCL2 are relevant to time evaluation, as is cluster PS, which stores the generated schema</i>.
    The reason why file system of data storage is used instead of DB Table system may be for the purpose of storing voluminous data (Payroll and time) and ease of retrieval during processing (RDBMS may hv tough time in this). Also probably because of SAP's origin from Mainframe.
    Why data clusters are used -? Probably data clusters are an offshoot (or part) of File system
    Pls feel free to contradict the above. Actually DB experts can throw more light on this..
    Regards
    Chandra

  • Why we are using servlet as a controller instead of Jsp?

    Can any explain answer for this question
    Thanks in Advance
    Why we are using servlet as a controller instead of Jsp?

    nareshannam wrote:
    Can any explain answer for this question
    Thanks in Advance
    Why we are using servlet as a controller instead of Jsp?Basically JSPs are suited to do just one thing, to generate HTML with variable content. You can put Java code in there too, but it's not a good place for it. Messy to validate, messy to debug. In fact, with tag libraries like JSTL, actual Java code is rare in professionally written JSPs.
    A controller does the bit that comes before you've decided what kind of response the user is going to get, typically it may invoke one of several JSPs according to validation etc.. There's a lot of logic, a lot of parsing parameters and so on. Much cleaner to do this from a Java class like a Servlet.
    Judging by this forum quite a lot of people come to JSPs from ASP or PHP and don't want to bother with actually writing Java classes. That's never going to be much good.

  • Why we are using No_Filtering hint?

    Hi
    can anyone tell me why we are using No_Filtering hint?
    This query is Retriving extra rows when hints not applied.What is the reason.
    Select /*+ No_Filtering */ *
    from (select /*+ No_Filtering */
    true_name, true_name_cmprsd, jurisname, entityids, ht,
    max(ht) over(partition by true_name_cmprsd) ht_1
    from (select /*+ No_Filtering */true_name, true_name_cmprsd,
    LTRIM(SYS_CONNECT_BY_PATH(entity_id, '; '), '; ') AS EntityIds,
    juris_short_name JurisName,
    LEVEL HT
    FROM (select /*+ No_Filtering */e.true_name, e.TRUE_NAME_CMPRSD, j.JURIS_SHORT_NAME, e.entity_id,
    ROW_NUMBER() OVER(PARTITION BY TRUE_NAME_CMPRSD ORDER BY ENTITY_ID) AS curr,
    ROW_NUMBER() OVER(PARTITION BY TRUE_NAME_CMPRSD ORDER BY ENTITY_ID) - 1 AS prev
    from SIV_JURISDICTION j, arv_entity e
    where e.ENTITY_STATUS_CD = 2002 and
    e.DOM_JURIS_ID = j.JURIS_ID and juris_id = 8)
    connect by prev = PRIOR curr AND true_name_cmprsd = PRIOR true_name_cmprsd
    start with curr = 1)
    WHERE ht > 1)
    where ht = ht_1
    order by upper(true_name)
    Thanks in advance...

    Because one of your developers or DBAs thought it would be neat to use an undocumented hint.Possibly, although Oracle support have recommended us use hints (such as NO_CONNECT_BY_FILTERING) on several occasions to work around bugs in CONNECT BY queries.
    I also recall a specific recommendation to consider the NO_FILTERING hint in the Oracle error messages documentation when running out of temporary space in CONNECT BY queries, I'll see if I can find the link.
    Not that I support the use of hints in production of course, just that there are some mitigating circumstances around CONNECT BY behaviour.

  • Why we are using FILLPV and GENTPB operations?

    Hi Experts,
    Please Explain Why we are using "FILLPV0" ,"FILLPV1","FILLPVT","FILLPV6'.
    and 'GENTPB 0", "GENTPB * ", "GENTPB 01R", "GENTPE B".
    I have a scenorio,
    hrs?16
    -<
    hrs=dxxxx
    hrs-16
    adddbyyyyz
    GENTPE L
    COLOP*
    -=
    FILLPVL
    COLOP*
    ->
    FILLPVL
    colop*
    I confusing about what is "L"
    and where it stored?.
    why the need we fill procesing type L when =,> ?
    by using that Fillpv what is the further process.?
    where XXXX is a time type which have 17.
    YYYY is also timetype which stores 1.
    so my question is when we add that 1 to timetype yyyy what is the need to call "GENTPB L"
    and what process will done when we cal that "gentpb l"
    and when xxxx = 16
    we are filling "FILLPV L"
    L is assigned with some wagetype 4xxx.
    what process is done when when we use this "FILLPV L' operation.
    Thanks in Advance,
    Mahesh.

    Hi Harish,
    Thanks for your reply,
    so
    When we use FILLPVM operation any specific wage type related to overtime  will be populated from table "t510s" ?
    according to your help i assume this rule
    hrs=s
    _hrs?8
    ---<
    ---hrs=s
    ---adddbxxxx
    ---=
    hrs=s
    adddbxxxx
       |--->
            |---hrs=s
            |---adddbxxxx
            |---hrs-8
            |---gentpe   m
            |---adddbyyyy
            |---fillpvm
        here that 2 hours will split into overtime and stored into yyyy timetype.?
    and  that fillpvm will cal the specific wagetype related to overtime?
    please let me know if i am wrong. 
    Thankyou,
    Mahesh.

  • Why we are using APO - Demand Planning ?

    Dear All,
        Why we are using APO-Demand Planning,as we have this option in R/3 ?
    What is advantages of APO - DP over & above R/3?
    Regadrs
    Sujay Joshi
    91-9833464511

    Hi Sujay,
           Have a look at the below thread.
    General Discussion - Why to choose APO over R/3 for planning?
    Regards,
    Siva.

  • Why we are using Application upgrade assistance??

    Hi,
    Doubts?
    Why we are using Application upgrade assistance in the case of apps up-gradation from 11i to R12, whenever up-gradation assistance don not upgrade database and all custom form and reports. It will install new Tech Pack.
    Please clear my doubts.
    Thanks
    Anup

    Anup,
    Have a look at the following documents.
    Note: 430732.1 - Downloading Maintenance Wizard -- (check the User's Guide).
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=430732.1
    Note: 405263.1 - Maintenance Wizard FAQ
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=405263.1
    I would suggest you post your question in [Technology - LCM: Maintenance Wizard |http://forums.oracle.com/forums/forum.jspa?forumID=351] forum, you would probably get a better/faster response.
    Regards,
    Hussein

  • Why we are using "FILLPV" and "GENTPB" in Time PCR

    Hi Experts,
    Please Explain Why we are using "FILLPV0" ,"FILLPV1","FILLPVT","FILLPV6'.
    and 'GENTPB  0", "GENTPB * ", "GENTPB 01R", "GENTPE B".
    Please explain these Scenarios. Its Urjent. otherwise i cannot go further process.
    Thanks,
    Mahesh.

    Hi Salil,
    Thanks for your reply.
    I stiil have confusion. Please give some example to explain about these and help me out.
    I have a scenorio,
    hrs?16
    -<
         hrs=dxxxx
         hrs-16
         adddbyyyyz
         GENTPE   L
         COLOP*
    -=  
         FILLPVL
         COLOP*
    ->
        FILLPVL
        colop*
    I confusing about what is "L"
    and where it stored?.
    why the need we fill procesing type L when =,>  ?
    by using that Fillpv what is the further process.?
    Please help me out from this confusion.

  • Why we are using SID in DSO when there we are using star schema in BI

    can anyone answer me why we are using SID in DSO also, i mean what is the need of SID in DSO?

    The reason basically is that the entire query api in BW is based on SIDs
    If you look at a sql of a query that is generated when you run a report you can see this
    Example..
    If you put a selection of period = 02.2009
    In the SQL you will not see "where period = 02.2009" you will see "where sid.period = '000100001010" or something like that
    The whole query  is like this for Infoproviders of DSOs and Infocubes
    Yes it is annoying - but that't  the way it is..
    So if you have a DSO you wish to report on you need the SID for the SQL to fire..!
    On an operational daya to day side - if my cubes are 1:1 granularity with my DSOs then I prefer to put SID activation on the DSOs - two reasons
    1. so the cube load is quicker because the SID generation has already taken place (is this important? never sure but I always do it)
    2. future use of the DSO as a reporting object (this was before the days of the operational store as part of a LSA structure)

  • Why we are using certificate in infopath?

    Hi All,
    why we are using certificate in infopath?
    Thanks in advance!

    Hello,
    + Jamie
    Also to provide security and trust your publisher. If there is no certificates with form then you might face problem with publish popup. To verify all publishers for your template, just open any infopath form-->select options from file menu-->then
    click trust center-->trust center settings. You should see all certificates which are allowed.
    http://msdn.microsoft.com/en-us/library/office/bb251022%28v=office.12%29.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Jabber for Windows 9.2 Deskphone Control

    Hi, I have a deployment with: CUCM 9.1(1a) (9.1.1.20000-5) IM and Presence 9.1(1a) 9.1.1.20000-5 Jabber for Windows 9.2.3(4417) I have got most features working but Deskphone Control is not working. I can see the devices associated with my user from

  • Tomahawk for jsf 1.2 problem with customizing treetable component

    hi, i've tried many times bu i've got no clue how to set custom icons in the tree. what i want to achieve is to display the server's local file system. however this component doesn't allow to explicit specify what the node type is (a directory or a f

  • Missing font error on PDF conversion

    FrameMaker book that has been updated and converted with same set of fonts and styles many times will not convert to PDF on one machine. (I use a Mac running XP in Parallels for Frame, then Distiller Mac.) The error is "findfont" looking for Helvetic

  • User exit EXIT_SAPMV45A_002

    hello friends, I am SD consultant.Can any help me, i was doing the topic of user exit for pre-defined sold to party using v45a0002 in cmod and i wrote a program in include ZXVVZU04 while activating i got error msg 'The last statement is not complete

  • Trying to install but error U4M1D206?

    trying to install but error U4M1D206?