Populating Custom Containers in ALRTCATDEF

Hi,
I have developed an Alert Category and within it I have developed a custom container that I want to populate using the Data from Payload (Source Message). Any suggestion that How can i populate the that and so the some Data field from Payload will appear in Alert Message.
By the way I am not using BPM.
Thanks.
-Adrean.
Message was edited by:
        Adrean Hart

Hi,
As per the requirement, you need to raise an alert for mapping failure also right.
In this case I recommend you to go with the option of handling these errors in the mapping.
Now assuming the your Http receiver is sync. If it is a synchronous, you should get some response with a success. Based on this, you can raise an alert from the mapping using UDF or send an email with the receiver mail adapter.
For this entire logic of error and exception handling you need to do in the mapping. You will be having a mapping 1) for Send a req to HTTP Receiver
                                           2) Get the response and map to one more interface
And based on this response send a mail or trigger an alert.
This will work when this is of SYNC scenario. If it is not, as http adapter is not part of J2EE adapter engine, you can not raise from Adapter engine level, After SP14, you can raise an alert for the J2EE based adapter engine directly...
Hope this helps
Rgds,
Moorthy

Similar Messages

  • In screen 100 how to create 2 Custom containers

    hallow i do a alv with display to tables but i dont now how to do 2 custom containers in screen 100 . how can i do that thankes
    this is my declertion
    *& Module PBO OUTPUT
    text
    MODULE pbo OUTPUT.
    SET PF-STATUS 'MAIN100'.
    IF g_custom_container IS INITIAL.
    CREATE OBJECT g_custom_container
    EXPORTING container_name = g_container.
    CREATE OBJECT grid1
    EXPORTING i_parent = g_custom_container.
    gs_layout-grid_title = text-001.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = 'YHR_GET_EMP_COURSE_STR'
    is_layout = gs_layout
    is_variant = variant
    i_save = 'A'
    CHANGING
    it_outtab = itab_final.
    ENDIF.
    IF g_custom_container1 IS INITIAL.
    CREATE OBJECT g_custom_container1
    EXPORTING container_name = g_container1.
    CREATE OBJECT grid2
    EXPORTING i_parent = g_custom_container1.
    gs_layout-grid_title = text-002.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = 'YHR_GET_EMP_DONT_COURSE'
    is_layout = gs_layout1
    is_variant = variant1
    i_save = 'A'
    CHANGING
    it_outtab =  IT_FINAL.
    ENDIF.
    ENDMODULE. " PBO OUTPUT
    *& Module PAI INPUT
    text
    MODULE pai INPUT.
    CALL METHOD cl_gui_cfw=>dispatch.
    CASE ok_code.
    WHEN 'EXIT'.
    LEAVE TO SCREEN 0. "FOR LEAVE THE SCREEN TO THE SCREEN BEFORE
    PERFORM exit_program.
    WHEN OTHERS.
    ENDCASE.
    CLEAR ok_code.
    ENDMODULE. " PAI INPUT

    Hi,
    Go to screen painter and as you have created one custom container, define another one and adjust or place as you desire on the screen.
    Name them separately.
    While displaying the ALV you can decide on which container you want which ALVto be printed.
    Remember if the program is run in background then ALV output will not work, so you have to use WRITE statements to display the report.
    Regards
    Subramanian

  • BAPI_BUS2054_CREATE_MULTI - Populating custom fields

    Hi,
    I am using BAPI BAPI_BUS2054_CREATE_MULTI for creating WBS Elements.
    We have 18 custom fields at WBS element level.
    I am trying to populate the data for those 18 custom fields through EXTENSIONIN table parameter. 
    I am passing BAPI_TE_WBS_ELEMENT to the structure name & values to VALUEPART1. But after the BAPI call,
    its not creating any error or saving the data for WBS Element. 
    Note: i am passing WBS Element at starting position i.e., 0(24)  .  My custom fields starts from 25(3) position onwards.
    Below is the code how i am populating the data to the EXTENSIONIN tables.
    data: lwa_extin       TYPE bapiparex.
    MOVE 'BAPI_TE_WBS_ELEMENT' TO lwa_extin-structure.
      lwa_extin-valuepart1+0(24) = wa_data-posid.
      lwa_extin-valuepart1+25(3) = '1'.
      lwa_extin-valuepart1+28(4) = 'BSUB'.
      lwa_extin-valuepart1+32(4) = 'CONT'.
      lwa_extin-valuepart1+36(3) = '132'.
      lwa_extin-valuepart1+39(6) = 'AUTH'.
      lwa_extin-valuepart1+45(6) = '301'.
      lwa_extin-valuepart1+51(26) = '1'.
      lwa_extin-valuepart1+77(5) = '1'.
      lwa_extin-valuepart1+82(21) = '1'.
      lwa_extin-valuepart1+103(11) = '1'.
      lwa_extin-valuepart1+114(15) = 'IL'.
      lwa_extin-valuepart1+129(50) = '1'.
      lwa_extin-valuepart1+179(50) = '1'.
      lwa_extin-valuepart1+229(11) = '1'.
      lwa_extin-valuepart2+0(10) = 'C'.
      lwa_extin-valuepart2+10(8) = sy-datum.
      lwa_extin-valuepart2+18(8) = sy-datum.
      lwa_extin-valuepart2+26(4) = '1'.
    APPEND lwa_extin TO li_extin.
        CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
          EXPORTING
            i_project_definition = lwa_pspid
          TABLES
            it_wbs_element       = li_wbsele_data
            et_return            = li_return
            extensionin          = li_extin
            extensionout         = li_extout.
    Can any one help me about this issue.
    Regards,
    Kris.

    Hi,
    Are you using 'BAPI_TRANSACTION_COMMIT' after BAPI call?
    If not then try to use as below,
    data: lwa_extin TYPE bapiparex.
    MOVE 'BAPI_TE_WBS_ELEMENT' TO lwa_extin-structure.
    lwa_extin-valuepart1+0(24) = wa_data-posid.
    lwa_extin-valuepart1+25(3) = '1'.
    lwa_extin-valuepart1+28(4) = 'BSUB'.
    lwa_extin-valuepart1+32(4) = 'CONT'.
    lwa_extin-valuepart1+36(3) = '132'.
    lwa_extin-valuepart1+39(6) = 'AUTH'.
    lwa_extin-valuepart1+45(6) = '301'.
    lwa_extin-valuepart1+51(26) = '1'.
    lwa_extin-valuepart1+77(5) = '1'.
    lwa_extin-valuepart1+82(21) = '1'.
    lwa_extin-valuepart1+103(11) = '1'.
    lwa_extin-valuepart1+114(15) = 'IL'.
    lwa_extin-valuepart1+129(50) = '1'.
    lwa_extin-valuepart1+179(50) = '1'.
    lwa_extin-valuepart1+229(11) = '1'.
    lwa_extin-valuepart2+0(10) = 'C'.
    lwa_extin-valuepart2+10(8) = sy-datum.
    lwa_extin-valuepart2+18(8) = sy-datum.
    lwa_extin-valuepart2+26(4) = '1'.
    APPEND lwa_extin TO li_extin.
    CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    EXPORTING
    i_project_definition = lwa_pspid
    TABLES
    it_wbs_element = li_wbsele_data
    et_return = li_return
    extensionin = li_extin
    extensionout = li_extout.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT = 'X'.

  • Check in Similar not populating custom metadata value set by global rule

    I have created a global rule to set the default value for custom metadata field creation date as current system date.This rule is working fine for normal check in but when i am using check in similar functionality of ucm the creation date value is getting populated from original content metadata value instead of default value set by rule.Is there any way to populate creation date as default value set by rule even in the check in similar function.
    Thanks in advance!!!
    Edited by: 906120 on Jan 5, 2012 4:42 AM

    Check-in similar does not evaluate scripts in the "use defaultvalue" field, as it has to copy metadata values. However, you can add script to the "Is derived field" as well. Just don't use dprDefaultValue but dprDerivedValue=
    This script will be evaluated before check-in operation and any value contained in the metadata field will be overwritten with value defined by script.
    Regards,
    Boris

  • Populating custom fields

    I'd like to be able to populate a custom field with keyboard commands. This would be analagous to using option-1, etc., to add keywords to the Keyword field.
    My custom field is called 'Type', and the population consists of Tree, Palm, Patio Tree, Shrubs, Vines, Aquatics, Annuals. I want to assign keyboard shortcuts for each of these terms and have the term populate 'Type'.
    Is this even possible? I spend a fair amount of time with the Command Editor, but didn't see anything. Of course my fallback is to simply use keywords, but as I am already about a third through 5000 images, I'd like to continue.
    Thanks.

    The organizational uses are important.  Grouping like Keywords as children makes them much easier to find and use when using the Keywords HUD.  And being able to collapse your Keyword HUD into a manageable number of top-level categories (just like an outline) is helpful in many situations.  But the big advantage is this:
    Using a parent Keyword as a category puts an entry in the Filter HUD whenever any on of its children Keywords are assigned to an Image in the currently active container.  Thus you can filter any container easily using the Rule {"Keyword" "includes any of the following" "yourParentKeyword"}, and the filter will select all images that have a Keyword that is a child of "yourParentKeyword".  (This saves you having to troubleshoot the results when you forget to click "Vines" while hunting down and clicking "Tree, Palm, Patio Tree, Shrubs, Aquatics, Annuals".)  With a well-structured Keyword hierarchy, this can be extremely useful.  At its simplest, you could filter Photos view as {"Keyword" "does not include" "Type"} and immediately identify all Images to which you have not added a "type" Keyword.
    As a general practice, I promote specificity over concision.  In this case, you should, imho, avoid the un-specific label "Type" in favor of something that will always specify its meaning to any user, such as "Type of Plant".

  • User Profile Connector not populating AD containers

    Hi,
    Having timeout when trying to populate containers from AD.
    Here's the log from event viewer that appears after 6 minutes:
    Event code: 3001 
    Event message: The request has been aborted. 
    Event time: 5/18/2014 9:30:21 AM 
    Event time (UTC): 5/18/2014 6:30:21 AM 
    Event ID: 89b7b8125870479b80c9f5e303dc934d 
    Event sequence: 211 
    Event occurrence: 3 
    Event detail code: 0 
    Application information: 
        Application domain: /LM/W3SVC/963232686/ROOT-3-130448646668689523 
        Trust level: Full 
        Application Virtual Path: / 
        Application Path: C:\inetpub\wwwroot\wss\VirtualDirectories\*****\ 
        Machine name: ***** 
    Process information: 
        Process ID: 8916 
        Process name: w3wp.exe 
        Account name: *****\*****
    Exception information: 
        Exception type: HttpException 
        Exception message: Request timed out.
    Request information: 
        Request URL: http://centraadmin:xxxxx/_layouts/15/EditDSServer.aspx?ApplicationID={GUID}
        Request path: /_layouts/15/EditDSServer.aspx 
        User host address: xxx.xxx.xxx.xxx 
        User: *****\***** 
        Is authenticated: True 
        Authentication Type: NTLM 
        Thread account name: *****\***** 
    Thread information: 
        Thread ID: 103 
        Thread account name: *****\***** 
        Is impersonating: False 
        Stack trace: 
    Custom event details:
    I've seen some related posts so I've already increased:
    <httpRuntime executionTimeout= "3600 ">
    UPA proxy ImportConnAsyncTimeout = 1800
    UPA proxy LdapConnectionTimeout = 1800
    UPA FIMWebClientTimeOut = 1800000
    389 opened between SharePoint and DC
    I tried to get also from dedicated DC
    I can configure Sync directly from FIM Manager and I can see every OU in there.
    Any ideas?
    Thanks

    Hi Sergey,
    Thank you for sharing this with us, and it will help others who have met with this issue.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Error in populating Custom table entries records

    Hi,
    While uploading data from excel sheet  to one of the custom tables (around 4500 records at one go), fields get populated in respective fields. One of the fields is Equnr(Equiment number) in that table. When uploading with 10 character , when we check it in table it doesnt appear how ever when  give leading zeros are appended to the same it gives result. Check with the conversion exit input associated with the data type. Same is with the matnr field.
    filed in custom table EQUNR , data element equnr (Equipment Number) , char 18
    Regards
    Mohinder Singh Chauhan

    Hi dear,
    Take that particular field of NUMERIC type in your internal table and then try uploading and saving data.
    Hope this will hlp.
    Regards,
    Abhishak

  • ABAP query using logical database KDF is not populating custom fields

    Hi Experts ,
    I created two following queries
    1.       VENDORCATKDF – uses KDF logical database
    2.       VENDORCATLFA1 – uses table = LFA1
    I’m pulling the same information in both queries:
    ·         Vendor Number
    ·         Country
    ·         Vendor Name
    ·         Vendor Category  (custom fields added to LFA1)
    The results for the query that uses the logical database KDF is incorrect.  It doesn’t pull in the flag on the custom field LFA1-ZMRO.   Even though the logical database KDF is made up of the table LFA1 and has these fields. 
    Is there something that can be done – so that all of these “custom” category fields under LFA1 (such as LFA1-ZZMRO) – get pulled into queries – when we use the logical database KDF ?

    Hi,
    I have got the error removed by ensuring that fields from one table are a part of one line ( taking help of ruler) only. But the underlying problem remains, the output is not ALV but List output.
    I do not think having additional fields in the query is reason for this.
    Is it bcoz iI am adjusting the output length of columns to ensure no hierarchical error ?
    Can we not have a query using LDB which is shown as SAP List?
    Regards,
    Garima.

  • Populating Customized fields in Sales Order Creation using BAPI

    Hi All,
    I have a requirement that, I need to populate 2 customized fields which are appedned in the VBAK tables through Append structure. I am using BAPI_SALESORDER_CREATEFROMDAT2 FM for creating it.
    Could anybody tell me how to send these 2 coustomized field values in this BAPI using EXTERNIN parameter.
    Regards
    Rajesh
    [email protected]

    Hi,
    To add data to custom fields there are two appraoches.
    <b>1)</b>Using the <b>EXTENSIONIN</b> in the Tables option in the FM <b>BAPI_SALESORDER_CREATEFROMDAT2</b>
    Check the Documentation for the same,
    <b>Customer Enhancement for VBAK, VBAP, VBEP</b>
    <i>Description</i>
    You can use this parameter to transfer user-specific enhancments to a BAPI. The customer has to complete the EXTENSION structure and the system automatically continues processing it. If you have not defined any user-specific fields, then you can transfer a blank EXTENSIONIN structure.
    <b>Technical information about Customer Enhancements</b>
    The following description uses an example to explain how to proceed with customer enhancements to the SD tables VBAK, VBKD, VBAP and VBEP.
    The customer has added their own fields to table VBAP using the INCLUDE structure CUTEST. This structure contains 2 fields:
    CFIELD1, CHAR 10
    CFIELD2, CHAR 3.
    The customer also requires that these two fields can be maintained with the BAPI.
    1. Maintain structure CUTEST in table VBAP
    2. Because the BAPIs work with checkboxes, you must also define a CUTESTX checkbox for the customer structure. It should be structured like this:
    Field name       Data element
    CFIELD1            CHAR1
    CFIELD2          CHAR1
    3. Define these customer structures in the structures VBAPKOZ und VBAPKOZX using INCLUDE or APPEND.
    4. Add the customer structures to the BAPE_VBAP and BAPE_VBAPX BAPI structures using the APPEND technique.
    5. Adjust the following structures for customer enhancements to table VBAK:
    a) VBAKKOZ
    b) VBAKKOZX
    c) BAPE_VBAK
    d) BAPE_VBAKX
    6. Adjust the following structures for customer enhancements to table VBEK:
    a) VBEPKOZ
    b) VBEPKOZX
    c) BAPE_VBEP
    d) BAPE_VBEPX
    7. Generally, the data should be added to the BAPI interface in the internal communication structures (VBAKKOM, and so on). There, you can process the data in the SD tables (VBAK, and so on).
    8. If the EXTENSIONIN parameter contains customer data, you must complete at least the key fields in the relevant standard parameters.
    <i>For example:</i>
    You want to change customer field VBAP-CFIELD2 for item 20 to "XYZ" in order 4711.
    The following entries are expected:
    Import:     BAPIVBELN-VBELN       = '0000004711'  Document number
                BAPISDHD1X-UPDATEFLAG = 'U'           UPDKZ for doc header
    Tables:     BAPISDITM-ITM_NUMBER  = '000020'      Item number
                BAPISDITMX-ITM_NUMBER = '000020'      Item number
              + BAPISDITMX-UPDATEFLAG = 'U'           UPDKZ for item
    You must complete the EXTENSION table as follows:
    STRUCTURE                          VALUEPART1       1234561234567890123
    BAPE_VBAP                       0000004711000020                 XYZ
    BAPE_VBAPX                      0000004711000020       X
    <b>Further Information</b>
    You can find more information in the BAPI programming guide in the chapter for enhancements to BAPIs.
    Notes
    You must complete the STRUCTURE field with the name of the relevant enhancement structure (BAPE_VBAK, BAPE_VBAP, BAPE_VBEP). You can complete the remaining fields with the append structures from the enhancement structures.
    At the moment, you can use the BAPI to store enhancements in the following structures:
    VBAK : An enhancement to header data requires an append structure to BAPE_VBAK and an enhancement to structure VBAKKOZ.
    VBAP : An enhancement to item data requires an append structure to BAPE_VBAP and an enhancment to structure VBAPKOZ.
    VBEP : An enhancement to schedule line data requires an append structure to BAPE_VBEP and an enhancement to structure VBEPKOZ.
    VBKD : If you are using an enhancement for header data, you must add an append structure to BAPE_VBAK. You also need to enhance structure VBAKKOZ. If it is for item data, you need to add an append structure to BAPE_VBAP. You must also enhance structure VBAPKOZ.
    If you also want to work with checkboxes, each X-structure must also contain an append structure.
    For example:
    A customer has created an order and wants to include the material long text (50 digits long).
    The EXTENSIONIN structure must be completed with BAPE_VBAP. Two fields have fixed definitions in this structure. These are in the VBAP host key (VBELN, POSNR). The customer sets up an append structure that contains field ZMAT50.
    Because the VBELN is normally blank when you create an order, the data can look like this:
    STRUCTURE   |BAPE_VBAP
    <b>2)</b> Create the Sales Document using the FM and when successfully craeted you will get the Sales Document No in the Export parameter <b>SALESDOCUMENT</b>.
    After its created and Committed using <b>BAPI_TRANSACTION_COMMIT</b> , do a <b>BDC</b> recording for the same to (<b>VA02</b> Change Sales Order) update the fields only and save the document.
    Regards,
    AS

  • BADI  ME_GUI_PO_CUST not populating custom fields

    Hi!
        I've created my custom fields in the Line item level for ME21n transaction. The custom fields are in the include structure CL_EKPODB for EKPO. I'm unable to populate my custom fields. Help needed.
        My screen fields are named EKPO-ZZSTREET ,EKPO-ZZCITY etc.  
    Thanks
    Shubha!

    Hi Shubha
          You have to set the mode ( editable / display only etc ) in method FIELDSELECTION_ITEM of BADI ME_PROCESS_PO_CUST to populate custom fields in  ME_GUI_PO_CUST.
    By default system will take display mode. So u can your customer field in Me23n.
    Regards
    Jeevi

  • Populating custom field in an existing sap query

    HI,
    I am making changes to existing query . Query already had a qty field, now I need to display the % of qty delivered for every
    vendor  as a subtotal text for every vendor.
    I added the custom field to query and can display it as subtotal text. But I am not able to populate the value into it.
    Because, When I sort by Qty and sum by Qty, I am getting value. Now I need to divide the sum of qty / number of items, which i dont get until I display the output, So my subtotal text field is always zero.
    I
    I debugged the program generated by query, it is using select--endselect and putting in %dbtab(which is not defined in query) .
    To get the final value, i cannot change standard code generated from Query/Infoset and add teh LOOP ..ENDLOOP and make At new logic for vendor.
    Any suggestion on calculating the % of delivered qty,..
    Thanks

    if your query is based on an infoset, you just have to put the formula in code of infoset

  • Populating custom om infotype

    hi all,
    i have made a custom <b>org management</b> infotype (name starting with 9).
    Can i use any standard function module to read it.Like we have
    HR_read_infotype to read pa infotype ..do we have any srandard function module to read custom om infotype...

    If you have created the infotype using the standard SAP tools ( Transaction PPCI for OM infotypes) you should be able to use all standard function modules/class methods etc.

  • Populating Custom Field in T005

    Hi All,
    I have a question... I recently appended a custom field in table T005 (countries table) (under ZAT005 structure).
    So I want to popualte this field... How do I expose for edit? I don't want to do SE11 edit mode... and I was hoping some way I can do it thru SPRO under countries section. That way, I can made modification on country all at once.
    But I don't know how to add my field to those SPRO screens. Ideas anyone?
    Charlie

    Hi,
    I believe the only option is to get the access key for the view V_T005 which has the table maintenance..
    Then go to the change mode and re-generate the table maintenance..
    But the danger in doing this is you might loose the screen layout of the detail screen...Meaning arrangement of the fields..
    How often are you going to change this data...It is just master data right...
    Also I would prefer to have a custom view to maintain this data...
                                          OR
    Another Idea...You can use the SM30 events to trigger a popup with a input field when they save the data..Then update T005 in the custom field with the value given in the popup.
    Thanks,
    Naren

  • Populating custom tables via Table Events.

    Hi  ,
    I have a ztable having the following fields:
    MANDT
    FAREA
    REVID
    NAME
    EMAIL
    Out of this fields I need to populate the field REVID  and EMAIL from two standard table USR21 and ADR6.
    Like if I  enter user id and hit enter  tab, then the fields like  email address will automatically be fetched from given tables and populated
    I found that via tablemaintenance --> events this can be done.
    Can you please suggest as to how to proceed with the coding...do I have to use Select from those standard tables and then pass it to the ztable.
    Please help.
    Thanks,
    Suchi.

    I have created  a event via the table maintenance generator-environment events.
    I have used 05-- create new entry as the event code and inserted the following code :
    FORM zat_newentry.
      TYPES : BEGIN OF ty_requester,
              bname      TYPE usr21-bname ,
              persnumber TYPE usr21-persnumber,
              addrnumber TYPE usr21-addrnumber,
              END OF ty_requester,
              BEGIN OF ty_addreq,
              persnumber TYPE adr6-persnumber,
              addrnumber TYPE adr6-addrnumber,
              smtp_addr TYPE adr6-smtp_addr,
              END OF ty_addreq.
      DATA : i_requester TYPE STANDARD TABLE OF ty_requester WITH HEADER LINE,
             i_addreq TYPE STANDARD TABLE OF ty_addreq WITH HEADER LINE.
      SELECT bname
             persnumber
             addrnumber
             FROM usr21
        INTO TABLE i_requester
        WHERE bname = zinf_reviewer-rev.
      IF i_requester[] IS NOT INITIAL.
        SELECT persnumber
               addrnumber
               smtp_addr
               FROM adr6
               INTO TABLE i_addreq
               FOR ALL ENTRIES IN i_requester
               WHERE persnumber = i_requester-persnumber
               AND addrnumber = i_requester-addrnumber .
      ENDIF.
      zinf_reviewer-rev = i_requester-bname.
      zinf_reviewer-email = i_addreq-smtp_addr.
    endform.
    But while trying to create a new entry I am getting the error message saying : "An entry with the key already exists".
    Please suggest.

  • Populating custom foreign key using EIM Import

    Hi,
    This is regarding a requirement wherein we are trying to populate the custom foreign key in the siebel base table using the EIM import.
    The table being used are as .
    S_CL_PTCL_LS ----> having vanilla PRDINT_ID foreing key to S_PROD_INT
    S_CL_PTCL_LSXM--> Created custom colum x_prod_id as foreing key to S_PROD_INT
    using EIM_CL_PTCL_LS ---> Created mapping for the custom foreign key field to resolve the UK cols.(NAME,BU_ID,VENDR_OU_ID)
    When we are executing the EIM import PRDINT_ID column foreing key to S_PROD_INT is getting resolved properly; however the custom column x_prod_id as foreing key to S_PROD_INT in S_CL_PTCL_LSXM is not getting resolved.
    The data for the resolution is same for both the mappings.
    Can some let me know if it is possible to do such import for custom foreign keys/this import is only possible for the vanilla foreign key refrences.
    Warm Regards,
    Ashutosh

    Hi,
    I think the custom FK may be a mistake.
    PAR_ROW_ID is the foreign key from S_CL_PTCL_LSXM to S_CL_PTCL_LS. You don’t have to create your own FK to do something that Siebel provides OOTB.
    Please check that you really need the custom FK. I don't think you do. You should simply join to S_CL_PTCL_LS and then to S_PROD_INT. This is Siebel Tools 101 but I have seen this mistake many times.
    Robert
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com
    Edited by: Robert Ponder on Dec 27, 2010 8:48 AM
    Edited by: Robert Ponder on Dec 27, 2010 8:50 AM

Maybe you are looking for

  • Mac office crashes on opening since mavericks

    since upgrading to mavericks ... I now find mac office word, excel, power point, outlook all now crash on opening... wonderfull ! now what am I supposed to do ! have never ever upgraded osx and found key software such as this no longer works ! please

  • Custom screen in BBP_CUF_BADI

    Hi, I know that this topic was discuss a million time on the forum, but I still didn't get how to put my customer fields in customer screen. I append the structures as it's describe oss note 458591 and 672960 and use badi bbp_cuf_badi. Everything is

  • Can i retrieve all my iPhone pictures?

    Hello, I recently broke my iPhone 4s, however before it broke I backed it up to my laptop (windows7) and to iCloud.... My phone would not even turn on so I could not access anything on it, I now have a galaxy s4, and i really want my photos off my iP

  • Can Employees submit complaints electronically in ESS( Urgent)

    Hello, Could any one please answer this question, The client wants the Employees to submit their Grievance(complaints) electronically through ESS? Is any functionality available in ESS so that EE can enter complaints and send or do we need to customi

  • Discoverer Plus and Firewall : please help

    Hi Even after setting up gatekeeper, we are getting the follwoing error for Disocverer Plus: the link to the error message: http://img146.imageshack.us/img146/8568/pluserror260620061vh.jpg Can someone suggest anything? Thanks and regards, Aparna