How to use Configurable Modules

Hi... Can anyone share me any link or document or whatever related to how to make a Configurable Module works? I'm trying to create a code-and-record-based CM. I've already created the attribute form, some Data Elements that will be the container of rollup values from BP, a Code field which type is formula - combining 2 other DEs to form the code, the BP to collect the data from, and linked the BP to the right Configurable Manager. What frustrates me is that all the values that I've entered in the BP do not appear in the Sheet.
I've read all Unifier User Guide, Administration Guide, uDesigner User Guide, but none of them point a clear information on how to make it work and populate data in the Sheet.
So, any information about it will be highly appreciated.
Thanks.

TIMHEHE wrote:
I want to make a integral circuit,WHERE CAN I FIND THEM? 
LabVIEW does not have circuits. The integral functions are in the palettes.
TIMHEHE wrote:
1110340076
Very obscure. What is the significance of this number?  Is this your phone number?
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • How to Use Function Module READ_TEXT

    Hi
    Anyone give me code or link or example for how to use function module READ_TEXT
    and what are the parameters which we have to pass in module.
    Regards.
    Mohsin

    Hi,
    refer the given below code.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        id                            = 'KOPF'uF0E0 these details we will get thru transaction , where we enter these details.
        language                      = 'EN'uF0E0 these details we will get thru transaction , where we enter these details.
        name                          = TNAME  "table name
        object                        = 'AUFK'    " these details we will get thru transaction , where we enter these details.
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    IMPORTING
       HEADER                        = HTEXT
      tables
        lines                          = LTEXT
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks
    Arun

  • How to use functional module " DETERMINE_DUE_DATE"

    Hi All,
    Can anyone suggest how to use functional module " DETERMINE_DUE_DATE" as it is used in an FI transaction code "FBL5N" and i have to use it in my zprogram to capture the net due date..please suggest..
    Regards,
    Shanu

    hi,
    CALL FUNCTION 'DETERMINE_DUE_DATE'
                 EXPORTING
                      I_FAEDE = LS_FAEDE
                 IMPORTING
                      E_FAEDE = LS_FAEDE
                 EXCEPTIONS
                      OTHERS  = 1

  • How to use function module SALRT_CREATE_API to trigger alert in XI?

    Hi experts,
             I have read that alert can be triggered in BPM or through a FM SALRT_CREATE_API. Now how to use this FM?
    In what XI scenario I can use this FM and how?
    Any example will be really appreciated.
    Thanks
    Gopal

    Hi Gopal,
    I am not sure if any function module like SALRT_CREATE_API is used to create ALERTS.
    If you want to <b>create alerts</b>, just check this blog,
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Next , after you have done this to <b>test your configuration</b>,
    go to T code - SE38.
    In the program , type RSALERTTEST and then click on EXECUTE button ( F8 ). In the next window, it will ask you for your ALERTCATEGORY. Just give the name of your ALERT CATEGORY and click EXECUTE.
    If you have configured your alerts correctly, you will receive a message that tells ALERT IS GENERATED and will give the ALERT ID.
    Now, go to your Run TIme workbench and then select ALERT INBOX and see if you have got the ALERT message in your ALERT INBOX.
    Finally if you are on <b>SP14 or above</b> , check this note <b>913858</b>
    and if <b>below SP14</b>, just check this blog,
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    And. to use this alerts in your BPM,
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    Regards,
    Bhavesh
    Message was edited by: Bhavesh Kantilal

  • How to use Function module generated to update CDHDR CDPOS

    Hi,
    I have a Z-table, and I want to tracks the value changes in some fields,
    the data elements for those specific fields are marked for "Change document".
    I created a Change document object using the transaction SCDO and I got the function module.
    now can any one tell me how to use these function modules like ( what values need to be passed to function module. what value do we need to pass for   OBJECTID,..value for tables ...etc )
    I have a custom program to update/delete entries in the custom table so should I use the function module in my custom program to result an entry in CDHDR & CDPOS.
    how to display the old value and new values  for the fields specified to changes.
    Regards,
    Nagu.

    check in SE37
    RV_ORDER_FLOW_INFORMATION
    SD_SALES_DOCUMENT_READ
    SD_SALES_DOCUMENT_READ_POS
    SD_DOCUMENT_PARTNER_READ
    SD_DETERMINE_CONTRACT_TYPE
    SD_SALES_DOCUMENT_COPY
    SD_SALES_DOCUMENT_SAVE
    SD_SALES_DOCUMENT_ENQUEUE
    SD_PARTNER_READ
    RV_DELIVERY_PRINT_VIEW
    SD_PACKING_PRINT_VIEW
    SD_DELIVERY_VIEW
    RV_BILLING_PRINT_VIEW
    RV_PRICE_PRINT_HEAD
    RV_PRICE_PRINT_ITEM
    Rewards if useful...........
    Minal

  • HOW TO USE FUNCTION MODULE IN ALV

    hi guyz
    I developed an alv report using join statements .But i got all that fields in a function module. so how can i use function module in alv .
    if i got a function module with all the fileds do i need to use select statement.
    plz help me.
    thanks
    sudheer

    Hi,
    Hope the following helps..
    1)
    LOOP AT IT_OUTPUT.
    Call the function module to get the tracking number and store the output in the
    variable V_TRACKINGNO.
      IT_OUTPUT-TRACKING_NO = V_TRACKINGNO.
      MODIFY IT_OUTPUT TRANSPORTING TRACKING_NO.
    ENDLOOP.
    2) Date conversion
    DATA: V_CHAR(10) VALUE '2006.11.17'.
    DATA: V_DATE       TYPE SYDATUM.
    CONCATENATE V_CHAR(4) V_CHAR5(2) V_CHAR8(2) INTO V_DATE.
    WRITE: V_DATE TO V_CHAR MM/DD/YYYY.
    WRITE: / 'MM/DD/YYY Format - ',  V_CHAR.
    Please make sure to reward points for helpful answers..
    Thanks,
    Naren

  • How to use function module to update data

    Hello ,
    Can any body have idea how we can use function module SAVE_TEXT to update the master recipe header and operation long text.
    I want to use this functional module to update the master recipe long text
    step by step procedure is highly appreciated
    thanks & regards
    siddhasrth

    Hi
    SAVE_TEXT
    SAVE_TEXT writes a text module back to the text file or the text memory, depending on the storage mode of the corresponding text object.
    You can use this module either to change existing texts or to create new texts. If you know for sure that the text is new, use the parameter INSERT to indicate this. The system then does not have to read the text first, which improves the performance of the function module.
    If the lines table passed with the function module is empty, the system deletes the text from the text file.
    Function call:
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING CLIENT = SY-MANDT
    HEADER = ?...
    INSERT = SPACE
    SAVEMODE_DIRECT = SPACE
    OWNER_SPECIFIED = SPACE
    IMPORTING FUNCTION =
    NEWHEADER =
    TABLES LINES = ?...
    EXCEPTIONS ID =
    LANGUAGE =
    NAME =
    check thi sample code
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    HEADER = t_header
    SAVEMODE_DIRECT = 'X'
    * OWNER_SPECIFIED = ' '
    * LOCAL_CAT = ' '
    * IMPORTING
    * FUNCTION =
    * NEWHEADER =
    TABLES
    LINES = t_long
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5
    Reward all helpfull answers
    Regards
    Pavan

  • How to use Function Module of Appraisal

    Hi,
    I want to use the standard Function Module for Appraisal like HRHAP_DOCUMENT_GET_DETAIL.
    But how to use it. What is the procedure to use standard function module.

    Hi,
    Goto SE37 and put the function module name and then execute it.
    Put the following parameters:
    MODE
    UI_MODE
    PLAN_VERSION
    S_APPRAISAL_ID
    ADMINISTRATOR
    S_DISPLAY_UI
    NO_ACTION_LOG
    Execute it. This will give you an idea of what data you will get from this function module.
    In order to use it in your code you would have to pass the import parameters depending upon your requirement and you will get your results in export parameters.
    Regards,
    Kanupriya
    Edited by: Kanupriya Madan on Jun 24, 2009 9:06 AM

  • How to use function module SAPGUI_SET_FUNCTIONCODE?

    Hi all,
    I understand that the function module SAPGUI_SET_FUNCTIONCODE is being used to manully trigger the PAI/PBO at the POV. However, I was not able to get it to even trigger anything. Need suggestion as of how to use this function module. I try to call it at the end of the POV but to no avail. Any help is greatly appreciated and rewarded.

    Hi,
    Afer POV control will not go to PBO until y pressed ENTER . for overcome this you need to set a dummy OKCODE. in the following way.
    CALL FUNCTION “SAPGUI_SET_FUNCTIONCODE”
    EXPORTING
    FUNCTIONCODE = “=”
    EXCEPTION
    FUNCTION_NOT_SUPPORTED = 1
    OTHERS = 2
    Here is the sample code
    PROCESS BEFORE OUTPUT.
      MODULES l201_blanklines.
      LOOP RK intdrad WITH CONTROL tab_x CURSOR tab_x-current_line.
        MODULES l201_init.
      FINAL LOOP.
    PROCESS AFTER INPUT.
      MODULES l201_new.
      LOOP RK intdrad.                                        
        CHAIN.
          FIELD equi equnr.
          MODULES l201_bear.
        FINAL CHAIN.
      FINAL LOOP.
      MODULES l201_end.
    Importantly
    PROCESS ON VALUE REQUEST.
      field EQUI EQUNR of modules ZZ_DMS_MULTIPLE_EQUIS.
    Importantly
    --End to screen Logic
    Modules ZZ_DMS_MULTIPLE_EQUIS
    CALL FUNCTION “F4IF_FIELD_VALUE_REQUEST”
      EXPORTING
        TABNAME = “EQUI”
        FIELDNAME = “EQUNR”
        SEARCHHELP = “EQUI”
        SHLPPARAM = “EQUNR”
        DYNPPROG = system-repid
        DYNPNR = system-dynnr
        DYNPROFIELD = “EQUI EQUNR”
        MULTIPLE_CHOICE = “X”
    TABLES
       RETURN_TAB = lt_return_tab
    EXCEPTION
       FIELD_NOT_FOUND = 1
       NO_HELP_FOR_FIELD = 2
       INCONSISTENT_HELP = 3
       NO_VALUES_FOUND = 4
       OTHERS = 5
    CALL FUNCTION “SAPGUI_SET_FUNCTIONCODE”
    EXPORTING
       FUNCTIONCODE = “=”
    EXCEPTION
       FUNCTION_NOT_SUPPORTED = 1
       OTHERS = 2
    CALL FUNCTION “DYNP_VALUES_UPDATE”
      EXPORTING
        DYNAME = system-repid
        DYNUMB = system-dynnr
      TABLES
        DYNPFIELDS = lt_dynpfields
    EXCEPTION
       INVALID_ABAPWORKAREA = 1
       INVALID_DYNPROFIELD = 2
       INVALID_DYNPRONAME = 3
       MORE INVALID_DYNPRONUMMER = 4
       INVALID_REQUEST = 5
       NO_FIELDDESCRIPTION = 6
       UNDEFIND_ERROR = 7
       OTHERS = 8
    Regards
    Sudheer

  • Explanation how to use rainflow module with rainflow counting method

    Hello, I want to know how to use the Rainflow Classification Module in dasylab 13.0, in particular with the rainflow counting method. I save the result matrix, but I don't understand how to read it. The help is quite useless, because it doesn't explain what there is in the matrix for this method. My target is to obtain a matrix with number of cycles catalogued by mean value and alternative value.
    Someone can help me?
    thanks

    Hi Davide,
    I'm not familiar with DasyLab software, but I found some helpful documentation on NI website.
    Try to look @ these KBs:
    How to Display a Rainflow Matrix in DASYLab
    Additional Information about the Rainflow Algorithms in DASYLab
    DASYLab Rainflow Module and Counting Methods
    DASYLab Support
    Best Regards.
    CLA_Cup

  • How to use configurator to lock down settings on the iPad?

    Hi All,
    I'm pretty new to the iPad / Configurator scene but have grasped the basics on how to deploy profiles etc using configurator. My question is this - I would like to be able to lock the 'settings' feature to not allow general user access without a passcode @ least, is this possible?
    In an educational environment i would really like this to be done because we all know how tech savvy students are now!
    Sorry if this has been asked before but after an hour or so of searching, i've given up
    Thanks,
    Dave

    The ipad is still a personal device. A knowledgeable student can delete configuration profiles hence all associate apps and settings. you will want a standard restore image to fix the device.
    Use VPP.  Select an MDM.  Read the google doc below.
    IT Resources -- ios & OS X -- This is a fantastic web page.  I like the education site over the business site.
    View documentation, video tutorials, and web pages to help IT professionals develop and deploy education solutions.
    http://www.apple.com/education/resources/information-technology.html
       business site is:
       http://www.apple.com/lae/ipad/business/resources/
    Excellent guide. See announcment post -- https://discussions.apple.com/thread/4256735?tstart=0
    https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?pli=1
    good tips for initial deployment:
    https://discussions.apple.com/message/18942350#18942350
    https://discussions.apple.com/thread/3804209?tstart=0
    Educational institutions in the USA can use the App Store Volume Purchase Program (VPP) to buy Apps.
    https://support.assistiveware.com/index.php?pg=kb.page&id=54
    There are three ownership models:
        *     Personal
        *     Institution
        *     Layered. combines personal & institution.
    Watch this apple video on layered ownership.  It education based, but that's OK.
    http://www.apple.com/education/resources/videos/#ios-layered-ownership

  • How to use one module pool program in another module pool programming?

    Hi
    I have one moodule pool program.
    In one of my screen i want to use some code which already developed in another module pool program.
    Is there any direct way for using one module pool programcode  in another module pool program.
    If there any approaches for this plz help me in this issue.

    Dear,
    If you want to use the code.
    first you can write your code in a subroutine in module pool program 1
    and then you can use it from module pool  program 2 by
    perform subroutine_name(program_name)
    using P_1
    changing C_1
    if you wan to use one module pool data into other module pool.
    so that is another requirement.

  • How to use function module K_ORDER_SRULE_ADD?

    Hi,
       Can you provide me the details on how to use K_ORDER_SRULE_ADD especially criteria parameter? If possible, attached wit sample code? Thanks.
    Best Regards,
    Chee Boon

    Hi,
    Try for a Where used List for this FM and see how a SAP Standard Prog using this or any Zprog might also be using this.
    Try this also:
    DATA: it_rules    TYPE srules_ext OCCURS 0.
      CALL FUNCTION 'K_SRULE_CREATE'
        EXPORTING
          i_objnr                   = caufvd_imp-objnr
       EXCEPTIONS
         rule_already_exists       = 1
         OTHERS                    = 2.
        srules-settl_type = 'FUL'.
        srules-percentage = 100.
        srules-amount     = 0.
        srules-costcenter  = caufvd_imp-kostl.
        APPEND srules.
      CALL FUNCTION 'K_ORDER_SRULE_ADD'
        EXPORTING
          object_no                  = caufvd_imp-objnr
       TABLES
         srules                     = srules
       EXCEPTIONS
         wrong_input                = 1
         error_occurred             = 2
         object_not_found           = 3
         activity_not_allowed       = 4
         OTHERS                     = 5.
      IF sy-subrc = 0.
        COMMIT WORK AND WAIT.
      ENDIF.

  • How does this configurator module work?

    Hello,
    I'm a PHP programmer that has some work that I need to do for
    a client.
    He owns an online tshirt store and wants to develop a
    configurator similar to the own seen here:
    http://propercloth.com/custom-mens-shirts.php#
    You can see as you select fabrics & components the image
    of the shirt on the left updates with the texturised version. My
    client already has a database of his materials ready to plug into
    something like this. I'm quite unfamilar with flash as I mainly do
    backend PHP and I was wondering if someone here might know how this
    flash module works or has some experience coding one so I can get
    my head around how this thing works.
    What is required to create or how would I go about creating:
    1. The base model tshirt
    2. Individual components such as pockets that can be
    shown/hidden
    3. The texturisation engine
    4. Populating the base model with a selected material
    (colour)
    Any advice much appreciated!
    Marv.

    There is no flash on that page. All of that animation is done
    using Javascript. It looks like its using elements from the jquery
    library. You can find out more about it at
    http://www.jquery.com. There are
    other libraries with similar functionality. I prefer mootools:
    http://mootools.net/ .

  • How to use/configure JAVA beans file in Forms10g?

    Hi!
    I'm using Forms10g. I need to use few java beans file in my forms. How do i call it and configure it. So, that i can access all the features of this file in Forms.
    Regards.
    Satyaki De.

    Hello,
    Java Beans Integration
    http://forms.pjc.bean.over-blog.com/article-4018331.html
    Hope it helps,
    Jose.

Maybe you are looking for

  • Connecting my iPod to my car stereo

    I am trying to find out the best way to connect my iPod to my car stereo. I know that there are lots of different ways. I have heard that if it is connected to a 3.5mm jack on the front of a car stereo and then into the headphone jack on the iPod it

  • I have Process chains as well as some jobs which run.Most  of the data is l

    Hi Experts, I have Process chains as well as some jobs which run.Most  of the data is loaded through custom ABAP extracts.Now where to check for these jobs and how to understand them.I know that  we can check for jobs in sm37.But how do u load data u

  • How to use exception for a Date Key Figure

    Hello All,                 I have the following requirement. 1. I have a Key Figure which is Date Type. 2. I need to color the cell to green if the it is filled with date otherwise leave it as it is. Please suggest how to overcome it. Thanks & Regard

  • I bought a book but It's saying that is not compatible with Ibook

    I bought a book in the store, but when i try to open it, just open a message saying that this archive is not compatible with Ibook, so It's not possible to open it. Does someone know what can I do?

  • 4.6C RBE usage

    Hi, I have a question about Reverse Business Engineering database (RBE)  usage for a client running 4.6C.  Do the statistics (dumped via t-code STAT or STAD) only record usage for dialog transactions (called through the command window or the user men