Geting Action Definition in SmartForm execution

Hello,
I use same smart form in different action definitions.
In the execution method of action definition (e.g. CRM_ACTIVITY_EXEC_SMART_FORM) I need to know which action definition (name) has been executed.
Available are smart form's name and the function name. How can I get the action definition it self?
Thanks for helping

Hi Babu,
What is the start condition that you gave for the Action?
Also how are you able to check whether it is getting fulfilled or not?
Regards,
Saumya

Similar Messages

  • Status of suceessfull execution of an action definition

    Hi
    We have configured in CRM 4.0 for Sales Order Transaction that when a new order is created , Order Acknowledgment an email output format has to be automatically triggered to the concerned partner through action profile.In the action profile -- the processing mode of this action definition is set as 'When saving the document" & the icon corresponding to this action text is set to green after successful execution. This can be view in Action Tab of Sales Order transaction.
    In the same way , Order Status -- action definition is also schedule in action dialog box which can be triggered by manually, at the end after successful execution the icon is set to green.This can also be view in Action Tab of Sales Order transaction.
    Now how through a customized report, how to track the orders in which these action definitions are successfully completed.
    Though application log is available but not able to fetch the records corresponding to the Order.
    Pls advice,
    Thanks & Regards
    Deb

    Hi
    Thanks a lot.
    Basically the table PPFTTRIGG contains the records related to parent Order.
    Using the records we can fetch the status of execution as per the requirement.
    Thanks & Regards
    Deb

  • How to control Action Definition in mail format from not being executed

    Dear Experts,
    I have created one Action Definition having processing type "SMARTFORM Mail" to which status based start condition is given. The Action is getting executed evnthough the start condition is not satisfied.
    Can any one plz explain me why this is happening and how to proceed further.
    Regards,
    Babu.

    Hi Babu,
    What is the start condition that you gave for the Action?
    Also how are you able to check whether it is getting fulfilled or not?
    Regards,
    Saumya

  • WebUI Print Preview (Action Definition - Print) for Adobe Interactive Forms

    Hi All,
    As mentioned in subject, how to define an CRM Action Definition (with or without Action Condition) to Print an Adobe Interactive Forms. We know how to define a setting for Print Preview function in CRM WebUI via Action Definition - Smartforms Print. Now we want to print preview from CRM WebUI document on Form designed in Adobe Interactive Forms (tx SFP).
    We have tested using Action Definition - External Communication, we can set the AIF form here. We tested in GUI (tx crmd_order) and it works. But when testing preview on CRM WebUi it shows "Error in Smartforms".
    Somehow it still detect as Smartforms instead of Adobe Interactive Forms.
    We prefer if this preview can be done via Action, because it is straight forward function for printing.
    Should we use Action - Method Call instead ? How is the approach to do it in Action - Method Call ?
    Any one try this before? Appreciate your sharing here.
    Thx & Rgds,
    Gun.

    Hi Gunawan,
    if I got you right, what you want is: Call your AIF when someone clicks on the "print preview" button in CRM WebClient. This should all work using a print action like with normal SmartForms.
    I faced this problem some months ago on CRM 6. The problem here was quite simple: The SmartForm interface and the one of AIF are not compatible. Thus the service used for calling the print action from WebClient failed.
    For handling this problem I enhanced the print service to call AIF correctly.
    In customizing I used print actions that call a method.
    As mentioned this lays back some months already. Maybe SAP came up with a better solution by now. I saw AIF to have multilple interface types. One is an interface compatible with SmartForms. Probably you can use this one and the print service will work without any enhancements or modifications.
    cheers Carsten

  • Reuse Action Definition

    System is not allowing me to use the same action defintion in more than one Action profile. can somebody explain the logic behind this?
    I want  to use the Action ZSEND_EMAIL with different smartforms   in multiple Action profiles  and  the Action determination will pick the Action profile based on Sales org.
    Regards,
    Shaik

    Hi,
    I agree this is the standard behaviour in SAP CRM, not sure about the reason.
    But I dont see any harm in using different Action Definition Ids since the respective Description/Text could be as per you requirement as that is what appears to the user in WebUI/GUI.
    Although if you find out the reason, request you to share the same.
    Regards,
    Vartika

  • SQL Server 2012 Developer Edition will not install. Setup files don't even get copied completely. Win 8.1. ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    SQL Server 2012 Developer Edition will not install.  Setup files don't even get copied completely.  Win 8.1.  ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    Hello,
    I am glad it worked.
    Thank you for visiting MSDN forums!
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Explanation for specific action definition of actionprofile AI_SDK_STANDARD

    Hi!
    Can anyone give me an explanation what the following action definitions of the action profile AI_SDK_STANDARD exactly do?
    AI_SDK_SP_SEND_AUTO: Send messages automatically to SAP Service Backbone
    AI_SDK_STANDARD_CONN_VIA_SAP: Customer Connection via SAP Service Backbone
    AI_SDK_STANDARD_SECURE_AREA: Maintain SAP Logon Data
    AI_SDK_STANDARD_UPDATE_SAP_AUT: Update Message from SAP Automatically
    Thanks for your help.
    Best regards,
    Alexander

    Hi,
    >
    Alexander Barth wrote:
    > AI_SDK_STANDARD_CONN_VIA_SAP: Customer Connection via SAP Service Backbone
    To open connection to SAP to login and investigate. Normally you do this from Service.sap.com/access-support.
    >
    Alexander Barth wrote:
    > AI_SDK_STANDARD_SECURE_AREA: Maintain SAP Logon Data
    You maintain logon data for the SAP to login and investigate. Normally done from market place.
    The remaining to I need to login and check, I don't have a system now. will update you soon.
    Hope this answers some of your questions.
    Feel free to revert back.
    -=-Ragu

  • Extended events /actions definitions

    One of the shortcomings I seem to keep stumbling across is that event action definitions are no where to be found.  I've been searching for weeks and can't find a resource from Microsoft which helps me understand the official definition for an action.
    Has someone here found that resource or know where it is?

    If you are talking about the descriptions of what they collect, then indeed the DMVs are the best place at hand currently still.
    Example query:
    -- XE Actions
    SELECT dm_xe_packages.name AS package_name,
    dm_xe_objects.name AS source_name,
    dm_xe_objects.description
    FROM sys.dm_xe_objects AS dm_xe_objects
    INNER JOIN sys.dm_xe_packages AS dm_xe_packages
    ON dm_xe_objects.package_guid = dm_xe_packages.guid
    WHERE
    (dm_xe_packages.capabilities IS NULL OR dm_xe_packages.capabilities & 1 = 0)
    AND (dm_xe_objects.capabilities IS NULL OR dm_xe_objects.capabilities & 1 = 0)
    AND dm_xe_objects.object_type = 'action'
    If you want to undestand the Extended Events Architecture more deeply I can recommend this article by Jonathan Kehayias:
    Using SQL Server 2008 Extended Events
    Andreas Wolter (Blog |
    Twitter)
    MCSM: Microsoft Certified Solutions Master Data Platform, MCM, MVP
    www.SarpedonQualityLab.com |
    www.SQL-Server-Master-Class.com

  • How to find action definition from zclass

    Hi,
    As soon as a action is triggered from a transaction i am calling  a method which is present in Z class from the action. In that method how can i find out like which action definition  is triggering this method.
    Thanks.

    Hi Azaz,
    SPRO -> Customer Relationship Mgmt -> Basic Functions -> Actions -> Change Actions & Conditions -> Define Action Profiles & Actions
    Enter the name of the Action Profile and click on Action Definition -> Processing Types.
    In the 'Print Settings' you will find the Processing Method, Class.
    Reward points if helpful.
    Regards,
    Sumeet

  • WHAT DOES "Action definition" mean?

    hi,experts
        i encounterd a problem with adobe printing, and i'm just a beginner at netweaver 2004s. i got the message type 'Z' and the Action Definition 'Z', so what does the action definition mean? is it connected to a program which fetchs the data and formats the output? if it is,how can i find the program?
       pls help me,any suggestion will be rewarded.
       thanks in advance.

    Speech bubbles come up showing the destination of links, if you hold your finger on a link in Safari.
    It may be some kind of javascript link?

  • Processing Types for Action Definition (GTS version 10.1)

    Hi Friends/Experts
    In PPF settings, for Processing Types for Action Definition US_CU_EX_CUSEX_M_UAES2  Processing settings are not being loaded. It shows the permitted processing type for action as Method Call but the Set Processing box is not being displayed. What could be the reason and how can I fix this/
    Appreciate quick response.
    Thanks
    Keshav Murthy

    Hi Dave
    Well I it was not with an intent to change any settings. By default it should have been displayed and as I did not see it there, wanted to know how did that disappear! and was not sure if it would have any impact while processing any messages for declaration.
    Keshav

  • Difference between Form Interface and Global definitions in Smartforms.

    Hi guys!
    I'm learning about Smartforms.
    I would like to know which is the difference between Form Interface from the Global Settings and Global Definitions from Global settings as well, because in both of them I have to declare tables, structures, variables, etc. Could you please explain to me when should I use them?
    Thanks!
    Gaby

    Two ways to use Smart Form:
    1.     by using Application Program
    2.     By coding in Smart form itself.
    Now, if the 1st method is used then same interface can be used  for multiple requirements. For eg two different programs Z1 and Z2, may use same interface. Hence a lot of efforts are reduced.
    On the other side in 2nd method, multiple forms have to be created to fulfill different requirements.
    Now, Global Definiton is something that is irrespective of which Program is being used, the form nodes can use the Global definition in all cases.
    Also all tables etc must be declared in the Global setting.
    Regards,
    Sana

  • Smartform Execution in FI

    Hi,
       We execute smart form we wrote form routine in sd ,mm,pm....
      like that in FI...what is required for the execution of smart from?
      My requirment...Fb02..give the values...select one item number...
      Environment ..> Correspondence ..(FOR EG APP01)smartform is to be executed...
    Please give some suggestions REGARDING THIS.
    tHANKS & rEGARDS,
    Padmaja

    Hi,
         Check if the joining date is passed to the smartform from PA30.
    Regards,
    Srini.

  • Can not find 'Currency/Quality' tab under 'global definition' in smartform.

    Anybody know why? Is a version problem? I'm 4.6C.
    Thanks!

    Amit,
       I checked with one standard smartform, same thing.
      What I have are tabs: 'Global data' , 'Types', 'Field symbols', 'Initialization', 'Form routines' under 'Global definition', does i'm in the right place?
      Thanks! I'm really stress on this.
    Xing

  • Workflow not getting triggered from Action definition in CRMD_ORDER

    Hello Experts,
    I have created a workflow which should send mail to partner team in a Change Request.This workflow should be triggered when a particular Zaction is performed on the CR.Zaction is created properly and my workflow is also assigned to it.I have also followed OSS note-733675 and created a workflow container with name "BUSINESSOBJECT" to get the application data into my workflow when the action is performed.My workflow is a background processing one.
    I have tested it separately by providing GUID foreground and it works perfectly fine and mail is sent to partner team.But when i perform the action,mails are not getting triggered nor the workflow.I am not even able to check the logs.I am not even able to know if all the action has triggered my workflow.Kindly help.Would appreciate your contribution.
    Regds
    VLP

    Please check in SWI2_FREQ whether the Workflow is really getting triggered.
    Thanks
    Arghadip

Maybe you are looking for