Custom fields to change the actions ;list

Dear all,
I had put a custom check box in the new custom tab.
Based on this check box value I want to set the actions in the action list.
for example ...say the custom check box is 'Approval required' . if this is checked only then the action list should have action as Approved ...otherwise not.
This is field is created in the crmd_customer_h table thru the structure.
Now I have created a parameter in the container editor like the same screen field (with import and export options checked) and in the condtions for this action, I have written to display this action only if this parameter has the value 'X'.
Its not working.please advice me how to proceed.
Also can we set the break point here.
thanks
regards
sanjeev

Hi,
please use BADI CONTAINER_PPF to fill the value of your parameter.
Check note [865619 - Actions should only be scheduled if status is newly set|https://service.sap.com/sap/support/notes/865619] for further examples.
Regards,
Christoph

Similar Messages

  • Cr XIR1 to create a custom function to change the timestamp of a field

    Post Author: palm
    CA Forum: Crystal Reports
    Hi,
    I am trying to create a custom function to change the timezone of a field in the report depending on the timezone selected by the user in the prompt
    I wrote a SQL Expression to do this , but i ended up creating a bunch of expressions for each time zone ,
    So i am thinking of custom fuction some thing like
    TimeZoneConvertor:
    Fuction(TimeStampField ,  Timezone)
    Returns: Timestamp field with newtimezone as selected by user
    Hope you get this and please give me some kind of ideas to acheive this
    Thanks in Advance!!!!!!!!

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • Using ms project 2007 and vba macro to list all the custom fields used in the project?

    Hi,Using ms project 2007 vba macro, I would like to be able to list all the custom fields used in the project and their corresponding field names. e.g. let us say I create a calculated duration field and name it "expected duration" and the name
    of the field I select is Duration1.
    I am trying to write a macro that will list all the used custom fields such as the result would look like:
    Duration1 ---> "expected duration"
    Text1       ---> "anything"
    Flag1        ---> "....."
    Number1  ---> "..............."
    Can anyone provide me with the solution?
    Regards,
    Chuck

    John,
    I found this module, which provides the the list of custom fields used in the project but does not provide the name given to the field. Here below is the module and hope you could help me achieve this by modifying the macro to list the renamed field.
    ' MSP Checks all Custom Task Fields
    Sub checkfields2()
    'This macro will check and report out which custom task fields are used
    'It requires Project 2002 and above as it relies on the GetField
    'and FieldNameToFieldConstant methods which were not introduced until
    '2002.
    'It does not include resource fields, however it is a simple matter to
    'do it by replacing the pjTask constant with pjResource.
    'Copyright Jack Dahlgren, Oct. 2004
    Dim mycheck As Boolean
    Dim myType, usedfields As String
    Dim t As Task
    Dim ts As Tasks
    Dim i, it As Integer
    Set ts = ActiveProject.Tasks
    usedfields = "Custom Fields used in this file" & vbCrLf
    myType = "Text"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 30
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Number"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 20
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Duration"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If Left(ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)), 2) <> "0 " Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Cost"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Start"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Finish"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    MsgBox usedfields
    End Sub
    This is what the module gives me. But I would like to have beside Text 1 the name that is shown as below. e.g Text1 is "Test".
    Would you mind helping me achieve this?
    Thanks in advance.
    Chuck

  • Changing the Attachment List of Generic Object Services (GOS)

    Dear Experts,
    i want to add columns to the attachment list of GOS depending of the given objecttype. The data to be displayed is from a customer-append of different TOAXY-tables. I want to use the functionality of the standard attachmentlist, but the type of the displayed table is defined as SGOS_ATTA and cant be reached directly because of the data-encapsulation.
    Is there anybody with experience in changing the attachment list in the above mentioned way?
    Do i have to modify all the used classes of the attachmentlist, or are there any customer-exits/badis that can help me to reach my goal?
    Or should I implement my own service from the scratch?
    I hope you can help me, i searched the web for about 3 days now...

    I found following Solution:
    I copied the following classes and changed them in some way to fit my requirements:
    1.CL_GOS_ATTACHMENTS
    2.CL_GOS_SRV_ATTACHMENT_LIST
    3.CL_LIST_BROWSER
    Changes to the Classes:
    1.Type of the attribute GO_INSTANCE changed to ZCL_GOS_ATTACHMENTS.
       Changed method INIT_BROWSER:
    go_browser ?=
        zcl_list_browser=>zcreate_browser( cl_browser=>gc_list_browser ).
    2.Type of the attribute GO_ATTACHMENT_LIST changed to ZCL_GOS_ATTACHMENTS
    3. Copied Method CREATE_BROWSER of Class CL_BROWSER to ZCREATE_BROWSER:
    method zcreate_browser.
      case ip_btype.
        when gc_list_browser.
          *create object ro_browser type zcl_list_browser.*
        when gc_tree_browser.
          create object ro_browser type cl_tree_column_browser.
        when others.
          raise exception type cx_sobl_browser
            exporting
              gp_error = cx_sobl_browser=>gc_wrong_type
          exit.
      endcase.
    endmethod.
    Modified the code of method ___DISPLAY to my needs.

  • Required a customer field(located in the profitability segment box) as mand

    our client is requested  that the customer field (located in the Profitability Segment box) be a mandatory field for GL accounts which are getting posted directly from FI. This field is needed so that proper reporting can be generated for bad debt and product liability claims. Currently this field is not a mandatory when making journal entries, so there were some postings happened with out customer field. Due to this we are unable to extract exact values in CO-PA reports . Please can some one help me on this and explain the process and settings for this??
    Thanks in advance.
    Regards,
    Venkat

    Hi Eli,
    I have posted note to SAP and i got the below reply from them.
    Get this functionality you should change
    the coding of form DERIVE_CRITERIA_EXTENDED from include RKEVRK2L after
    uninstallation of note 115500(in case you have installed) like this:
    Im Dialogfall (Kontierungspopup) Verprobung ob für Feld
    Mußeingabe erforderlich (Merkmalsgruppe!)
    (nicht f. Faktura, da dort keine Fehlermeldung moeglich)
    if ( xt_criteria-field is initial
    BEGIN OF DELETION *****
    and xt_criteria-status eq '2'
    and not is_status_flags-dialog is initial ) .
    perform send_message using 'KE' 'E' '494'
    END OF DELETION *****
    BEGIN OF INSERTION *****
    and xt_criteria-status eq '2' ) .
    data: l_mtyp type c.
    if not IS_STATUS_FLAGS-DIALOG is initial.
    l_mtyp = 'E'.
    else.
    l_mtyp = 'W'.
    endif.
    perform send_message using 'KE' l_mtyp '494'
    END OF INSERTION *****
    xt_criteria-fieldname
    is_cobl-vorgn
    i_char_group
    endif.
    Afterwards you have to run function module RKE_GENERATE_INTERFACE_ACT
    for your operating concern to update the generated program RK2LXXXX.
    Thanks & Regards,
    Venkat

  • Adding Custom Fields for Change Request in EHS

    Hi,
    I need to add custom fields in Change request screen, where I am not able to identify for BO and node to do same.
    Its Configuration name  /MOC/F_ISS_ROOT_OBJECT_INFO.
    I tried with /IAM/ISSUE and /IAM/ACTIVITY BO.. but it is not working.
    Not able to identify the correct table for adding fields.Pls help me on the same.
    Regards,
    Reny Richard

    Reny,
    Why don't you check for the ST05, so that you can grasp some of the table names. Should be useful to you
    http://scn.sap.com/community/abap/testing-and-troubleshooting/blog/2007/09/05/the-sql-trace-st05-quick-and-easy
    BR,
    RAM.

  • How can I change the actions taken when I insert an SD card to my iMac?

    When I insert an SD card in my iMac it copies all the photos in a directory and deletes them from SD card.
    How can I change that? I just want to view my pics and then be asked if copied or not.
    Thanks in advance.

    You have the option in iPhoto to delete or keep the photos on the SD card or Camera when the photos are finished importing into iPhoto.
    To change what happens when you plug in an SD card or Camera you will need to open Image Capture in your Applications Folder.
    In Image Capture:
    1 select and highlight the SD card in the list of Devices
    2 click on the pointers in blue at the bottom for Connecting this camera/card/device
    3  change the action for to any one of the other options there, No Application (if for example you want to open it with Finder) or to Preview (if for example you want Preview to open) the SD card.

  • How to change the price list in document?

    Dear All,
    Is it possible to change the price list in document (e.g. Sales Order) by program (UI)?
    If no, any other way to do so? Thanks!
    Regards,
    On

    Dear Gordon,
    It may be Purchase Order or Sales Order. But different target will have different solution?
    Regards,
    On

  • Get the custom fields data at the time of save

    Hi,
    We have added few fields in the ICWC for the complaint screen.
    At the time of save i am trigering a BADI.
    I would like to check the data that is entered in those fields of complaint screen.
    Is there any FM which can be used to get the data from the buffer ?
    I have the header GUID available to me .
    Thanks.
    R

    Hi,
    Let me elaborate a bit.
    Users would create the complaints in the ICWC.We have addeded few custom fields in the complaint screen.
    CRMT_CUSTOMER_H_WRKT is extended with the custom fields.
    At the save i am trigerring the Partner Determination BAdi.
    Here i have the complaint guid at run time.
    I would like to check the data entered in the custom field in the complaint screen. Based on this i would like to determine one more partner.
    My question is how can i get the custom field data in the complaint screen in this BAdi.
    The FM:  CRM_ORDER_READ is not returning this data.Is there any FM to get this ?
    Thanks.
    R.

  • How to change the action of a movie console skin Flash 8

    I have an flv in the bottom layer, frame 1. Title image is on
    layer 2, frame one. Action for the title image is on the top layer,
    controlling the click on the title image. Clicking on the title
    image works fine, but clicking on the console's play button does
    not. I can hear the audio, but the title image doesn't go away. Can
    you suggest how to change the actioni of the console? I can't find
    any settings for that.

    if that's a movieclip button and skeleton_mc is on the same timeline as the button, you'll need to use:
    _parent.skeleton_mc._alpha = score*2;
    if that doesn't work, in that button press, add:
    trace("button "+this);
    and on the timeline that contains skeleton_mc, add
    trace("skeleton "+skeleton_mc);
    and paste the output panel results here.

  • How do I find the Action List?

    The error message during intall say "unable to locate the action list".
    Trying to install on Windows 7 Acer Laptop.

    Use the offline installer(s) from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header

  • Should I change the action profile?

    Hi Experts!
    The message type slf1 has the action profile:
    SMSD_ABA_MLDG_SERVICEVORGANG
    Our Support Desk has some bugs, but it works.
    My question is: May I change the action profile to:
    SLFN0001_STANDARD_DNO?????
    What consequences might occur?
    Thanks for reply!

    Hi Rauno,
    You should definitly copy the current pricing procedure and make your changes to the copy.
    The only disadvantage is that you can't mix old and new flows into e.g. the same billing document ( = pricing procedure is split criterium ).
    But the BIG advantage is that all your old flows will not get inconsistent 100% guaranteed ( when you 'look' at them, or do e.g. VA02 on an old flow etc..)
    rgds
    Dirk

  • .bin extension defaults to wrong action and is not listed in options applications tab. I can't change the action.

    I recently installed VLC player and it has overtaken my system.
    When I click on .bin (ext) files in a Firefox browser window, the default action is now listed as "VLC.bin (default)" and nothing I do can change it. I want the default action to be to download the file and I would like to remove any option related to VLC, since no .bin file should ever be associated with that program.
    There is no listing for a .bin extension for VLC (or any other program, for that matter*) in the Options/Applications tab, nor is VLC player the default action for anything listed except .wav files.
    I have tried the following:
    1. searched the options/applications tab but found nothing.
    2. searched "about:config" for any entries with "bin", ".bin", or "vlc" (one at a time) and found nothing.
    3. searched the registry for bin extension entries. I found one:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bin\OpenWithProgids]
    "bin_auto_file"=hex(0):
    "VLC.bin"=hex(0):
    I deleted the key and rebooted. No change.
    4. Double checked [HKEY_CURRENT_USER\Software\.. Gabest and Mozilla keys for anything that could be causing this behavior.
    Found nothing.
    Any help would be appreciated.
    *As far as I can tell. However, the applications tab cuts off many of the extension names and the column cannot be extended, so I can't be certain. VLC added 34 extensions to the list (!), most of which default to using the Quicktime plugin 7.6.8.

    Thanks jscher2000, I tried your suggestion, but no joy (as expected). None of the extensions were .bin, and in fact, I can't find a single listing for handling the .bin extension in the entire (unfiltered) list.
    That's why I'm so confused. Where is Firefox getting the name "VLC.bin (default)" from in the first place?
    cor-el, I checked out the link that you posted.
    I don't have an entry for "browser.download.pluginOverrideTypes" and the entry "plugin.disable_full_page_plugin_for_types" was empty (default setting).
    My bad, but I forgot to mention in my first post that I had also tried renaming the mimetypes.rdf file in my "Application Data\Mozilla\Firefox\Profiles\xxx.default\" to .old to no avail.
    Firefox created a new, almost empty file, but it didn't change the behavior for .bin files. I removed the new file and put the old file back in place after determining that clearing the file did not help, since I am otherwise happy with my current file-type options.
    However, since the option to "Always perform this action" is grayed-out, I am looking into the possibility that the website is sending a misconfigured MIME type or is assigning "Content-Disposition: attachment" to the download. What's odd, though, is that I've never had problems getting binary files from the site in the past, and the problem started when the VLC player was installed.
    I'll post back after I check into the server header data.

  • Custom fields position change in srm 7.0 in Purchase Order on WebDynpro

    Hi Experts,
    We are upgrading to SRM 5.0 to SRM 7.0
    In Purchase order screen,under account assignment,we want to see the acocunt assignment detailed view as the default view under tab "ACCOUNT ASSIGNMENT".Click on the DETAILS button and then the details show up in the bottom part of the screen.
    Can anyone advise how do we change the postion of fields in the account assignment tab which are created dynamically.
    My requirement is :
    Rahmenkostenstelle field should come below Bahnstelle field
    WebDynpro Component:   /SAPSRM/WDC_UI_DO_ACC
    View:  V_DO_ACCOUNT_DETAIL
    Thanks,
    Aarthi.

    Hi,
    Did you manage to solve the issue? I've tried to define customizing point "Configure Generic Field Display on User Interface" with no luck.
    I've even tried to enhance the corresponding WD Component for SC items detail. Field position is correct in the layout editor, but position changes when fields are rendered in runtime.
    Does anybody have any idea regarding related OSS? what am I missing?
    Regards

  • How to get only custom fields from a SharePoint 2010 list?

    I am working with the Client Side Object Model. In a console application I am retrieving all fields from a custom list. The problem is the Clientcontext fetches me a bunch of internal fields I do not want to be included. Also this causes some of the fields
    to appear more than once.
    string siteURL = "http:XYZ";
    ClientContext context = new ClientContext(siteURL);
    Web oWebSite = context.Web;
    context.Load(oWebSite);
    context.ExecuteQuery();
    //Get the list by title
    List produktKatalogListe = spLists.GetByTitle("Produktkatalog");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml = "<View/>";
    ListItemCollection listItems = produktKatalogListe.GetItems(camlQuery);
    context.Load(produktKatalogListe);
    context.Load(listItems);
    context.Load(produktKatalogListe.Fields);
    context.ExecuteQuery();
    foreach(Field field in produktKatalogListe.Fields)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Is there a way to print only custom fields? This would mean omitting fields like
    internalID, GUID...
    I tried the following:
    if(!field.Hidden)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Unfortunately this not only does not solve the issue but is also not a very good solution for the case I do want to display custom but hidden fields.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

    The following approach seems to solve the issue. Instead for checking if the field is not
    Hidden I checked whether it is not FromBaseType.
    if(!field.FromBaseType)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

Maybe you are looking for