Some questions on xml db content connector

As we know, Oracle XML DB Content Connector implements JSR-170 in XML DB 11g.
After reading the related document about XML DB Content Connector, I have some questions as follows.
1. Is XML DB Content Connector API available only for XML DB 11g? or can be used in xml db 10g?
2.The document said "You can find additional sample code in the following location:
$ORACLE_HOME/xdk/demo/jcr",
and where can I get the sample code if I haven't install oracle 11g?
Thanks

Please contact me at : [email protected] for further discussion.

Similar Messages

  • Questions about the ipod camera connector...

    Hi,
    i got some questions about the ipod camera connector.
    1)Is the camera connector compatible with the Sony camera DSC-P93A ?
    In fact, this camera got PTP protocol.
    PTP (Picture Transfer Protocol) Oui
    Marque PIM (Print Image Matching) Oui
    PictBridge™ Oui
    So, do the camera need to have the three following protocols to be compatible with the camera connector ?
    =>Mass Storage, PTP, and Type 4
    Or maybe does it need only one of it??
    2) Is it compatible with a USB memory card reader?
    Thank you

    Wel, if i've right understood what you said, my camera is compatible because it got PTP protocol ?
    That's weird, cause i wrote a mail to sony to ask them about the compatibility of my camera, but they answered that it wasn't. But of course, i'll prefer to believe you than them !

  • BDB XML + PHP, some questions

    Hello, nice to be there...
    I've got some questions...
    Now, im writing application in PHP and using the Berkeley DB XML.
    I wrote some code, but i cant find the documentation to using Berkeley DB XML in PHP.
    My code are look that, some comments to understanting...
    <?php
    // Version of BDBXML
    print(dbxml_version());
    echo "<br/>";
    $con_name="container.dbdbxml";
    // Initialize XmlManager
    $mgr = new XmlManager();
    if($mgr->existsContainer($con_name)) $mgr->removeContainer($con_name);
    * Container location: C:/Documents and Settings/UserName/
    $con = $mgr->createContainer($con_name);
    // Opening container
    $mgr->openContainer($con_name);
    // Adding XML documents
    $con->putDocument(1, "<base><element1>String text</element1><element2>Integer</element2></base>");
    $con->putDocument(2, "<base><element1>String text 2</element1><element2>Integer 2</element2></base>");
    // Iteriation adding documents
    $iter = 3;
    for($i=0;$i<20;$i++) {
    $con->putDocument($iter, "<base><element1>String text ".$iter."</element1><element2>Integer ".$iter."</element2></base>");
    ++$iter;
    // Documents the container
    $res = $con->getAllDocuments();
    $res->reset();
    // Couting the elements
    $count = $con->getNumDocuments(); echo "Numbers of count - documents: ".$count."<br/>";
    // Listing the resultset using getAllDocuments
    while($res->hasNext()) {
    $value = $res->next();
    $doc = $value->asDocument();
    print $doc->getName()." = ".$value->asString()."<br/>";
    // Listing the result set using query,
    $qc = $mgr->createQueryContext();
    $qc->setDefaultCollection($con_name);
    $query="collection(\"container.dbdbxml\")";
    $res2 = $mgr->query($query);
    // Size of result set
    $size = $res2->size(); echo "Size of resultset: ".$size."<br/>";
    $res2->reset();
    while($res2->hasNext()) {
    $value = $res2->next();
    $doc = $value->asDocument();
    print $doc->getName()." = ".$value->asString()."<br/>";
    ?>
    Now, I want to know those things:
    *1. Can I create the Container which autoincrement names the files? Example: putDocuments(AutoIncrementname,FileDocument);*
    Can I increment that in the container?
    *2. How I can create relation with containers?*
    For example:
    Container1 -> Document1 [  <xml id="1"><name>Something</name></xml>  ]
    Container2 -> ExtraDocument1 [ <base> <id>1</id> <names>Pre Name</names><relation> *" Here is relation to Container1 @ id "* </relation></base> ]
    *3. Where I can find the classes for using in PHP?*
    Thank You for answers and Really Sorry For My Bad English!
    Edited by: user12232307 on 2010-02-11 10:32

    Hi,
    I'm not using PHP, but probably some ideas would be helpful:
    1) In Java there is a XmlDocumentConfig class and its method setGenerateName(boolean). If you set it to true and provide a XmlDocumentConfig object to a putDocument() method, then DB XML will generate names for you with default prefix 'dbxml_' and the incremental numeric id (if I remember correctly), but the incremental numeric id is not guaranteed by DB XML, only that the document name will be an unique value (at least according to the documentation). You can change this prefix by providing a name of XmlDocument object that you are trying to put. Then the final name of a document will be "<your_doc_name>_id".
    2) It depends what you mean by relation? Why don't just use the name of a container?
    3) All that I was able to find by quick googling is http://www.oracle.com/technology/products/berkeley-db/pdf/building-php-applications-with-db-xml.pdf
    Vyacheslav

  • Some questions on whitespace and &

    Dear all,
    I have some questions on whitespace and & that need you kind help:
    1. Except /n /t /r and space, is there any characters that are whiteSpace characters?
    2. When parsing XML document, when the ignorableWhitespace() method is called? Will it be called from characters() ?
    e.g. Where the white space after <a> is called, and where is the white space between test1 and test 2 indied <b> is called?
    <a>
       <b>test1 test2</b>
    </a>  3. When the & should be escaped in a well-formed (or validated) XML file by replacing &?
    It should be excaped in any element content, such as <b>test1 & test2< /b> - except for <![CDATA[ section?
    It should NOT always be used in attributes? e.g. <a b="test1 & test2"/>  - has to do escaped by entity & - am I right?
    Thanks!
    Thanks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Thanks DrClap.
    >
    2. When parsing XML document, when the
    ignorableWhitespace() method is called? Will it be
    called from characters() ?It will be called when the document has a DTD and the
    parser is a validating one that is actually
    validating, when the parser sees whitespace that is
    not part of a DTD element. It will not be called from
    characters() because that is a method that you write.I wrote a contentHandler and using Xerces parser to parse an XML document. When I set validating feature to false, I found that for:
    <a>
       <b>test1 test2</b></a>The white space between <a> and <b> (including newline) is actually called from characters(), not in ignorableWhitespace(). So does this mean that if validating - white space is always called from ignorableWhitespace(), and if not validating, if it is always called from characters()?
    >
    3. When the & should be escaped in a well-formed(or
    validated) XML file by replacing &? The XML Recommendation says "The ampersand character
    (&) and the left angle bracket (<) may appear
    in their literal form only when used as markup
    delimiters, or within a comment, a processing
    instruction, or a CDATA section. If they are needed
    elsewhere, they must be escaped using either numeric
    character references or the strings "&" and
    "<" respectively."So in this sense, both & in <b>test1 & test2< /b> and <a b="test1 & test2"/> is illegal unless replacing them by & - right? What does the markup delimiters mena in above XML Recommendation ? Example?
    Thanks!

  • Some question for Sun Java System

    Dear all:
    I use Sun Java System We Server 7.0 for my project.
    But I have some question on SJSWS 7.0
    My server runtime information
    1. OS is RedHat Enterprise 3
    2. memory: 2G
    3. SJSWS version: 7.0 preview 3
    My questions
    Q1. The speed that download image is slower than the speed that run JSP page . The image's size to smaller than 5 KB. Is it possible to speed up download image
    Q2. My machine has 2GB memory, The system use swap area always. I think it isn't enough of SJSWS 7.0. How much memory size that SJSWS 7.0?
    Many thank for everybody

    first off, please try the Update 1 release in stead of technology preview releases: http://www.sun.com/download/products.xml?id=467713d6
    Q1> So I want to ask it is possible to display image and text at the same time like use Tomcat ?
    there is nothing in the server end (whether it's Tomcat or any other web server) that affects how the content is displayed on the browser.
    Q2>I detect The ram was used over 800M~1G by SJSWS7. My website has 80~150 user in workinghour
    Are you seeing Web Server process measuring so much memory?
    Q3> Is it possible that the admin server use SJSWS7U1 and some or all of node use SJSWS preview 3, because the server is running on line, I can't stop them for update server
    No - you want to switch to U1 anyway, since it's a released version (and is absolutely FREE for production use).

  • Questions about database application tables connector

    Hi all,
    I need to manage with OIM several databases (each one with its custom tables).
    Also, one of them will be my trusted target on the initial load of users. The structure of our tables is not similar to the included in the example.
    The documentation explains how the OraAppX.xml could be modified but it doesn't speak about relations with "DBTable_nonTrusted.xml" and/or "DBTable_trusted.xml" For example, if I don't have a column called USR_COMM_LANG, could I replace this column name for another that I have in my database ? And what about the references on the "DBTable_nonTrusted.xml" file. Connector doc doesn't explain how references to that field (USR_COMM_LANG---xel_usr_comm_lang) are managed by the connector and if the normal working of the connector could be affected if the name of a variable is changed in the xml conf file.
    It could be that adapters of this connector were hardcoded with the referece to xel_usr_comm_lang (???) .
    The connector documentation includes a section titled "Adding Custom Database Columns for Provisioning and Reconciliation". The first impression reading this document is that it is possible to extend the predefined table rather than create and define a new structure of table.
    Has anyone rebuilt the "DBTable_nonTrusted.xml", "DBTable_trusted.xml" and "OraAppX.xml" files changing all default variables in order to manage a customized table? .
    Many thanks in advance,
    Claudia

    Hi Claudia,
    1) Yes, you must replace the column names in the "column" tag on your XML file for the column names that you have in your database tables. Also, remember that you need to configure the other parameters (like data_type, data_typ_size, etc) according to your database table.
    2) The "xel_data_source" parameter is the attribute name that will be recognized by the OIM and they can be mapped to a form field (UD_DBAPP_XXXX) in your process definition in OIM Design Console.
    3) You can customize your Database Application Tables connector for provisioning as you wish, but some issues exists. In the Known Issues section of the documentation you can see that this connector doesn't work for more than two tables.
    4) To customize your Database Application Tables for Trusted Recon, there are other restrictions because OIM users have some required fields that must be filled to create a user successfully.
    Hope that helps, and please let me know if you have more questions.
    Regards.

  • Questions on managing iTunes content and devices?

    I've been a subpar iTunes user for several years now and I figured it was time that I just started asking some questions in order to get help. I love all my different iOS devices, but at times it seems that it's extremely difficult to manage content amongst the devices as well as my different computers (I use a PC for personal use and a Macbook for work.) My wife also has her own iOS device (Which we just use my AppleID on to keep all purchases under a single account) and a PC. So it seems like a constant juggling act to keep my content properly managed.
    The new iCloud stuff looks like a wonderful step in the right direction for helping manage content on my different devices, but I'm still a little curious about the best way to go about storing, sharing, and accessing content. So all that being said, here's my current setup and questions.
    First of all, I have my iTunes Media Folder on set to save everything to a Network Attached Storage I have at my home. This is the version of iTunes that I run off of my PC, which I guess I would say is my primary source of iTunes usage and how I generally choose to manage my content and move things to and from my iOS devices. Everything works out pretty well until I try and manage my content on any other computer.
    Creating a consistent storage location on a NAS
    My first basic question is, "Is it possible to have multiple versions of iTunes on different computers point to the same Media Folder?" If I could have all of my iTunes folders work off the same Media Folder that would probably help cut down on the confusion. However, I'm not exactly sure if this is just a matter of giving them all the same path to use or if there's additional permissions and things that must be setup. Also, what happens if I decide to purchase content through iTunes and I'm not connected to my home network, so the content cannot be saved to my NAS? Does it save to a default location that I can just later move to my NAS?
    Home Sharing
    What exactly is "Home Sharing"? I've read a little bit about it but I'm not 100% sure what it actually gets me since I already have a NAS. Is this what I need for setting up multiple computers to share the same Media Folder? Do I need this at all since my data is located on a central NAS on our home network?
    Syncing devices from multiple computers
    One of the biggest headaches I get with trying to manage content across multiple computers and devices is that I have to use one specific computer to Sync and Manage content on a device. For example, I have my iPhone synced to iTunes on my PC so I can edit and manage music on that device from my PC. But if I'm at work on my Macbook and decide I want to make some changes to Music I have there, then I have to sync my device to the Macbook, effectively wiping all the current content on my phone. Is there no way around this?
    iCloud Questions
    I have content that I've purchased on my iPhone or iPad and want to download it from the cloud to my PC or Macbook, or my wife's computer. Do I have to "repurchase" this content in order to do that, or does it just download directly for free since I've already purchased it before?
    I apologize if any of these are "silly" questions. I've tried to read up on this stuff but I still have difficulty completely understanding it.

    I've been a subpar iTunes user for several years now and I figured it was time that I just started asking some questions in order to get help. I love all my different iOS devices, but at times it seems that it's extremely difficult to manage content amongst the devices as well as my different computers (I use a PC for personal use and a Macbook for work.) My wife also has her own iOS device (Which we just use my AppleID on to keep all purchases under a single account) and a PC. So it seems like a constant juggling act to keep my content properly managed.
    The new iCloud stuff looks like a wonderful step in the right direction for helping manage content on my different devices, but I'm still a little curious about the best way to go about storing, sharing, and accessing content. So all that being said, here's my current setup and questions.
    First of all, I have my iTunes Media Folder on set to save everything to a Network Attached Storage I have at my home. This is the version of iTunes that I run off of my PC, which I guess I would say is my primary source of iTunes usage and how I generally choose to manage my content and move things to and from my iOS devices. Everything works out pretty well until I try and manage my content on any other computer.
    Creating a consistent storage location on a NAS
    My first basic question is, "Is it possible to have multiple versions of iTunes on different computers point to the same Media Folder?" If I could have all of my iTunes folders work off the same Media Folder that would probably help cut down on the confusion. However, I'm not exactly sure if this is just a matter of giving them all the same path to use or if there's additional permissions and things that must be setup. Also, what happens if I decide to purchase content through iTunes and I'm not connected to my home network, so the content cannot be saved to my NAS? Does it save to a default location that I can just later move to my NAS?
    Home Sharing
    What exactly is "Home Sharing"? I've read a little bit about it but I'm not 100% sure what it actually gets me since I already have a NAS. Is this what I need for setting up multiple computers to share the same Media Folder? Do I need this at all since my data is located on a central NAS on our home network?
    Syncing devices from multiple computers
    One of the biggest headaches I get with trying to manage content across multiple computers and devices is that I have to use one specific computer to Sync and Manage content on a device. For example, I have my iPhone synced to iTunes on my PC so I can edit and manage music on that device from my PC. But if I'm at work on my Macbook and decide I want to make some changes to Music I have there, then I have to sync my device to the Macbook, effectively wiping all the current content on my phone. Is there no way around this?
    iCloud Questions
    I have content that I've purchased on my iPhone or iPad and want to download it from the cloud to my PC or Macbook, or my wife's computer. Do I have to "repurchase" this content in order to do that, or does it just download directly for free since I've already purchased it before?
    I apologize if any of these are "silly" questions. I've tried to read up on this stuff but I still have difficulty completely understanding it.

  • Some Questions on Adobe PDF Forms

    Hi,
    I have some questions on Adobe Forms development (especially Adobe Forms in ABAP)
    1)     In a form interface, in the Code Initialization can we use Object Oriented Syntaxes such as class method calls, etc?
    2)     Can we declare Global Data variables with reference to Class References / Interfaces
    3)     Can we use the latest ECC 6.0 enhancement framework to add code in the standard form interface to enhance / enrich some logic within the form? This is to avoid copying the form interface into a Z in order to enrich the form via coding?
    Please let me know if this is possible at all and how
    Will award points
    Thanking You in advance
    Regards,
    Aditya

    That is possible of course. You should use the PDFObject API for that requirements.
    1. define a xml schema with all data given by SAP system.
    2. create a form template which uses this schema as data connection
    3. implement a java application (i.e. J2EE application) which:
    - gets the data from SAP system and generates some pdf files (using PDFObject API)
    - reads pdf files back to xml and submits the data to a BAPI
    Regards
    Sebastian

  • Some questions on SAP DMS

    Hello
    some questions on SAP DMS:-
    - can versions of same document be shown graphically. ?
    - can links be created for documents. can we make sure that links are not broken when document is moved ?(links to document on 1st location shall not be broken)
    - is there a notification mechanism(user can recieve e-mail when document gets changed)
    - is there a review mechanism, before doc. is archived.(sort life cycle)
    Thanks

    Hi Shovon,
    1. can versions of same document be shown graphically?
    You can display all existing versions of a document info record by using the menu 'Extras' >> 'Versions'. Then you will see all existing document version for this specific document number. Further you will see which is the current version at the moment.
    2. can links be created for documents. can we make sure that links are not broken when document is moved ?(links to document on 1st location shall not be broken)
    I'm not quite sure what you mean by links to documents. If you mean linking document info records together, I can confirm that this works also in DMS. You can maintain the object DRAW for object links in the customizing and then you will be able to link one document info record to another. The data for all document info records is stored in table DRAW.
    If you are talking about originals which are linked to document info records, please note that if you check in an original the system creates a unique LOIO- and PHIO-ID which is stored in the Content Server and in the database tables DMS_DOC2LOIO and DMS_PHIO2FILE. But there are also different reports to migrate original data from one content Server to another (e.g. DMS_RELOCATE_CONTENT).
    3. Is there a notification mechanism(user can recieve e-mail when document gets changed)
    Yes you can activate an event type linkage for object
    DRAW     CHANGED     DOKST
    DRAW     CHANGED     DWNAM
    in transaction SWE2. Here you just have to set the flag for 'Type linkage' (linkage activated). Then everytime the document is changed a notification is sent to the entered USER of this document info records.
    4. Is there a review mechanism, before doc. is archived.(sort life cycle)
    Normally there is no special lifecycle. You can control this by maintaining a released status and if there are more versions always version with the release status is the current one. But there is no specific date when the document info record expires or something like that.
    Best regards,
    Christoph
    P.S.: Please reward points for useful information.

  • Some questions on versioning and synchronizing metadata

    Hy all!
    I am quite new to warehousing and Oracle Warehouse Builder, and so i would have some questions regarding on some common issues. I would appriciate if you guys would who have experience in this domain to share some good practice knowledge :)
    I am using OWB 10.2
    So first of all i would like to know if you have some proposal of the way of versioning control and synchronizing projects between team memebers when working on a bigger project, team memebers that don't work on the same repository (cause i saw that OWB has an integrated multiuser support for handeling object locks and user sessions).
    I saw that a way of migrating data from one place to a nother is using the import/export options integrated in OWB. This creates mdl files wich are some kind of "dumps" of the metadata informations, but the thing with these mdl files wich i don't think is a good way to synchronize is that first of all the .mdx and .xml files contained in the .mdl (wich is kind of a zip) contains many informations in it (like creation date, some timestamps, etc) wich are always updated when exporting, and if synchronizing these files maybee using CVS, we always will get differences between the files alltough they would contain the same thing, only timestamps changed.
    Then a nother issue with this, is that we could have 2 alternatives: dump the whole project, wich is odd to have to synchronize a single file between users, especialy on a big project, then the orher way would be doing for each object from the project (each mapping, each table, etc) an separate .mdl filem then to synchronize each file of each object, wich will be unefficient on reimporting each file in part.
    So please if you can share the way you work on a big project with many implementers with OWB, i would really appriciate.
    A nother thing i would like to know is: is there a way to generate from an existing project (like one created with OWB) the OMB commands dump (maybee in a tcl script)? Cause i saw that the way the exeprienced users implement warehousing is using TCL with OMB language. I downloaded the example from oracle for warehouse project, and i saw that is entirely made from tcl scripts (so no mdl file involved). And this i think would be nice, to have the OMB commands generated from an existing projects.
    I see this OWB projects like a database wich can be built up from only OMB commands and OWB a graphical tool to do this (same as constructing a database only from DDL commands or using SQL developer to do this), this is why i am asking about a way of dumping the OMB commands for creating an OWB project.
    Please give me some advices, and correct me if i sad some dumb things :D but i really am new to warehousing and i would really appriciate if you guys with experience could share some informations.
    Thank you verry much!
    Alex21

    Depends. Having everyone working on the same project certainly simplifies things a lot regarding merging and is generally my preference. But I also recognize that some projects are complex enough that people wind up stepping on each other's toes if this is the case. In those cases, though, I try to minimize the issue of merging changes by having common structural objects (code libraries, tables, views, etc) retained in a single, strictly controlled, central project schema and having the developer's personal work areas reference them by synonym, thus being unable to alter them to the detriment of others.
    If they want to change a common object then need to drop their synonym and make a local copy which they can alter, and then there is a managed process by which these get merged back into the main project schema.
    This way any changes MUST go through a central schema, we can put processes in place to notify all of the team of any impending changes, and can also script updates across the team.
    Every hour a script runs automatically that checks for dropped synonyms and notifies the project leader. It especially checks for two developers who have built local copies of the same object and notifies each that they need to coordinate with each other as they are risking a conflict. When a structural change is submitted back to the central shared schema, it is added to a batch that is installed at end of business and a list of those impending changes is circulated to the team along with impact analysis for dependencies. The install script updates the main schema, then also drops the local copy of the object in the developer's schema who made the change and re-establishes the synonym there to get back to status quo for the change monitoring. Finally, it then updates itself in all of the developer areas via OMBPlus. So, each morning the developers return to an updated and synched environment as far as the underlying structure.
    This takes care of merging structural issues, and the management of the team should minimize other metadata merging by managing the worklist of who is to be working on a given mapping or process flow at a given time. Anyone found to be doing extraneous changes to a mapping or process flow when it is not in their job queue without getting pre-approval will be spoken to VERY firmly as this is counter to policy. And yes, OWB objects such as mappings are then also coordinated to the central project via import/export. OMBplus scripts also propogate these changes daily across the team as well.
    Yep, there is a whole lot of scripting involved to get set up.... but it saves a ton of time merging things and solvinv conflicts down the road.
    Cheers,
    Mike

  • How can I transfer a XML file content to a MS SQL database by stored procedure using LabWindows/CVI SQL Toolkit?

    Hi,
    I have a problem to transfer a XML file content to a MS SQL database by a given/fixed stored procedure. I'm able to transfer the content of the file by using following method ...
    hstmt = DBPrepareSQL (hdbc, EXEC usp_InsertReport '<Report> ..... </Report>');
    resCode = DBExecutePreparedSQL (hstmt);
    resCode = DBClosePreparedSQL (hstmt);
    ... but in this case I'm not able to fetch the return value of the stored procedure! 
    I have tried to follow the example of the stored procedure in the help documentation (DBPrepareSQL) but I miss a datatype for xml?!?
    Any idea how to solve my problem?
    KR Cake  
    Solved!
    Go to Solution.

    After some additional trials I found a solution by calling the stored procedure in this way
    DBSetAttributeDefault (hdbc, ATTR_DB_COMMAND_TYPE, DB_COMMAND_STORED_PROC);
    DBPrepareSQL (hdbc, "usp_InsertReport");
    DBCreateParamInt (hstmt, "", DB_PARAM_RETURN_VALUE, -1);
    DBCreateParamChar (hstmt, "XMLCONTENT", DB_PARAM_INPUT, sz_Buffer, (int) strlen(sz_Buffer) + 1 );
    DBExecutePreparedSQL (hstmt);
    DBClosePreparedSQL (hstmt);
    DBGetParamInt (hstmt, 1, &s32_TestId);
    where sz_Buffer is my xml file content and s32_TestID the return value of the stored procdure (usp_InsertReport(@XMLCONTENT XML))
    Now I face the problem, that DBCreateParamChar limits the buffer size to 8000 Bytes.
    Any idea to by-pass this shortage??

  • Capture xml payload contents in abap variables

    hi,
    we have a requirement to capture the xml payload  contents (in srm system) in an abap variable. is there is any API  in abap to achieve this?

    If i understand correctly you want to get the XML parsed to some string ?

  • Some questions on itunes

    Hi all,
    I have an iphone and ipod classic. Recently, I had to re-format my HDD due to motherboard failure, and I forgot to retrieve the itunes library backup and iphone backup before I re-format.
    Now I have already installed itunes and loaded back my music and I have some questions.
    1) What will happen if I connect my iphone to my PC? At the moment, itunes has no apps in it. Do I have to re-download them from the store?
    2) What will happen to my contacts? Will they stay in the iphone?
    That's all I can think of right now. Will post more questions next time.
    Any advice is greatly appreciated.
    Thanks !

    1) All of the itunes content will be erased from the iphone and replaced with content from the computer. You will have to re-download Apps if you didn't have them backed up.
    http://support.apple.com/kb/HT2519
    2) If you have at least one unique contact and calendar entry on your computer, then you should get the option to merge the data with your iphone when you first sync.

  • Some Questions on BPM

    Hi Master,
    I Attended the one Interview...I have some Questions, Please Reply ASAP..
    <b>What is Pattern</b>? Why we are using with Real time Example.
    Thanks & Regards,
    SReddy

    Hi,
    As moorthy already said pattersns are like templates that can solve many of the real time scenarios either as given or with some customization.
    In BPM there are different patterns and each one having some sub patterns within them with slight variations.
    Some Patterns are,
    1. Multicast Pattern.
    2. Serialization Pattern.
    3. Sync/Async Bridge Pattern.
    4. Collect/Bundle Pattern.
    You can go thro this help link for more examples in Patterns,
    http://help.sap.com/saphelp_nw04/helpdata/en/de/766840bf0cbf49e10000000a1550b0/content.htm
    Regards,
    P.Venkat

  • Some questions on Information Broadcasting

    Hi,
    We're implementing Information Broadcasting. I have some questions and would be delighted if you could answer some or all of them!!
    1. When using Web-templates I get the following message after opening my zip-file (Independent HTML-file) thru e-mail:
    - Bex Broadcaster does not support Precalculation. What's the meaning of this? We get precalculate figures.
    - The broadcaster demands that Javascript can be executed in the browser. How to solve?
    2. When I broadcast a query as zip-file HTML with seperate MIME files then the precalculated views do not have drilldown functionality, i.e. the navigation block functionality does not work (static). I put navigation on Distribution channel. Is this normal way of working?
    3. Broadcast functionality does not give possibility for Distribution type: 'Export to Enterprise Portal'.
    We have an Enterprise Portal. Is additional customizing required?
    4. Process chains have the Event Data Change process. This only works if I attach it directly to a cube. When I connect it to the process load data (i.e. to an Infopackage) it does not work. Any ideas?
    Thanks in advance!!
    Kind regards, Harjan

    Hi Harjan,
      Not sure what the issue is with regard to (1).
      With regard to (2), you need to to click on the 'Filter Navigation' tab in the BEx Broadcaster, enavle filtering, and select the characteristics you wish to filter on.
      With regard to (3), yes, there's additional configuration required in order to be able to broadcast into the Enterprise portal. Here's the documentation: http://help.sap.com/saphelp_nw04/helpdata/en/84/30984076b84063e10000000a1550b0/content.htm
      With regard to (4), the idea behind integrating the broadcasting event into a process chain is to only perform the brodcast if the info provider was loaded successfully to ensure the end user has accurate and up to date information. http://help.sap.com/saphelp_nw04/helpdata/en/ec/0d0e405c538f5ce10000000a155106/content.htm
    Regards,
    Oliver

Maybe you are looking for

  • 2/04/2014 - Release - Flash Player 12

    The next version of Flash Player is available for immediate download.  In today's release we've updated Flash Player with important security updates. Security update details can be found here: Security Bulletin (APSB14-04) New Features for Flash Play

  • Displaying PO with login name as created by name

    Hi sdn, i am facing one problem where when i open any PO created by date is shoing my login name. if some one opens it it's showing their name. please suggest me what may be the problem. Thanks & regards Naresh

  • Method for itunes to list all exclamation point songs

    lost a bunch of my music couple thousand songs....is there an easy way to have itunes list all exlamation point songs.

  • Select only first 10 chars from the field in a table while writlng a selec

    hi experts, In a table  one field contains a value of above 10 characters (ex 10 or 15 or 20 characters).But i want to select only first 10 characters from this field while writing a select statement. This logic should be included in select statement

  • The port range is overlapped with rule X message - SRP521W

    Hello, I am having trouble adding a NAT port forwarding rule on my SRP521W. I get the error The port range is overlapped with rule X, even though my port ranges are not overlapping. I have this rule created (rule 2): and am trying to create this rule