Siebel BIP Integration Objec for Parent, Child and Grand Child

Hi,
I 'm trying to create a one report for displaying Parent, Child and Grand Child.
Service Request
- Quote
- Quote Item.
Successfully create the BIP Integration object and generated the xml file. problem here is when trying to include the fields in BIP desktop word, not able to see the grand child fields, could see only the parent and child fileds and for grand child only 'ListOfQuoteItem' text.
Could some one please let me know the reason for this behavoir and wherther BIP supports 3 levels.
Is there any Out of Box Siebel report showing parent, child and grandchild.
Thanks,
Ravi kanth

One Siebel Adapter Upsert operation should be sufficient to insert the parent and child. In the Integration object definition, you define the Template child instances with the Parent of Template. i.e
You define Template first as an Integration Component and then define
Template child instances to have a Parent as Template.
Thanks
Swarna

Similar Messages

  • SQL Server 2012 Management Studio:In the Database, how to print out or export the old 3 dbo Tables that were created manually and they have a relationship for 1 Parent table and 2 Child tables?How to handle this relationship in creating a new XML Schema?

    Hi all,
    Long time ago, I manually created a Database (APGriMMRP) and 3 Tables (dbo.Table_1_XYcoordinates, dbo.Table_2_Soil, and dbo.Table_3_Water) in my SQL Server 2012 Management Studio (SSMS2012). The dbo.Table_1_XYcoordinates has the following columns: file_id,
    Pt_ID, X, Y, Z, sample_id, Boring. The dbo.Table_2_Soil has the following columns: Boring, sample_date, sample_id, Unit, Arsenic, Chromium, Lead. The dbo.Table_3_Water has the following columns: Boring, sample_date, sample_id, Unit, Benzene, Ethylbenzene,
    Pyrene. The dbo.Table_1_XYcoordinates is a Parent Table. The dbo.Table_2_Soil and the dbo.Table_3_Water are 2 Child Tables. The sample_id is key link for the relationship between the Parent Table and the Child Tables.
    Problem #1) How can I print out or export these 3 dbo Tables?
    Problem #2) If I right-click on the dbo Table, I see "Start PowerShell" and click on it. I get the following error messages: Warning: Failed to load the 'SQLAS' extension: An exception occurred in SMO while trying to manage a service. 
    --> Failed to retrieve data for this request. --> Invalid class.  Warning: Could not obtain SQL Server Service information. An attemp to connect to WMI on 'NAB-WK-02657306' failed with the following error: An exception occurred in SMO while trying
    to manage a service. --> Failed to retrieve data for this request. --> Invalid class.  .... PS SQLSERVER:\SQL\NAB-WK-02657306\SQLEXPRESS\Databases\APGriMMRP\Table_1_XYcoordinates>   What causes this set of error messages? How can
    I get this problem fixed in my PC that is an end user of the Windows 7 LAN System? Note: I don't have the regular version of Microsoft Visual Studio 2012 in my PC. I just have the Microsoft 2012 Shell (Integrated) program in my PC.
    Problem #3: I plan to create an XML Schema Collection in the "APGriMMRP" database for the Parent Table and the Child Tables. How can I handle the relationship between the Parent Table and the Child Table in the XML Schema Collection?
    Problem #4: I plan to extract some results/data from the Parent Table and the Child Table by using XQuery. What kind of JOIN (Left or Right JOIN) should I use in the XQuerying?
    Please kindly help, answer my questions, and advise me how to resolve these 4 problems.
    Thanks in advance,
    Scott Chang    

    In the future, I would recommend you to post your questions one by one, and to the appropriate forum. Of your questions it is really only #3 that fits into this forum. (And that is the one I will not answer, because I have worked very little with XSD.)
    1) Not sure what you mean with "print" or "export", but when you right-click a database, you can select Tasks from the context menu and in this submenu you find "Export data".
    2) I don't know why you get that error, but any particular reason you want to run PowerShell?
    4) If you have tables, you query them with SQL, not XQuery. XQuery is when you query XML documents, but left and right joins are SQL things. There are no joins in XQuery.
    As for left/right join, notice that these two are equivalent:
    SELECT ...
    FROM   a LEFT JOIN b ON a.col = b.col
    SELECT ...
    FROM   b RIGHT JOIN a ON a.col = b.col
    But please never use RIGHT JOIN - it gives me a headache!
    There is nothing that says that you should use any of the other. In fact, if you are returning rows from parent and child, I would expect an inner join, unless you want to cater for parents without children.
    Here is an example where you can study the different join types and how they behave:
    CREATE TABLE apple (a int         NOT NULL PRIMARY KEY,
                        b varchar(23) NOT NULL)
    INSERT apple(a, b)
       VALUES(1, 'Granny Smith'),
             (2, 'Gloster'),
             (4, 'Ingrid-Marie'),
             (5, 'Milenga')
    CREATE TABLE orange(c int        NOT NULL PRIMARY KEY,
                        d varchar(23) NOT NULL)
    INSERT orange(c, d)
       VALUES(1, 'Agent'),
             (3, 'Netherlands'),
             (4, 'Revolution')
    SELECT a, b, c, d
    FROM   apple
    CROSS  JOIN orange
    SELECT a, b, c, d
    FROM   apple
    INNER  JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    LEFT   OUTER JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    RIGHT  OUTER JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    FULL OUTER JOIN orange ON apple.a = orange.c
    go
    DROP TABLE apple, orange
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Siebel - BIP Integration not working

    Hi,
    We are currently integrating Siebel 8.0.0.8 and BIP 10.1.3.4.1. Siebel - BIP Integration is not working. When we try to upload reports from Report Template Registration view, following error messages are displayed:
    [1] [0] Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308) (IDS_EAI_WS_OD_FAULT)
    [2] Object manager error: ([0] Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308) (IDS_EAI_WS_OD_FAULT))
    [3] Error (null) invoking method "(null)" for Business Service "(null)"
    In the XMLP log, following are the details for this transaction:
    EAITransport     EAITransportDebug     4     000000624c512bf8:0     2010-07-29 14:13:51     *** HTTP Transport Parameters:
    EAITransport     EAITransportDebug     4     000000624c512bf8:0     2010-07-29 14:13:51     Request URL = http://167.238.136.65:9705/xmlpserver/services/PublicReportService_v11
    EAITransport     EAITransportDebug     4     000000624c512bf8:0     2010-07-29 14:13:51     Request Method = POST
    EAITransportPerf     EAITransportPerf     5     000000624c512bf8:0     2010-07-29 14:13:51     Created Request Connection|0
    EAITransport     EAITransportGeneric     3     000000624c512bf8:0     2010-07-29 14:13:51     Sending Request
    EAITransport     EAITransportDebug     4     000000624c512bf8:0     2010-07-29 14:13:51     *** HTTP request Headers for Data Send Request:
    User-Agent: Mozilla/4.0
    Accept: text/*
    SOAPAction: ""
    Connection: close
    Content-Type: text/xml; charset=UTF-8
    EAITransport     EAITransportDebug     4     000000624c512bf8:0     2010-07-29 14:13:51     HTTP response Headers from Data Send request HTTP/1.1 500 Internal Server Error
    Any suggestions??

    Hi, I'm getting something very similar when trying to upload standard OR custom reports. I have an SR open with Oracle currently. I'll let you know what I find out. Does anyone else have a suggestion?
    ObjMgrLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(httptransport.cpp (1631)) SBL-EAI-04117: HTTP Request error during 'Submitting Data SendHTTP request': 'Status code - 500'
    ObjMgrLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(httptransport.cpp (981)) SBL-EAI-04117: HTTP Request error during 'Submitting Data Send HTTP request': 'Status code - 500'
    ObjMgrLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(soapbinding.cpp (564)) SBL-EAI-04304: Unknown Part ':oracle.apps.xdo.webservice.exception.OperationFailedException' for operation 'uploadReport' exists in SOAP message.
    ObjMgrBusServiceLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(outdisp.cpp (214)) SBL-EAI-04308: Operation 'uploadReport' of Web Service 'http://xmlns.oracle.com/oxp/service/v11/PublicReportService.PublicReportServiceService' at port 'PublicReportService_v11' failed with the following explanation: "oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::executeUploadReport Failure: Due to unable to create new Report as AbsolutePath [SiebelCRMReports/Quote - Standard/Quote - Standard.xdo] due to java.util.zip.ZipException: error in opening zip file".
    ObjMgrBusServiceLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(xmlpadaptersvc.cpp (1544)) SBL-EAI-04308: Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".
    ObjMgrBusServiceLog,Error,1,000002ee4c762608:0,2010-08-26 10:39:06,(xmlpdriversvc.cpp (567)) SBL-EAI-04308: Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".
    GenericLog,GenericError,1,000002ee4c762608:0,2010-08-26 10:39:06,Object manager error: ([0] Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308) (IDS_EAI_WS_OD_FAULT))
    GenericLog,GenericError,1,000002ee4c762608:0,2010-08-26 10:39:06,( (0) err=2818155 sys=2298068) SBL-OMS-00107: Object manager error: ([0] Operation '<?>' of Web Service '<?>.<?>' at port '<?>' failed with the following explanation: "<?>".(SBL-EAI-04308) (IDS_EAI_WS_OD_FAULT))
    GenericLog,GenericError,1,000002ee4c762608:0,2010-08-26 10:39:06,(bsvcmgr.cpp (1384) err=2818251 sys=0) SBL-OMS-00203: Error 2298068 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    GenericLog,GenericError,1,000002ee4c762608:0,2010-08-26 10:39:06,(bsvcmgr.cpp (1227) err=2818251 sys=0) SBL-OMS-00203: Error 2298068 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    GenericLog,GenericError,1,000002ee4c762608:0,2010-08-26 10:39:06,(smireq.cpp (425) err=2818251 sys=0) SBL-OMS-00203: Error 2298068 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    TaskConfig,TaskCfgParamError,1,000002ee4c762608:0,2010-08-26 10:39:06,***********Dumping Parameters for the current task (22020129) because of errors**********

  • Alternative for first-child and last-child

    Hi all,
    I am looking to style a ListView with rounded corners (similar to iOS), but so far, I have not been able to find a way to do this without first-child and last-child pseudoselectors, which are not supported in JavaFX, according to http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html.
    Simply setting rounded corners on a ListView causes the ListCells to pop out, unless I set rounded corners on them as well. But I only want to to this on the top and bottom child.
    Does anyone have a workaround for this ?

    Can't you solve it by setting a border on the top and the bottom of your listview?

  • How to assign ALV for parent node and child node that uses supply method.?

    HI Dear friends,
        I need to display header details ( VBAK ) and Item details ( VBAP ). I have created two node like HEADER_NODE inside this i have created ITEM_NODE for this item node i use supply function 'GET_ITEMS'  any way it is working only when crete two separate table and binding but when i come to work with ALV i am totally confused .. i have created two 'View Controller UI Elements'   when i try to map HEADER_NODE  it mapped properly but for ITEM_NODE it shows mapping already defined. return status message as 'Action Cancelled' . In result both ViewContainer shows only HEADER_NODE data only.
    How to achive ALV for  Parent, child node that uses supply function ? ?
    Thank you

    Delete Mapping is not enabled, that means there is no mapping done yet.
    I just tried what you are saying and the application works and i am able to map the header table and item table and also again i could map the tables any number of times.. i didn't get any such message, sorry i couldn't recreate the scenario. might be there is something wrong in the context.
    i just did it like this.
    Please also move this to Web DynPro Discussion, Hope that would be helpful.
    Message was edited by: Syed Ghulam Ali

  • How to avoid the selection of a Parent node and its child node at a time?

    Example:
    consider the below JTree.
    Parent1
    ---->Parent2
    -------->Child3
    Parent3
    ---->Parent4
    My requirement :
    Parent1 and Parent3 can be selected at a time(using ctrl keys)
    Parent2 and Parent4 can be selected at a time
    Parent1 and Parent2 should not allowed to select at a time.
    In general : A parent and any of its child should not be selected at a time.
    How to achieve this? Anyone please help me.

    Thanikai wrote:
    I am very sorry.Whatever for? It's a valid question.
    How do i implement a custom TreeSelectionModel?I would start by going through the source of DefaultTreeSelectionModel so see how the default selection is handled. Also probably check out JTree.EmptySelectionModel to see how selection is prevented.
    Which methods to override?Methods in the class you choose to extend, obviously. But before that you need to firm up certain design decisions: if a parent node is selected and the user attempts to select one of its child nodes, do you select the child and deselect the parent or do nothing/ and vice versa.
    etc.... may form the basis for a future, more specific question accompanied by a [_SSCCE_|http://mindprod.com/jgloss/sscce.html].
    luck, db

  • Question about siebel bip integration configuration

    Hi,
    I'm new to siebel enviornment, I installed siebel and try to configure bip integration part
    Step 1:
    I stoped siebel services, and then I copied the siebel srf file to siebel tools driectory and then imported pix files and compiled it
    and then I try to configure outbound service, deleted existing xmpl integration files and imported wsdl file and then i compiled. Now My quesiton is Before start the siebel service, should i copy compiled srf file to siebel server directory and start the server using by this srf ? and then configure inbound service

    Yes, you need to copy the compiled srf file to the objects/<language> folder of the Siebel Server.
    Check Doc ID 546999.1 on support.oracle.com to find further information about repositories and changes to the repository.
    Hope it helps,
    Wilson

  • Maintaining the authorizations for parent role and derived role

    Hi Experts,
    Kindly advice me the Pro and cons of the parent role and derived role.. below is the scenario
    Currently  we have created the 700 role in  our regionally organization and we want to dervie the roles for each country
    1 ) we want to do the Auth field (activity level) settings in parent role and Org levels  in the derived role  .
    2)  But one my collegue says do the default  Auth filed ( activity values) common to every country in the parent role and diff activity one in the derived role .
    please advice me wat will be the best scenario for mantaining the authorizations filed values like (activity level  one)

    I will try to answer both your queries here:
    "my collegue says they are some NON ORG values different from each country ..suggest us to maintain all the default values in Parent role and auth with diff values needs to be maintained in derived role (child role).. "
    The only set of values which should/can be different in a child role (when compared with its parent) will be the org level values. So if this filed is NON_ORG you will not be able to maintain it directly inside the child roles.....this is the basic principle of derived role conceptu2026 that the only item you will directly maintain in a child role are the org levels(which will come as u2018organisational levelsu2019 in the upper tab in the auth data of a role).
    All NON_ORG fields inside a child role is acquired from the parent role. You should never change the values of any such fields (non-org fields) in the child role. these changes will get lost the next time you run the parent child inheritance from u201Cgenerate derived roleu201D function in your parent role.
    Coming to the second question on how to run the program, you just need to enter the technical name of the field you want to convert (tech names like BUKRS, WERKS etc u2026 figure out the name of the concerned field you have in hand)u2026.executeu2026 you will that the field will now onwards appear as an org level value in all roles in the system and not just as a field inside the auth objectsu2026.I would suggest you take one field and try running it in ur dev or  sandbox..see how the field changes in your roles.... the change can always be reverted by using PFCG_ORGFIELD_delete. ... you will understand it better....
    Soumya

  • ADF,how to delete parent record and related child record without manual cod

    Hi All,
    I'm using 11g adf.
    I have one parent table PAR and two child table CHD1 , CHD2 respectively.
    I'm inserting values in three tables , making a form having add , delete and edit buttons.
    Issue when i want to delete a record from PAR table , it gives child table record exists . i have did manual coding to delete the child records with related to the selected parent table PAR.
    Is there any process in ADF to delete the child records with respective selected parent record with out manual coding.
    thanks in advance.

    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcentities.htm#BABHFJFJ
    John

  • Documentation on Integration Scenarios for BAS-PV and DES

    Hi,
    Is there any documentation on the Integration Scenarios for BAS Postal Validation, and Duplicate-Check and Error-Tolerant Search for ECC 5.0?
    What we have is only for R3 4.6, and the behavior of business partners for ECC 5.0 is very much different as compared to R3 4.6.
    Thanks!

    The newest release of the sharepoint kit called internally (ipoint) should work fine with java infoview. I haven't set this up my self and you may need to open an incident with support to verify if Edge supports the newest sharepoint kit.
    Regards,
    Tim

  • Integration Option for SharePoint 2007 and Edge?

    Does this support Edge 3.1?  I know that in the official documentation for the Sharepoint 2007 PIK it never said Edge was supported, but I see posts indicating people have gotten it to work with Java InfoView.
    However, is Edge 3.1 supported for the larger Integration Option for SP2007?  Also, I assume it would be only for Java InfoView since Edge utilizes a WACS vs. standard .NET SDK.
    Please advise.
    Edited by: Jay Riddle on Oct 6, 2009 12:14 AM

    The newest release of the sharepoint kit called internally (ipoint) should work fine with java infoview. I haven't set this up my self and you may need to open an incident with support to verify if Edge supports the newest sharepoint kit.
    Regards,
    Tim

  • Siebel-BIP Integration error

    Hi,
    I 'm trying to configure the BI Publisher with Siebel CRM.I did most of the stuff except setting up BI Publisher security.
    I logged into BIP using 'Administrator' and went to Admin->Security Configuration. I directly went to Security model section and set 3 proprties as per the document specified.
    Security model: Siebel Security
    Siebel Web Service End Point: http://10.151.101.201/eai_enu/start.swe? SWEExtSource=WebService&SWEextCmd=Execute
    Administraor username/pwd : sadmin/sadmin.
    Apart from above I have not given any thing under Local Super user credentilas not even checked this. Now when I restarted the service and tried to login using the same user 'Administrator', it is giving errormessage
    'The server cannot be used due to configuration error, please contact the Administrator. if you are the administrator please contact the BI Publisher user guide'
    So I have reverted back the xmlp-server-config.xml file to atleast successfully log into BIP. I even tried to uplaod the report from Siebel to BIP, but have no luck and recive the Siebel error messages
    Invalid BI Publisher Security Model settings (SBL-RPT-50532)
    Object Manger Error:[0] Invalid BI Publisher Security Model settings (SBL-RPT-50532)
    Error(null) invoking method "(null)" for business service"(null)"
    what I feel for the above errors might be not settingt the proper security model. Kindly let me know what are the exact properties that I need to set under BI Publisher security section.
    Thanks,
    Ravi

    Hi,
    I 'm trying to configure the BI Publisher with Siebel CRM.I did most of the stuff except setting up BI Publisher security.
    I logged into BIP using 'Administrator' and went to Admin->Security Configuration. I directly went to Security model section and set 3 proprties as per the document specified.
    Security model: Siebel Security
    Siebel Web Service End Point: http://10.151.101.201/eai_enu/start.swe? SWEExtSource=WebService&SWEextCmd=Execute
    Administraor username/pwd : sadmin/sadmin.
    Apart from above I have not given any thing under Local Super user credentilas not even checked this. Now when I restarted the service and tried to login using the same user 'Administrator', it is giving errormessage
    'The server cannot be used due to configuration error, please contact the Administrator. if you are the administrator please contact the BI Publisher user guide'
    So I have reverted back the xmlp-server-config.xml file to atleast successfully log into BIP. I even tried to uplaod the report from Siebel to BIP, but have no luck and recive the Siebel error messages
    Invalid BI Publisher Security Model settings (SBL-RPT-50532)
    Object Manger Error:[0] Invalid BI Publisher Security Model settings (SBL-RPT-50532)
    Error(null) invoking method "(null)" for business service"(null)"
    what I feel for the above errors might be not settingt the proper security model. Kindly let me know what are the exact properties that I need to set under BI Publisher security section.
    Thanks,
    Ravi

  • Search for all items belong to parent, child or grand child content type

    Hi,
    The goal is to get all tasks from various site collection for a given farm. I have about 7 content types and their parent content type is Task. However, the following query is only returning where a list is setup with only parent content type "Task".
    {searchTerms} ContentClass:STS_ListItem_Tasks AssignedTo:{User.Name} 
    If I have a list and Task is the only default content type then the data from this list shows up using above query. However, I have a list say "Workflow Tasks" and it has several content types (Tasks, summary Task, Workflow Task) then items from dont
    show up in the search result. Remember, the workflow task content type's parent is task (ctype=0x0108). 
    Please suggest.
    Thanks

    Hi,
    Thank you for your sharing! It will be beneficial to others in this forum who meet the same issue in the future.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to get Parent nodes and corresponding child nodes in BI Hierarchy

    Hi all,
    I have a standard function module 'RSNDI_SHIE_STRUCTURE_GET3'  to get child node if i pass parent node. But I need child nodes along with the provided parent node as I use this in a loop in BI.
    Thanks

    Could any one help me in this regards .
    Thanks in advance
    Regards,
    sri

  • Why can't I use my Mac Book pro for cashing checks like every one else uses their iPhone and iPad? I am a grandmother and in the past 4 years I have purchased 4 MacBook Pros and 1 iPad for my children and grand children.

    I would like to be able to use my MaBook Pro for cashing checks lie the I phone and I pad. Why isn't this feature included?

    This has nothing to do with Apple.  As BobTheFisherman indicated, your bank needs to create an App for the Mac to do this.  These types of applications tend to be limited to mobile devices as they are a bit easier to maneuver for taking photos.

Maybe you are looking for