How to expand B2B document

I login B2B and click the document link.
The Document Protocols are listed but are not expanded. I have to click the + icon to view the docu I have created and discard the change.
How to expand them?

B2B version is 11.1.1.2
I am new in B2B and learing the B2B sample (b2b-101-custom-generic-file.pdf) download from Oracle.
I create Custom (version 1.0 and import the schema file) Document Protocol.
Then, I turn off the PC.
After I trun on the B2B, I find all protocols are not expanded. I need to view the document protocol which I have not finished.
I have to click the Add icon (+). Then the Custom protocol is expanded. But I have to discard the change.
What I want to do is I want all the protocols are expanded automatically after the page is loaded.

Similar Messages

  • How do i download the new B2B Document Editor tool

    How do i download the new B2B Document Editor tool?

    Gaja,
    You can download it from otn.
    It is available as part of Application Server Integration option.
    The CD3 is actually the Document Editor Tool.
    http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
    Thanks
    Sundar

  • How to install oracle b2b document editor 11.1.1.7.0

    Hi Friends,
    I have downloaded oracle b2b doc editor 11.1.1.7 version 3 zip files and extract it in a single folder.
    Please provide steps to install this latest version..
    Thanks & Regards

    Please refer -
    http://anuj-dwivedi.blogspot.in/2010/10/installing-oracle-b2b-document-editor.html
    Above link is for an older version (11.1.1.4.0) but installation steps should be same. Please let us know if you face any issue during installation.
    Regards,
    Anuj

  • B2B Document Editor License Key Issue

    Hi,
    I have downloaded Oracle B2B Document Editor from OTN and installed the same without any error but while trying to use it to generate B2B guideline files (ecs and xsd files), at the very first step we are getting the error saying -
    *"This feature is not available with the current type of license. Please contact [email protected] to obtain an upgraded license key."*
    As a result, it is not allowing further to create the guideline files i.e. we cannot use the software.
    Have anybody faced this issue? Any idea about is it expected or why this is coming or how to get rid of this?
    Note: Buying a license is not an option for me as I just want to evaluate the software.
    Download link I have used: http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html
    Thanks
    Satyaki

    Satyaki,
    But as I understand installing b2b doc editor does not have any dependency with SOA installation as such and it can be installed at any Standard Windows machine with no SOA in it. So, has this concept changed in case of this latest version? Should the latest doc editor version can be installed only where soa is installed? Your understanding is correct. B2B Doc Editor is independent of SOA and that patch should be applied into SOA environment(SOA Suite 11g R1 (11.1.1.5.0)) release to use complete health care features in SOA which are already available in Doc Editor 11.1.1.5.0
    Moreover, will the guideline files generated using this doc editor NOT work if used with soa suite version 11.1.1.3? You are not supposed to use B2B Doc Editor 11.1.1.5.0 version with SOA Suite 11.1.1.3.0
    I will personally suggest you to use SOA 11.1.1.4.0 and B2B Doc editor 11.1.1.4.0 if you are working on any evaluation.
    Regards,
    Anuj

  • Newbe Q: Where do I find B2B Document Editor documentation?

    Hello.
    A Newbe Question.
    I find myself in need of modifying a HL7 ADT A01 Spec file in such a way that PV1 Visit Number field is greater then the 20 characters the spec allows (which is strange since the components of that field are all larger then the field length - up to 64K per component).
    Where can I find the Oracle B2B Document Editor (EDIFECS SpecBuilder) documentation which discusses how to modify spec files (I can't change the value of PV1-9 Visit Number for some reason (I think it is 9 0 I don't have teh SpecBuilder open at the moment) .
    Thanks in avdvance
    Michael

    Thanks Nitesh and Anuj.
    The only thing I have seen so far is the B2B User's Guide, to which Anuj prvided the link.
    I am looking for something more comprehensive.
    We are useing the EDIFECS SpecBuilder. Is there EDIFECS SpecBuilder documentation and is it more comprehensive then teh B2b User's Guide Chapte 3 and the SpecBuilder on-line Help system?
    Thanks for your help
    Regards
    Michael

  • Regular expression in B2B Document editor

    Hi All,
    i intent to parse a file coming into B2B with record entry starting as ' 88'. And i want to use this value 88 to differentiate it from other records. I have set a rule (^[ \t]+88) on the field to pick this entry and set the value of the tag field as 88.
    but it is not getting picked up properly and is jumping over this record itself completely. could you please suggest how this regular expression rules work when used with tag.. i have to use only the rule but still the record is not getting properly picked up...
    kindly share any assistance in this regards
    thanks
    Rakesh

    Hi Datla,
    Yes, there is a de-identification support in Data Editor of B2B Document Editor. Once you open a EDI or HL7 doc with data editor, it will ask you to "Choose De-Identification and specify rule file". You may create a separate file for your use. Data Replacement Rule file is actually a XML which holds the separator information along with the data to be replaced. You may define your own DRR file.
    To know more, just open the Data Editor from Document Editor, go to Help --> Content -->Data Replace and De-Identify section.
    Regards,
    Anuj

  • How to expand the folder via applescript?

    Dear apple experts,
    How to expand the folder via applescript?
    Manually we are using command + option + right arrow, but how we handle this in applescript?
    Thanks in advance,
    Velladurai.G

    Hello
    Finder's container's "expanded" and "completely expanded" properties have long been marked "NOT AVAILABLE YET" under OSX:
    Finder.sdef > Containers and Folders suite
    container n [inh. item] : An item that contains other items
        elements
            contains items, containers, folders, files, alias files, application files, document files, internet location files, clippings, packages.
        properties
            entire contents (specifier, r/o) : the entire contents of the container, including the contents of its children
            expandable (boolean, r/o) : (NOT AVAILABLE YET) Is the container capable of being expanded as an outline?
            expanded (boolean) : (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists)
            completely expanded (boolean) : (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists)
            container window (specifier, r/o) : the container window for this folder
    A way to expand a given folder is to use keystroke command of System Events to invoke the keyboard shortcut in Finder. Something like the following script.
      kLeftArrowCharCode            = 28,
      kRightArrowCharCode           = 29,
      kUpArrowCharCode              = 30,
      kDownArrowCharCode            = 31,
    --set f to (path to downloads folder from user domain) -- target folder e.g.
    set f to (choose folder)
    tell application "Finder"
        reveal f
        tell Finder window 1
            set cv to current view
            if cv = column view then return -- do nothing
            if cv = icon view then set current view to list view
        end tell
        my _keystroke(it, character id 29, {option down, command down}, 0.2)
    end tell
    on _keystroke(_app, _key, _modifiers, _delay)
            reference _app : application reference
            string _key : character(s) to be keystroked [1]
            list _modifiers : list of modifier key to be pressed; enumerations are
                    command down
                    option down
                    shift down
                    control down
            number _delay : post-delay amount [sec]
            [1] Character must be present on the current keyboard layout. Otherwise, it is replaced by 'a'.
        tell _app to activate
        tell application "System Events"
            tell (process 1 whose bundle identifier = (_app's id))
                keystroke _key using _modifiers
            end tell
        end tell
        if _delay > 0 then delay _delay
    end _keystroke
    Regards,
    H

  • Error while using the B2B document editor

    Hi All,
    I am using B2B document editor version 6.6.0.2801 on Windows 7 32 bit.
    When i open any guideline the editor, i get the following error:
    One or more ActiveX controls could not be displayed because either:
    1)You current security settings prohibit running ActiveX controls on this pages, or
    2)You have blocked a publisher of one of the controls.
    As a result, the page might not display correctly.
    Could any please tell me how to overcome the error.
    Regards,
    Saurav Singla

    Hi Saurav,
    It looks like an Operating System issue. You may refer -
    http://social.technet.microsoft.com/Forums/en-US/w7itprosecurity/thread/90c3202c-448b-42b7-acf7-dab8dba7b000
    http://support.microsoft.com/kb/907343
    Regards,
    Anuj

  • How to link PDF document in Report Layout??

    I need to display the contents of PDF document after the form letter report. I tried OLE object but at the runtime it does not display the content. Does any one knows how to attach PDF document in reports layout?
    Thanks
    Ravindra

    you will have to concatinate your report output with the static PDF document. in reprots 10g you can create a cusotm destination that could implement this functionality.
    out of the box, reports does not provide the ability to add static content in PDF to reports' generated PDF output.
    thanks,
    philipp

  • How to create shipment document with out inbound delivery document

    Dear Friends
    How to create shipment document with out outbound/inbound delivery document.
    In my client scenario, there is no inbound delivery for normal purchases.
    Just there are raising the PO to vendor, then they are doing MIGO for goods receipt.
    Can we do shipment creation with reference to PO?
    If it is possible, how it will be?
    Please let it solve
    With regards
    Lakshmikanth

    Dear Sameer,
    Please go to transaction VT01N here you enter Transportation planning point and shipment type then press enter.
    Now system will take you to the shipment document creation screen here you click on Select deliveries or press F6 now system will take you to the select outbound deliveries screen in this screen you enter selection data then execute, now deliveries will get assigned to that shipment.
    After assigning the deliveries enter the remaining data then complete the shipment finally save the shipment document.
    For more information please go through this SAP help link
    Note:- Shipment process need to be carry out for the deliveries before PGI.
    http://help.sap.com/saphelp_47x200/helpdata/en/f5/04898047bd11d2bf750000e8a7386f/frameset.htm
    I hope this will help you,
    Regards,
    Murali.

  • How do we send document from one group to other through sharepoint designer??

    Hi SharePointers,
    Looking for help..
    Requirement: I have 3 groups 1.requestors 2. Approvers 3. Vendors.
    In Requestor group, there are so many Requestors and every Requestor logged in to subsite and  create a new document in the same DocHub. But No Requestor can see documents created by others. ie, Requestor can see his own documents not by others created.
    How to implement this. Is UserProfile service useful here or any other?
    Finally , when Requestor click on save button then I have to send the particular document to Approvers group for approve/rejection.
    Can you please suggest me that how to send the document to others through Designer workflows.? 
    Note: Currently we are using ootb
    Kindly show me the way to do this.
    Many thanks in advance..

    Hi Praveen,
    By OOB option, we cannot send documents as attachment via workflow.
    You could use document url as workaround or use code to achieve it:
    http://community.office365.com/en-us/f/154/t/204397.aspx
    http://sharepointstuff.codeplex.com/
    http://sharepointconnoisseur.blogspot.com/2012/03/emailing-documents-as-attachments.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How can I move documents from my iPad to the cloud?

    I am trying to move documents into the cloud from my iPad. Every time I select the upload icon, only my photos show up. How do I find my documents?

    squirrels,
    To save a single PDF document on iPad to Acrobat.com (i.e. one document at a time)
    Open a PDF document in Adobe Reader for iOS.
    Tap anywhere in the document to display the toolbar.
    Tap this icon in the toolbar.
    Select "Save to Acrobat.com".
    If prompted, sign in with your Adobe ID.
    If you want to transfer a lot of PDF documents on your iPad to any cloud storage service, you can transfer them to your Windows/Mac desktop computer using iTunes first.
    How to transfer PDF documents from your iPad/iPhone to your computer
    and upload them to the cloud storage service of your choice via a web browser.
    Does it answer your question?
    Please let us know if you still have a problem with uploading files.

  • How can i share documents with different users on the same mac?

    How can i share documents with different users on the same mac?

    Shared how? The other users can read the documents or you all can read and write the documents?
    The first is easy just place the documents in /Users/Shared anyone can access the files there and the other users will be able to read them.
    The second is a bit trickier.

  • I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

    I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

    Just use Drop Box instead.

  • How to show sharepoint documents in salesforce ?

    How to show sharepoint documents in salesforce ?
    I should also be able to upload documents from salesforce directly to sharepoint document library/list if the users attach a document for a record in salesforce.   Any idea how to achieve this?
    What are the things need to be done if my sharepoint is available in intranet Or if it is SharePoint Online , how can we link this to salesforce (as Salesforce is global and can be accessed from anywhere). What are the security measures that I need to look
    at and how to achieve this? 
    Ex:- I have a record in salesforce account object. I have to attach a document for that record which should be directly uploaded to sharepoint and shouldn't exist in salesforce, but it should display the listview to the users once its uploaded to sharepoint
    and they should see them as if they exist inside salesforce, once they click on the link in the listview of the relatedlist, it should open the document from sharepoint.
    Thanks in advance.

    Hi,
    According to your post, my understanding is that you want to show SharePoint documents in salesforce.
    You need to integrate SharePoint with Salesforce.
    Nick Swan
    has written an article on how to integrate Salesforce and SharePoint 2007 through the Business Data Catalog.
    But it might be useful as the theory is the same for using SharePoint 2010 and the Business Connectivity Services:
    Salesforce and SharePoint
    Outside of that, there are some useful third-party products you can have a look at.
    Cloud Connector: http://www.layer2.de/en/community/FAQs/cloud-connector/Pages/Office-365-Salesforce-Integration-Migration-Replication.aspx
    DocAve Data Replication: http://www.avepoint.com/salesforce-data-replication/?gclid=CNjZ8sGwl6kCFYEc4Qod-xD-uQ
    DataZoom Script: http://www.siafoo.net/snippet/261
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for