Integration procedure-requesting few details

Hi,
The procedure for integration certification is given in this portal . i am soliciting few answers to these question, could somebody be kind enough to lead me.
1. do we have to be ready with an interface program before we approach the icc?
2.will the interface program be developed in association with the icc or can it be done independently  of icc?
3.are all the services offered by the icc mandatory or can we choose the services offered.(though sap provides services at all level of interace).
4.what is the process of assessment and certifying the interface which would lead to a certifiaction as apatner program.
thank you very much for your indulgence.
warm regards
phanidhar

Hi Phanidhar Varanasi,
here are a few answers for you:
1. do we have to be ready with an interface program before we approach the icc?
No, you do not need to have your application be ready for certification at the point you are getting in contact with us. It's ok if you have a clear view which interface you want to serve. This should be sufficient at this point.
2.will the interface program be developed in association with the icc or can it be done independently of icc?
Your application needs to be changed/enhanced to be able to work with our interface. So this work can only be done on your side. We will not program/code for your application.
3.are all the services offered by the icc mandatory or can we choose the services offered.(though sap provides services at all level of interace).
Well, our services are for example "Interface certification", "Consulting", "Integration Assessment" or or DPA (Developer package) offering. You can select which one you want to have. Was this what you asked for ?
4.what is the process of assessment and certifying the interface which would lead to a certifiaction as apatner program.
As a starting point you need to fill out the following form:
http://www.sap.com/partners/apply
Here please select Application Type: Interface Certification for doing a Certification. If you want to be a Software partner then select "Software Partner".
After having sent this form to us we will get in touch with you in regards of sending out the appropriate contracts to you.
If you want to learn more to Assessment an certification then please have a look at:
http://www.sdn.sap.com/sdn/icc.sdn?page=sap_integration_assessment.htm
and
http://www.sdn.sap.com/sdn/icc.sdn?page=sap_integration_certification_program.htm
Best regards,
  Juergen

Similar Messages

  • Request for detailed acts to upload Work center,  BOM, Routing data in LSMW

    Hello PP ANgels,
    Request for detailed actions to upload Work center/Resource,  BOM, Routing/Recipe data in LSMW.
    Thanks in advance

    Sanjay,
    In the forum I found that you had used some "drops", that require a password to view.
    In these forums, the only links I post are public (help.sap.com) and from SAP support (service.sap.com/support).  SAP Support is mostly available only to customers and partners of SAP.  If you meet these criteria, and need a login for the SAP support site, contact the license administrator for your company's SAP licence (this is usually a Basis person).  If you cannot locate this person in your company, contact Service Marketplace directly (service.sap.com/mp).  Alternatively you can contact your local SAP Sales office and speak to your account administrator.
    Maybe it would be a better idea to group all standard solutions in one place.
    I expect it will be so...in Nirvana.  Here, life still entails suffering.
    With respect to your detailed questions, I would have a hard time answering, I have never used recordings in LSMW to create work centers, I always use standard batch/direct input.  I suspect that the VGEXX items are the units of measure from CRHD, I suspect LARXX items are activities from CSSL, and I couldn't comment on FORXX items without doing some research.
    This is the SCM PP forum.  You might get more answers posting this in the ERP PP forum SAP ERP Manufacturing - Production Planning (SAP PP) , since work centers/routings/recipes/BOMs are more or less irrelevant in SCM.
    Sorry I couldn't be of more assistance.
    Best Regards,
    DB49

  • Free apps. on ipad keeps requesting credit details for purchase

    free apps. on ipad keeps requesting credit details for purchase?

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • Procedure in master/detail form

    NOTE: The basic purpose of this procedure is to return records from another table that match records that were just inserted in the detail table.
    My problem is that this procedure processes one set of values at a time. I would like to adapt this procedure to execute after processing a master/detail form that inserts multiple detail records. How and where in the form should I call this procedure to process all the detail records?
    INDT IN VARCHAR2,
    PRIM_REPORTER IN VARCHAR2,
    SEC_REPORTER IN VARCHAR2 DEFAULT NULL)
    as
    begin
    DECLARE
    cursor rpt_cursor is
    SELECT
    F_NAME,
    L_NAME,
    INDT,
    CO_DEFT,
    REPORTER,
    PROCD,
    PROCD_DATES
    FROM NYSPCR.RETURNED_TRANSCRIPTS
    WHERE NYSPCR.RETURNED_TRANSCRIPTS.INDT=INDT
    AND REPORTER=PRIM_REPORTER
    OR REPORTER=SEC_REPORTER;
    rpt_record rpt_cursor%ROWTYPE;
    BEGIN
    OPEN rpt_cursor;
    LOOP
    fetch rpt_cursor into rpt_record;
    exit when rpt_cursor%NOTFOUND;
    htp.p('Our records show that one or more of the transcripts you have just requested may already exist.<P>It appears that co-defendants '||rpt_record.F_NAME||' '|| rpt_record.L_NAME||' or '||rpt_record.CO_DEFT||' already had these minutes transcribed by Court Reporter '||rpt_record.REPORTER||' for this '||rpt_record.PROCD||'proceeding on these dates '||rpt_record.PROCD_DATES||'.<P> Get up off your ass and look for it!');
    end loop;
    end;
    end;

    UPDATE!!!!! I tried to amend the code to loop thru the detail records. Here it goes..feel free to jump in at any time.lol..
    // Set local variables to receive parameters being passed
    //from detail records
    declare
    INDTS VARCHAR2(15);
    PRIM_REPORTERS VARCHAR2(35);
    SEC_REPORTERS VARCHAR2(35);
    p_session portal30.wwa_api_module_session;
    i integer;
    rpt_record rpt_cursor%ROWTYPE;
    begin
    p_session := portal30.wwa_api_module_session.create_session
    ( p_module_id => 51078584518,
    p_version => 1
         i:=1;
    //Print first line of alert.
    htp.p('Our records show that one or more of the transcripts you have just requested may already exist.');
    //Loop through all details records to find any matches as long as INDTS is not null.
    while indts is not null LOOP
         INDTs:= p_session.get_value_as_varchar2
    p_block_name => 'DETAIL_BLOCK',
    p_attribute_name => 'A_INDT',
    p_index => i
    PRIM_REPORTERs:=p_session.get_value_as_varchar2
    p_block_name => 'DETAIL_BLOCK',
    p_attribute_name => 'A_PRIM_REPORTER',
    p_index =>i
         SEC_REPORTERs := p_session.get_value_as_varchar2
    p_block_name => 'DETAIL_BLOCK',
    p_attribute_name => 'A_SEC_REPORTER',
    p_index =>i
    cursor rpt_cursor is
    SELECT
    F_NAME,
    L_NAME,
    INDT,
    CO_DEFT,
    REPORTER,
    PROCD,
    PROCD_DATES
    FROM NYSPCR.RETURNED_TRANSCRIPTS
    WHERE NYSPCR.RETURNED_TRANSCRIPTS.INDT=INDTs
    AND REPORTER=PRIM_REPORTERs
    OR REPORTER=SEC_REPORTERs;
    OPEN rpt_cursor;
    LOOP
    fetch rpt_cursor into rpt_record;
    exit when rpt_cursor%NOTFOUND;<P>
    htp.p('It appears that co-defendants '||rpt_record.F_NAME||' '|| rpt_record.L_NAME||' or '||rpt_record.CO_DEFT||' already had these minutes transcribed by Court Reporter '||rpt_record.REPORTER||' for this '||rpt_record.PROCD||'proceeding on these date(s) '||rpt_record.PROCD_DATES||'.');
    i:=i+1;
    end loop;
    end;

  • PRICING PROCEDURE MM With detailed illustration

    i need  detailed illustrations of pricing procedures .  as simple as possible .
    waiting for your reply
    REGARDS
    Jagat

    Hi,
    1)First you have to create condition table which becomes condition record for your price determination process.
    2)Create access sequence by using the above created condition table which searches in sequence for price determination.
    3) Create condition type by copiing the existing one, if required, or use existing condition types.
    4)Create calculation schema, here also copy the existing one if required or you can use the existing one add your new condition type which is created previous step.
    5)Define schema group here you have to define schema group vendor which you have assign it in vendor master, create schema group purchase organisatoin. This schema group purchase organisation should be assigned to your purchase organisation. whenever you create Purchasing doc with the combination of this vendor & purchase system determines the price based on this.
    6) Define schema determination process, here assing that price determination process to schema purchase organisation & schema group vendor.
    For further details check on the IMG activity documentation for the same.
    Regards
    Ravi Shankar.

  • Sharepoint and SSRS integration Error Requested registry access is not allowed.

    I have integrated SSRS with sharepoint foundation 2010, it was running fine but suddenly its starts giving me error as -
    "An unexpected error occurred while connecting to the report server. Verify that the Reporting Services Service Application mapped to this web application is available OR the report server is available
    and configured for SharePoint Integrated mode. --> The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database. You must either restore a backup key or delete all encrypted content. --->
    Microsoft.ReportingServices.Library.ReportServerDisabledException: The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database. You must either restore a backup key or delete all encrypted
    content. ---> System.Security.SecurityException: Requested registry access is not allowed."
    Now i am not able to read reports or cant access all database options in sharepoint,it says
    registry access is not allowed
    I tried to reset encryption key and allowed all access to registry keys buts its giving same error .
    Please suggest me what should i do now, i stuck here...

    Hi Bhagyashri,
    From your description, there have two questions in the environment:
    "Requested registry access is not allowed" while access SharePoint sites
    and "The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database" while viewing reports
    For the first issue, the cause is the SharePoint web service account can't access some registry keys.
    For the second issue, the cause is that the report database was restored from another server, and the encryption key was not restored correctly.
    To fix the issue, please:
    Follow "solutions" in this article
    http://blogs.technet.com/b/spsforum/archive/2011/11/02/quick-solution-5-requested-registry-access-is-not-allowed.aspx to fix "Requested registry access is not allowed"
    Restore the encryption key again, or please delete the key and then reset every credential setting in SSRS data source connection
    Thanks,
    Jinchun Chen
    Jinchun Chen(JC)
    TechNet Community Support

  • Update Request User Details with updateRegistrationUserDetails

    Hi,
    I have the following scenario: The Self-Registration form is defined with the fields First Name, Middle Name, Last Name, Manager Login. When the request is created, based on the Manager Login, the other user's attributes are set according to the Manager's Attributes. So when the manager goes to approve the request, most of the user information are already set. To update the User Details in the request, I can call the updateRegistrationUserDetails of Request API.
    Problem: I can not update the fields other than those defined in the FormMetadata.Xml. So I have to add the fields and set them as optional but I don't want to show non required fields to the end-user. I wish to have those attributes as not visible in the self-request form. Then I can update the information using the API.
    Question: How to add fields to the User Details of the request and not show them in the self-request form?
    Thanks,

    As I've said, I could not update the request fields that were not declared in the FormMetadata.xml. You can try set them as not visible but I am not sure the visibile attribute works for the SelfRegistration form. If it is not a problem, you can show the fields and set them as optional true. In my exaple, the SelfReg form has a manager employee code field.
    Create an entity adapter and assign it to the Request object, pre-insert.
    1) create two variables: requestKey, requestObjecAction, managerEmpCode (in my example)
    2) test if the request object action is Create Entity.
    3) call the method to update the request. below is my example:
         // Updates the request with the information of manager: Manager Login,
         // Location, Department and Organization
         public String updateRequestWithManagerInfo(long requestKey, String managerEmpCode) {
              String result = JavaTaskBase.EXECUTION_ERROR;
              logger.debug("******** Starting updateRequestWithManagerInfo *************");
              logger.debug("requestKey: " + requestKey);
              logger.debug("managerEmpCode: " + managerEmpCode);
              try {
                   HashMap<String, String> filter = new HashMap<String, String>();
                   filter.put(JavaTaskBase.USR_UDF_EMPLOYEE_ID, managerEmpCode);
                   String[] columns = new String[] { JavaTaskBase.USER_KEY_FIELD,
                             JavaTaskBase.USER_LOGIN_FIELD, JavaTaskBase.USR_UDF_LOCATION,
                             JavaTaskBase.USR_UDF_HR_DEPARTMENT,
                             JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME };
                   logger.debug("Querying User by EmpCode...");
                   // Update Request Attributes: requestKey, ManagerId
                   tcResultSet resultSet = this.getUserOperations().findUsersFiltered(filter, columns);
                   logger.debug("tcResultSet.getTotaRowCount(): "+ resultSet.getTotalRowCount());
                   resultSet.goToRow(0);
                   String organizationName = resultSet.getStringValue(JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME);
                   String managerLogin = resultSet.getStringValue(JavaTaskBase.USER_LOGIN_FIELD);
                   String managerLocation = resultSet.getStringValue(JavaTaskBase.USR_UDF_LOCATION);
                   String managerDepto = resultSet.getStringValue(JavaTaskBase.USR_UDF_HR_DEPARTMENT);
                   String managerKey = resultSet.getStringValue(JavaTaskBase.USER_KEY_FIELD);
                   logger.debug("Manager Organization: " + organizationName);
                   logger.debug("Manager Login: " + managerLogin);
                   logger.debug("Manager Location: " + managerLocation);
                   logger.debug("Manager Department: " + managerDepto);
                   logger.debug("Manager Key: " + managerKey);
                   // Prepares the information to update the request
                   HashMap<String, String> values = new HashMap<String, String>();
                   values.put(JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME, organizationName);
                   values.put(JavaTaskBase.USR_UDF_LOCATION, managerLocation);
                   values.put(JavaTaskBase.USR_UDF_HR_DEPARTMENT, managerDepto);
                   values.put(JavaTaskBase.USER_MANAGER_LOGIN, managerLogin);
                   logger.debug("Updating Request Info...");
                   // Updates the request
                   this.getRequestOperations().updateRegistrationUserDetails(
                             requestKey, values);
                   logger.debug("Request Updated Successfulfy.");
                   result = managerKey;
              } catch (Exception ex) {
                   logger.error("Error in updateRequestWithManagerInfo method", ex);
                   ex.printStackTrace();
                   result = JavaTaskBase.EXECUTION_ERROR;
              return result;
    thanks,
    Renato.

  • CC&B and Meter Data Management Integration Usage Requests

    Hello.
    We investigating the following issue: Trying to create a Bill in CC&B with getting usage data from Meter Data Management using Usage Requests engine. Help pages of CC&B describe the big picture of Usage Requests and configuration overview. So this information is not enough for correct and complete adjustments. There is no any information about outbound and inbound XML messages formats.
    CC&B help contains link to the document: Oracle Utilities Customer Care and Billing - Meter Data Management Integration Implementation Guide, but our attempts of searching of this document was ineffectual.
    It's interesting to get any information about Usage Requests from CC&B to Meter Data Management or link to the document mentioned above.
    Thanks in advance!
    P.S. Our current setup of Usage Request gives the next log during bill segment generation (we are using jms queues and xsl transformation of outbound and inbound messages. So MDM sends a response, but something wrong in further processing on CC&B side). As a result we get a bill segment in Error state with remark "Usage Request for Bill Segment is not found.".
    Fragment from weblogic_current.log:
    SYSUSER - 318312-3794-1 2011-01-19 14:40:55,547 [Remote JVM:1 Thread 3] WARN (host.sql.CobolSQLParamMetaData) COBOL set the null indicator to false for SQL bind parameter xWIN-START-DT, but it sent a null value ' '; binding null
    SYSUSER - 318312-3794-1 2011-01-19 14:40:55,554 [Remote JVM:1 Thread 3] INFO (COBOL.CMPBBLLP) Invoking CMPBBILG
    SYSUSER - 318312-3794-1 2011-01-19 14:40:55,554 [Remote JVM:1 Thread 3] INFO (COBOL.CMPBBILG) CMPBBILG validate
    SYSUSER - 318312-3794-1 2011-01-19 14:40:55,572 [Remote JVM:1 Thread 3] INFO (COBOL.CMPBBILG) Get next Acct sa
    SYSUSER - 318312-3794-1 2011-01-19 14:40:55,579 [Remote JVM:1 Thread 3] INFO (COBOL.CMPBBILG) Acct Sa more
    SYSUSER - 318312-3794-1 2011-01-19 14:40:57,394 [Parent Reader:Thread-54] INFO (api.maintenanceObject.MaintenanceObjectLogHelper) (Server Message)
         Category: 11002
         Number: 12150
         Call Sequence:
         Program Name: Usage_CHandler
         Text: Transitioned from Pending to Awaiting Data Sync.
         Description:
         Table: null
         Field: null
    SYSUSER - 318312-3794-1 2011-01-19 14:40:58,089 [Parent Reader:Thread-54] INFO (api.maintenanceObject.MaintenanceObjectLogHelper) (Server Message)
         Category: 11002
         Number: 12150
         Call Sequence:
         Program Name: Usage_CHandler
         Text: Transitioned from Awaiting Data Sync to Send Request.
         Description:
         Table: null
         Field: null
    SYSUSER - 318312-3794-1 2011-01-19 14:41:03,720 [Parent Reader:Thread-54] INFO (support.context.CacheManager) Registering cache 'XAIOptionCache'
    SYSUSER - 318312-3794-1 2011-01-19 14:41:06,920 [Parent Reader:Thread-54] INFO (domain.integration.RealtimeOutboundMessage) sending Realtime Outbound message <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="urn:schemas-xmlsoap-org:envelope"><SOAP-ENV:Body><CM_UsageCalculation transactionType="READ" dateTimeTagFormat="CdxDateTime"><rate>ERES-1</rate><saId>123456789</saId><usageId>954617571747</usageId><scalarProcessing><billingOption>Y</billingOption><startDateTime>2010-06-09-12.00.00</startDateTime><endDateTime>2010-06-10-12.00.00</endDateTime></scalarProcessing></CM_UsageCalculation></SOAP-ENV:Body></SOAP-ENV:Envelope>
    SYSUSER - 318312-3794-1 2011-01-19 14:41:22,493 [Parent Reader:Thread-54] INFO (domain.integration.RealtimeOutboundMessage) Raw Response from External System is ID:325496.1295437282326.0
    SYSUSER - 318312-3794-1 2011-01-19 14:41:23,966 [Parent Reader:Thread-54] INFO (support.schema.BusinessObjectInfo) BusinessObject C1-NonCyclicalUsgReqOutMsg: Skipping audit calls while performing DEL on entity OutboundMessage_Id(899647019991), as there were no auditable changes
    SYSUSER - 318312-3794-1 2011-01-19 14:41:24,655 [Parent Reader:Thread-54] INFO (api.maintenanceObject.MaintenanceObjectLogHelper) (Server Message)
         Category: 11002
         Number: 12150
         Call Sequence:
         Program Name: Usage_CHandler
         Text: Transitioned from Send Request to Awaiting Bill Determinants.
         Description:
         Table: null
         Field: null
    SYSUSER - 318312-3794-1 2011-01-19 14:41:24,939 [Parent Reader:Thread-54] INFO (api.maintenanceObject.MaintenanceObjectLogHelper) (Server Message)
         Category: 11002
         Number: 12150
         Call Sequence:
         Program Name: Usage_CHandler
         Text: Transitioned from Awaiting Bill Determinants to Bill Determinants Received.
         Description:
         Table: null
         Field: null
    SYSUSER - 318312-3794-1 2011-01-19 14:41:25,892 [Remote JVM:1 Thread 3] WARN (host.sql.CobolSQLParamMetaData) COBOL set the null indicator to false for SQL bind parameter xWIN-START-DT, but it sent a null value ' '; binding null
    SYSUSER - 318312-3794-1 2011-01-19 14:41:25,932 [Remote JVM:1 Thread 3] INFO (COBOL.CMPBBILG) Get next Acct sa
    Edited by: Anton on 19.01.2011 1:56

    Did you find the document Oracle Utilities Customer Care and Billing - Meter Data Management Integration Implementation Guide?
    I searched on eDelivery and Oracle Support, but cannot find the document.

  • Transport request prompt details

    Whenever there is a modification to existing reports or new reports being created, SAP prompts for a request number to be captured. Apart from capturing the request number, I want to capture other details like technical person name, functional person name, plant, transaction code, etc. as such details will be very useful in drafting the charts like how many modifications / new reports made per plant, how many modifications / new reports done by a technical person, etc.
    Is there any userexit that is called when transport request pop-up screen comes up ? Any other ideas ?
    Please clarify.
    Regards,
    Tom Jerry.

    For the transport details, please check the tables E070 and E071.
    Just pass the <Program name >in the field E071-OBJ_NAME and get all the transport order details.
    and also check the table TRDIR for all reports and pass the TRDIR-UNAME is username where you can get the Reports done by the person.
    TRDIR for all reports and pass the TRDIR-CNAME is username where you can get the Reports changed  by the person.
    TFDIR where all the function module are stored
    DD03l where all tables are stored.
    Prabhudas

  • Using stored procedures in master / detail report?

    hi all,
    i've created stored procedures for when inserting records into my tables.
    when using it in my master, i created a pl/sql process and just call out my procedure passing all the item values... how do i do this on the detail report?
    thanks
    allen

    hi,
    i'm back.. :)
    i attempted to use the following pl/sql code in a pl/sql process.
    begin
      for i in 1..apex_application.g_f01.count
      loop
        apc_user_pkg.update_user_role ( p_user_role_id     => apex_application.g_f02(i)
                                       ,p_start_on         => apex_application.g_f05(i)
                                       ,p_end_on           => apex_application.g_f06(i)
                                       ,x_last_updated_on  => apex_application.g_f09(i)
                                       ,x_last_updated_by  => apex_application.g_f10(i) );
      end loop;
    end;however, it doesn't seem to be working properly.. it doesn't update the table.. after the page refreshes, the old data comes back and not the new one.
    what am i doing wrong?
    regards,
    allen

  • Module Business Processes (request for detailed website links)

    Hi,
    I'd like to learn more about the different Business processes inside all of the SAP modules. For instance, I'd like to know what Business Processes are included in each SAP Module, what they do, how they are used, what their specific objectives/outlines/uses are and etc.
    Please provide online links and documentation that can help me learn more about what each module is and does (in terms of the module specific business processes.)
    Any and all help will be greatly appreciated.

    Hello John,
    Take a look at this.
    https://websmp202.sap-ag.de/bestpractices
    Detailed information on all SAP Best Practices scenarios (Scenario Overview, Business Process Procedures, Installation Guides etc.) can be found in the SAP Help Portal (http://help.sap.com/)
    Cheers !

  • Webdynpro components integration procedure

    Hi, Any Body give me the suggestion, how to integrate the diffrent components into the one project.Like Each programmer creating their own project under project different webdynpro component created. Finally , to integrate all the component in one one project from different project. Plz give the solution how to integrate .
    My basic question is , what is the procedure to follow to integrate the webdynpro components in one project.

    If in the case you have not created the DCs and proceeded with simple web dynpro projects, you can copy individual components in single project. There you can use used webdynpro components concept and have data exchange using interface controller.
    A lot of efforts are required for this in case you modify the components, as you need to copy the inner components again and again!
    Ideally in case of team development you should use JDI. Please follow scenario 2+ for the same.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d2/4551421705be30e10000000a155106/frameset.htm
    regards

  • Automatically run integration procedure when new csv source file arrives

    Hello,
    I have some steps to integrate my data defined as steps in odi package. All data will be loaded from csv file, located in source directory. End users will have smb acces to this folder end they will able to place new csv (with valid, defined name) to this folder. So, odi should check periodically if new file arrived and if new file found - my packege should be executed. Or alternatively - package can run periodically and perform check if source file exists if so, data from it should be integrated.
    What is the best way to do this?

    I would do a package starting with an ODIWaitForFile step ;).
    You can find this tool in the toolbox on the left.

  • Metadata Integrator not displayin cms details

    Hi,
    I can successfully access  Impact And Lineage  from the DI Management Console, but all I can see on the left hand side pane are the repository and the datastores. CMS information is not being displayed.
    Nothing at all is displayed in the right hand side pane when clicking/hovering over any of the present objects in the left hand side pane.
    Installed are:
    DI 11.7
    BOE 11.5
    CMS and DI are installed on the same server and I can successfully configure Metadata Integrator by running the tool which creates the appropriate folder in the CMC. The collector runs successfully as well.
    Any help much appreciated.
    Regards,
    Regine

    Metadata Integrator can't run on BOE CMS, Program JobServer running on Unix/Linux
    you will have to configure the BOE CMS and Program Job Server on windows on the same machine where DI Metadata Integrator is installed
    The cmsCollector application is dependent on DeskI and Universe COM Interface which is not available on UNIX, hence the limitation
    its not documented in 11.7, if you have access to following link, then you can check for steps in Data Services Documentation
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi31211_ds_technical_manuals_en.pdf
    search for following
    Configuring Metadata Integrator in a distributed environment

  • Oracle 11i - Concurrent Request Set Details

    Hi,
    I would like to frame a query that extracts the concurrent request sets and the associated child requests. I am not sure of the data mapping.Can somebody help me with the query.
    Regards,
    Radhika.

    I would like to frame a query that extracts the concurrent request sets and the associated child requests. I am not sure of the data mapping.Can somebody help me with the query. https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_REQUEST_SETS&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • Can iTunes utilize more than one external hard drive at once?

    A couple of years ago we had the bright idea to get a mac mini with an external hard drive and load it up with movies and such, so when we wanted to watch a tv show or movie, we could just scroll through the titles and pick without having to deal wit

  • Payment Proposal Issue in SAP FICO-Account Payables

    Hi , I am getting issue in Payment Proposal When i am putting some of the values and genrating report for vendors in some of the currency then on doing simulation the complete list is coming in all currencies instead of one currency. How do i sort th

  • Why does my FaceTime and skype always hang up when someone try's to answer?

    EVer since yesterday my FaceTime Skype and ooovoo have been acting weird everytime I call someone on there it always hangs up right when they answer.

  • Mass change documents in Inbox

    Hi All, Is it possible to Mass "Complete" of Mass change of "Status" for the documents in the Inbox. Search all the documents based on the Prioirty is high and Choose all the documents at once and change the status to Inprocess. Felt such feature sho

  • Pictures Showing as White Boxes

    I upgraded from an iPhone 5c to an iPhone 6. On December 22nd when I restored my phone from my iCloud backup all of my photos showed up as white boxes. Since then some have shown up but most of them are still showing up as white boxes. It says downlo