Dynamically Add Configuration Views to 3D Images

We have numerous Pro/Engineering drawings that we would like to convert to 3D PDF documents. This is easily accomplished with Adobe Reviewer. We would also like to include additional views (configurations) -- such as an "Exploded View" of the drawing. We can manually add this configuration in Reviewer, but I was wondering if there was a way to automatically add the configs when the ProE file is opened (perhaps with JavaScript, etc.)?
Thanks for any help.

some things will come w/o answers lol... **looking at Steve**
movie
phim online media... music
nhac online the world of
wholesale fashion and models
wholesale clothing and lovely
phim han quoc ..?!!

Similar Messages

  • How to add a View in ViewContainerUiElement dynamically

    Hi All,
    I am facing some issues while trying to add a view in the dynamically created ViewContainerUIElement.
    Can someone please help me out.
    Thanks and Regards,
    Gaurav.

    Hi Gaurav,
    You will have to use dynamic programming to fix this
    in the domodifyview
    if ( firstTime )
      final IWDUIElementContainer group
        = (IWDUIElementContainer)view.getElement( "grInner" );
      group.destroyAllChildren();
      final IWDViewContainerUIElement container
        = (IWDViewContainerUIElement)view.createElement
             IWDViewContainerUIElement.class, null
      container.setViewContainer
         wdContext.currentContextElement()
           .getViewContainerName()
      group.addChild( container );
    Now you wil have to set the container name in init or some method.
    Regards
    Pankaj Prasoon

  • Unable to open view youtube. Add-on and plug in open in basic view only no images. why?

    FIRST PART. All of a sudden we can no longer open or view videos from youtube. All that appears is a black box. Next is when we open add-ons the view is basic, no images, unable to do certain trouble shooting. What have we done over the last four hours to try and correct? From what we remember, deleted and reinstalled firefrox, reinstalled adobe, java, real time. deleted plug on and addons. reset numerous box's in security and other various screens, deleted files extension and plug ins. open in safe mode. I think you get the point, we are at our wits end and need some help. i will try to past a screen print of what the addon page looks like.
    Of course that did not work either, I could not find the paint program and tried to save word, no luck. AARRGGHHH.
    Any new suggestions?
    desperate on capecod

    Since you already tried deleting the permissions database and creating a new profile, I would not expect you to find that Firefox is blocking images on the Add-ons site. You can double-check using the Page Info dialog, Media Panel.
    While viewing a page on the site:
    * right-click and choose View Page Info > Media
    * Alt+t (open the classic Tools menu) > Page Info > Media
    Click in the list of files and use the down arrow key on the keyboard to move down through the list, keeping an eye on the "Block Images from" checkbox, and uncheck it if you see it checked for any of the servers. (see attached screen shot)
    Can you load any of the images from the page directly? For example:
    * https://addons.cdn.mozilla.net/media/img/app-icons/med/firefox.png (inline image)
    * https://addons.cdn.mozilla.net/media/img/zamboni/discovery_pane/promos/monthly-bg.png (background image)
    * https://addons.cdn.mozilla.net/media/img/app-icons/16/sprite.png (icon sprite background image)
    If any of those do load, if you reload the main Add-ons page, do the images now populate?
    I still suspect external software or an external filter. Maybe it triggers on "addons" (looks like an ad server?) or "cdn". See whether you have anything that might block images based on the address, and see whether you can educate it.

  • Dynamically add Children Link Element

    Hi,
    I'm trying to dynamically add a children element, a link, but the action binding refuses to work ...
    I've created a custom jsf component, that does nothing at all.
    For example, one would use it like:
    <my:nothing></my:nothing>So my UI class would have the following methods:
    public void encodeBegin(FacesContext context) throws IOException {
    public void encodeEnd(FacesContext context) throws IOException {
    }The tld file is created, the tag class is working. All the component is working properly.
    Now I want to add a link as a child component, but I wat to do it programatically, so I changed the encodeBegin method of my custom ui class:
    import javax.faces.el.ValueBinding;
    import com.sun.faces.util.Util;
    import javax.faces.el.MethodBinding;
    import javax.faces.component.UICommand;
    import javax.faces.component.html.HtmlCommandLink;
    import com.sun.faces.taglib.html_basic.CommandLinkTag;
    public void encodeBegin(FacesContext context) throws IOException {
              String myLinkId = "idMyLink";
              String myLinkValue = "myLink:Value";
              String myLinkStyle = "color:green;";
              String myLinkAction = "backup";
              HtmlCommandLink myLink = new HtmlCommandLink();
              myLink.setParent(this);
              myLink.setId( myLinkId );
              if (CommandLinkTag.isValueReference( myLinkValue )) {
                   ValueBinding vb = Util.getValueBinding( myLinkValue );
                   myLink.setValueBinding("value", vb);
              } else {
                   myLink.setValue( myLinkValue );
              if (CommandLinkTag.isValueReference( myLinkStyle )) {
                   ValueBinding vb = Util.getValueBinding( myLinkStyle );
                   myLink.setValueBinding("style", vb);
              } else {
                   myLink.setStyle( myLinkStyle );
              if(myLinkAction!=null) {
                   if (CommandLinkTag.isValueReference( myLinkAction )) {
                        System.err.println("Id="+myLinkId+":TRUE:getAccao:isValueReference:"+myLinkAction);
                        MethodBinding vb = getFacesContext().getApplication().createMethodBinding(myLinkAction, null);
                        myLink.setAction(vb);
                   } else {
                        System.err.println("Id="+myLinkId+":FALSE:getAccao:isValueReference:"+myLinkAction);
                        final String outcome = cNfo.getAccao();
                        MethodBinding vb = Util.createConstantMethodBinding( myLinkAction );
                        myLink.setAction(vb);
              myLink.encodeBegin(getFacesContext());
              myLink.encodeEnd(getFacesContext());
    }This seems to work, but not quite ... the link appears as expected, the value references for value and style are correctly passed, but the action doesn't work at all.
    For example if I change to:
    String myLinkValue = "#{mybean.linkText}";And I have the following method created on my managed bean:
         public String getLinkText() {
              return "This is myLink Text!";
         }Is successfully calls and retrieves the value from the method. Same happens to the style property.
    Now for the action, if I change to:
    String myLinkAction = "#{mybean.doMyLinkAction}";And I have the following method created on my managed bean:
         public String doMyLinkAction() {
              return "backup";
         }The result is nothing ... I mean the method is not called at all. The "backup" is properly defined on my "faces-config.xml":
       <navigation-rule>
          <from-view-id>/testPage.jsp</from-view-id>
          <navigation-case>
             <from-outcome>yes</from-outcome>
             <to-view-id>/yes.jsp</to-view-id>
          </navigation-case>
          <navigation-case>
             <from-outcome>no</from-outcome>
             <to-view-id>/no.jsp</to-view-id>
          </navigation-case>
          <navigation-case>
             <from-outcome>backup</from-outcome>
             <to-view-id>/backup.jsp</to-view-id>
          </navigation-case>
       </navigation-rule>If I create the link manually on the web page:
    <h:commandLink id="myLinkManual" value="Manually Created Link" style="" action="#{mybean.doMyLinkAction}"/>It does work (the backup.jsp page is shown), so the methods are properly configured, only the action binding does not work.
    Wether I use a string "backup" or a reference "#{mybean.doMyLinkAction}" I cannot make it work.
    On the console I get the following results, for each value I test (string "backup" or reference "#{mybean.doMyLinkAction}"):
    Id=idMyLink:TRUE:getAccao:isValueReference:backup
    Id=idMyLink:FALSE:getAccao:isValueReference:#{mybean.doMyLinkAction}So the "if (CommandLinkTag.isValueReference( myLinkAction )) {" is working properly ... that just leaves me with the action method binding instructions ...
    Why don't they work?
    Any Help Appreciated ... Thanks in Advance!

    c'mon guys ... can anyone test this and help me out?
    Pleeeeeease ... I'm really needing this working out.
    Thanks

  • Using different configured views for different user group in crm2007

    Hello SAP Expert,
    Want to clarify if the BADI (Configuration Access Determination BADI ; BSP_DLC_ACCESS_ENHANCEMENT)  is used as design time or Run time. By looking the help of this BADI it says "This Business Add-In (BAdI) is used in the UI Configuration Tool (CRM-FRW-CON) component." Looks like this is at configuration time not at run time.
    The actual requirement is that for a set of users which work on a particular department, we want to have some extra information on 2 views and rest of the views they would be using same as entire organization. We are inclined towards using config role rather than zviews. If we were to use zviews then it would not be a difficult one.
    We were thinking of a mechanism to show the configured view based on user's Business Role at runtime. e.g. we have 2 roles A and B. Role A user have only 2 views specific to them and all other views they use same as Role B. We do not want to use ZView rather use Role Config Key to distinguish the views. What I was thinking that we should be able to create these 2 views with Config Role A and all  views (including these 2) with Config Role B. On Business Role A and Business Role B both, We will assign Config Role "B". but at runtime system should determine if the Business Role is A and Component is CMP1 then use the view V1 with Config Role A not the default view with config role B. (we can maintain that information in a Z table). This is not based on runtime profile but to use configured view at runtime.
    Any thoughts/ help really appreciated.
    Best regards,

    Hi Amithab,
    you can use badi CRM_BP_UIU_VIEW_CONFIG  of enhancement spot CRM_UIU_BP_ENHANCEMENT for your requirements. Please read the badi documentation because you need also a implementation of badi CRM_BP_UIU_CONFIG_CALLBACK (same spot). SAP considers badi CRM_BP_UIU_VIEW_CONFIG only for use at dynamically loading different configuartions of view details for business partners or contact persons at runtime. But you can use your badi implementation also for other views. You have to redefine method DO_CONFIG_DETERMINATION in your views. And call your badi from there. For this copy&paste the logic of DO_CONFIG_DETERMINATION of bp details to the views you have to load dynamically at runtime.
    We have used this approach for access controll and granting special access to views dependent on different employee functions.
    Best regards
    Michael

  • Dynamically Add and Remove Train Stop with version 11.1.2.3

    I have found examples with prior versions, such as http://adfpractice-fedor.blogspot.com/2011/12/dynamic-adf-train-showing-train-stops.html.
    But, they do not work in 11.1.2.3.
    It appears that the APIs have changed considerably.
    Please advise as to a similiar example that is based on the API model for 11.1.2.3
    Thanks in advance for your help.

    Hi,
    I have a requirement to dynamically add different train stops at runtime, which are not part of the task flow at design time. I would like to build the train at runtime based on various conditions that occur. Is this possible?
    Train stops can only be removed from the train model before the first view renders, which means during task flow initialization. To a later point you cannot remove but hide stops. The train model is created upon task flow initialization too and any train stop that is not part of the model virtually doesn't exist. In your case I think creating a custom train model from ground up and using this with the train is the way to go. The default task flow metadata based implementation doesn't seem to do what you need it for. Alternatively, if you can predict the maximum number of train stops, you can design them at design time and then remove those you don't need at runtime using a HashMap reference in the train stop configuration and check the HashMap values upon initialization.
    Here's a write up on trains I did in the past: http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html
    More documents you find on ADF Code Corner http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html (just search for train)
    Frank

  • Issues in persisting dynamic entity and view objects using MDS

    Hi All,
    I'm trying to create dynamic entity and view objects per user session and to persist these objects throughout the session, I'm trying to use MDS configurations(either file or Database) in adf-config.xml.
    I'm facing following two errors while trying to run the app module:
    1. MDS error (MetadataNotFoundException): MDS-00013: no metadata found for metadata object "/model/DynamicEntityGenModuleOperations.xml"
    2. oracle.mds.exception.ReadOnlyStoreException: MDS-01273: The operation on the resource /sessiondef/dynamic/DynamicDeptEntityDef.xml failed because source metadata store mapped to the namespace / DEFAULT is read only.
    I've gone through the following links which talks about the cause of the issue, but still can't figure out the issue in the code or the config file. Please help if, someone has faced a similar issue.
    [http://docs.oracle.com/cd/E28271_01/doc.1111/e25450/mds_trouble.htm#BABIAGBG |http://docs.oracle.com/cd/E28271_01/doc.1111/e25450/mds_trouble.htm#BABIAGBG ]
    [http://docs.oracle.com/cd/E16162_01/core.1112/e22506/chapter_mds_messages.htm|http://docs.oracle.com/cd/E16162_01/core.1112/e22506/chapter_mds_messages.htm]
    Attached is the code for dynamic entity/view object generation and corresponding adf-config.xml used.
    ///////////App Module Implementation Class/////////////////////////
    public class DynamicEntityGenModuleImpl extends ApplicationModuleImpl implements DynamicEntityGenModule {
    private static final String DYNAMIC_DETP_VO_INSTANCE = "DynamicDeptVO";
    * This is the default constructor (do not remove).
    public DynamicEntityGenModuleImpl() {
    public ViewObjectImpl getDepartmentsView1() {
    return (ViewObjectImpl) findViewObject("DynamicDeptVO");
    public void buildDynamicDeptComp() {
    ViewObject internalDynamicVO = findViewObject(DYNAMIC_DETP_VO_INSTANCE);
    if (internalDynamicVO != null) {
    System.out.println("OK VO exists, return Defn- " + internalDynamicVO.getDefFullName());
    return;
    EntityDefImpl deptEntDef = buildDeptEntitySessionDef();
    ViewDefImpl viewDef = buildDeptViewSessionDef(deptEntDef);
    addViewToPdefApplicationModule(viewDef);
    private EntityDefImpl buildDeptEntitySessionDef() {
    try {
    EntityDefImpl entDef = new EntityDefImpl(oracle.jbo.server.EntityDefImpl.DEF_SCOPE_SESSION, "DynamicDeptEntityDef");
    entDef.setFullName(entDef.getBasePackage() + ".dynamic." + entDef.getName());
    entDef.setName(entDef.getName());
    System.out.println("Application Module Path name: " + getDefFullName());
    System.out.println("EntDef :" + entDef.getFileName() + " : " + entDef.getBasePackage() + ".dynamic." + entDef.getName());
    entDef.setAliasName(entDef.getName());
    entDef.setSource("DEPT");
    entDef.setSourceType("table");
    entDef.addAttribute("ID", "ID", Integer.class, true, false, true);
    entDef.addAttribute("Name", "NAME", String.class, false, false, true);
    entDef.addAttribute("Location", "LOCATION", Integer.class, false, false, true);
    entDef.resolveDefObject();
    entDef.registerSessionDefObject();
    entDef.writeXMLContents();
    entDef.saveXMLContents();
    return entDef;
    } catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    return null;
    private ViewDefImpl buildDeptViewSessionDef(EntityDefImpl entityDef) {
    try {
    ViewDefImpl viewDef = new oracle.jbo.server.ViewDefImpl(oracle.jbo.server.ViewDefImpl.DEF_SCOPE_SESSION, "DynamicDeptViewDef");
    viewDef.setFullName(viewDef.getBasePackage() + ".dynamic." + viewDef.getName());
    System.out.println("ViewDef :" + viewDef.getFileName());
    viewDef.setUseGlueCode(false);
    viewDef.setIterMode(RowIterator.ITER_MODE_LAST_PAGE_FULL);
    viewDef.setBindingStyle(SQLBuilder.BINDING_STYLE_ORACLE_NAME);
    viewDef.setSelectClauseFlags(ViewDefImpl.CLAUSE_GENERATE_RT);
    viewDef.setFromClauseFlags(ViewDefImpl.CLAUSE_GENERATE_RT);
    viewDef.addEntityUsage("DynamicDeptUsage", entityDef.getFullName(), false, false);
    viewDef.addAllEntityAttributes("DynamicDeptUsage");
    viewDef.resolveDefObject();
    viewDef.registerSessionDefObject();
    viewDef.writeXMLContents();
    viewDef.saveXMLContents();
    return viewDef;
    } catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    return null;
    private void addViewToPdefApplicationModule(ViewDefImpl viewDef) {
    oracle.jbo.server.PDefApplicationModule pDefAM = oracle.jbo.server.PDefApplicationModule.findDefObject(getDefFullName());
    if (pDefAM == null) {
    pDefAM = new oracle.jbo.server.PDefApplicationModule();
    pDefAM.setFullName(getDefFullName());
    pDefAM.setEditable(true);
    pDefAM.createViewObject(DYNAMIC_DETP_VO_INSTANCE, viewDef.getFullName());
    pDefAM.applyPersonalization(this);
    pDefAM.writeXMLContents();
    pDefAM.saveXMLContents();
    ////////adf-config.xml//////////////////////
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-config xmlns="http://xmlns.oracle.com/adf/config" xmlns:config="http://xmlns.oracle.com/bc4j/configuration" xmlns:adf="http://xmlns.oracle.com/adf/config/properties"
    xmlns:sec="http://xmlns.oracle.com/adf/security/config">
    <adf-adfm-config xmlns="http://xmlns.oracle.com/adfm/config">
    <defaults useBindVarsForViewCriteriaLiterals="true"/>
    <startup>
    <amconfig-overrides>
    <config:Database jbo.locking.mode="optimistic"/>
    </amconfig-overrides>
    </startup>
    </adf-adfm-config>
    <adf:adf-properties-child xmlns="http://xmlns.oracle.com/adf/config/properties">
    <adf-property name="adfAppUID" value="TestDynamicEC-8827"/>
    </adf:adf-properties-child>
    <sec:adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
    <CredentialStoreContext credentialStoreClass="oracle.adf.share.security.providers.jps.CSFCredentialStore" credentialStoreLocation="../../src/META-INF/jps-config.xml"/>
    </sec:adf-security-child>
    <persistence-config>
    <metadata-namespaces>
    <namespace metadata-store-usage="mdsRepos" path="/sessiondef/"/>
    <namespace path="/model/" metadata-store-usage="mdsRepos"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage default-cust-store="true" deploy-target="true" id="mdsRepos">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property name="metadata-path" value="/tmp"/>
    <!-- <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property name="jndi-datasource" value="jdbc/TestDynamicEC"/>
    <property name="repository-name" value="TestDynamicEC"/>
    <property name="jdbc-userid" value="adfmay28"/>
    <property name="jdbc-password" value="adfmay28"/>
    <property name="jdbc-url" value="jdbc:oracle:thin:@localhost:1521:XE"/>-->
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </adf-config>
    //////////////////////////////////////////////////////////////////////////////////////////////////////////

    Hi Frank,
    I m trying to save entity and view object xml by calling writeXMLContents() and saveXMLContents() so that these objects can be retrieved using the xmls later on.
    These methods internally use MDS configuration in adf-config.xml, which is creating the issue.
    Please share your thoughts on resolving this or if, there is any other way of creating dynamic entity/view objects for db tables created at runtime.
    Nik

  • Set viewset dynamically as standard view in a window

    Hello collegues,
    I want to Display a certain view ("view 1") in an overview page of another component.
    "View 1" is in "Viewset 1".
    "Window 1" has two viewsets:
    "Viewset 2", marked as Standard.
    "Viewset 1", not marked as Standard.
    "Window 1" is in the component Interface aso.
    When I add "Window 1" to the overview page of my component, then "Viewset 2" is shown, not "Viewset 1".
    How can I set "Viewset 1" dynamically as Standard view in "Window 1" so that "View 1" is shown in my overview page?
    Best regards,
    Thomas

    hi,
    In Overview page IMPL Claz you will find the method " DETACH_STATIC_OVW_VIEWS ".
    redefine that method and use the following piece of code,
    mt_detached_views of type BSP_DLC_OVW_STAT_VIEW_ATTACH_T declare as a Global variable in IMPL claz
      DATA:it_svs TYPE bsp_dlc_ovw_dyn_views_list_t,
           wa_svs TYPE bsp_dlc_ovw_dyn_views_list,
           wa_det TYPE bsp_dlc_ovw_stat_view_attach.
    */ Getting the list of Views of a OV page....
      it_svs = me->get_list_of_static_views( ).
      READ TABLE it_svs INTO wa_svs WITH KEY viewid = 'VIEWSET2'.
      wa_det-viewid = wa_svs-viewid.
      APPEND wa_det TO mt_detached_views.
      CLEAR wa_det.
      rt_viewid = mt_detached_views.
    hope this might be helpful,
    Regard's
    Vam's....

  • Static vs Dynamic difference when viewing in Acrobat 9

    With ES2 or ES4, saving output as a static pdf results in the following when previewing and when viewing in Acrobat 9.4.5:
    When viewing in Reader X or XI, or when saving as a dynamic pdf and viewing in Acrobat 9.4.5, the output is as expected:
    One obvious solution is to upgrade everyone to Acrobat X+, but that's not an option for the enterprise.  Is there scripting I could add or a registry fix or some other alternative to hiding these annotation sequence numbers (or whatever they're referred to) in the static pdf, as the EDMS delivering this pdf to the end-users cannot currently handle XFA-enabled PDFs and so it must be static?
    My suspicion is this is more of an Acrobat 9.4.5 issue than an LC issue, but I have researched extensively and cannot find a resolution.

    The "annotation sequence numbers" are probably referring to the "Tab Order".  You can access and modify the "Tab Order" from Designer; Go to the "Window" option and click on "Tab Order".  For ES4 it's between "Data View" and "Object Library".  Under "Tab Order", there's a button that should either be displayed as "Show Order" or "Hide Order".  Clicking on that button will toggle between the two choices.  I am assuming that if you click to make it "Hide Order" that your numbers will disappear.

  • Aperture cannot add GPS data to multiple images at the same time

    I am new to Aperture and have been using it for a week or so now. Today I tried to add GPS data to a number of images and found out, it appears Aperture can only add GPS data to one image at the time. When I select multiple images to add the GPS data to, it just doesn't do anything. It leaves the GPS data blank.
    Here is what I do:
    From the Info-tab I select "GPS" from the drop down menu
    At the bottom of the info tab I show the map
    In the map's search box I enter the location I want to assign to the photo(s)
    From the resulting drop down menu I select the locatiion I want and press the "assign to location" button
    As long as I choose only a single image, this works fine and the GPS Data is added. Not so when I select more than a single image. After pressing the "assign to location" button it seems as if the GPS data is added (there is no message indicating otherwise), but the GPS data in the selected images is blank.
    What am I doing wrong ?
    Additional info
    I have been testing this a bit more and the behavior is even more strange: When you select multiple images in Aperture, they get a thin white border, except the one that you touch last (normally the last image of the selection) that will have a thicker border around it. It appears that, when selecting multiple images, the GPS data is ONLY assigned to the photo in the selected setthat has the thicker border (?????)
    Message was edited by: dinky2

    Rereading your post, I think the problem is, that you are assigning the location from the Info panel and not from the Metadata menu. The Info panel and the Metadata menu ar behaving differently.
    The Info panel will always only affect the primary selection, but the Metadata menu will work on all selected images (unless "Primary only" is checked). So , if you want to assign your location to multiple images, use "Metadata > Assign location" instead of the little map in the "Info" panel.
    Or use the "Places" view. Then you can drag all images at once to the same pin on the map.
    Regards
    Léonie

  • Dynamically add an in memory Bitmap to a List

    I'm trying to dynamically add an in memory Bitmap to a List
    control. I'm trying to create a thumbnail
    from a larger bmp image and display the thumbnail in the
    list. The thumbnail images are being created ok
    but the bitmaps are not displaying in the List control. The
    code I'm using is shown below. Apparently I can't
    use a collection of bitmaps in the List. Previously I had a
    collection of pathnames as strings that pointed to
    jpgs on disk and it displayed ok. Does anyone know how I can
    get the Bitmaps to display?
    <mx:List id="fileList" x="10"y="10" width="231"
    height="648" rowHeight="160" columnWidth="120 enabled="true"
    click="loadImage()" itemRenderer="mx.controls.Image"
    dataProvider="{myProvider}"></mx:List>
    public var anArray:Array = new Array();
    public var myProvider:ArrayCollection = new
    ArrayCollection(anArray);
    var thumbnail:Bitmap = new Bitmap(new
    BitmapData(thumbSize,thumbSize,true,0));
    thumbnail.bitmapData.draw(bmp,matrix);
    myProvider.addItem(thumbnail);

    without looking at what tables you are using and and how you built the query this is what I can think of:
    Please write this in record processing section:
    fields material/stock/req are the running variables in meaning database field names.
    lv_ava is the new field that needs to be created.
    data lv_stock type INSME.
    data lv_req type insme.
    at new material.
      lv_stock = stock.
      clear :lv_req, req.
    end at.
      lv_req = lv_req + req.
      lv_ava = stock-lv_req.

  • Dynamically passing text and url-based images as an input parameter to cf8 report builder

    I'm unsuccessfully trying to dynamically pass text and url-based images to a group footer or the detail section via an input parameter or even hardcoded. The field has the attribute 'XHTML Text Formating' set to True. The following are failed samples of a simplified value:
    "<img height=’300’ alt=’Document’ width=’300’ src=’http://www.google.com/intl/en_ALL/images/logo.gif’ />"
    or
    "<img src=’http://www.google.com/intl/en_ALL/images/logo.gif’ />"
    This just results in the above text being output. The end result would have various text and images from a database as input by a user, thus the reason I cannot just use the hyperlink information attribute as I could if it were a single known image. I tried rtf and pdf report types. Ideas?

    HTH,
    Thanks. I'll keep that in mind, although I don't know how many images my user might need or what sizes so that might be tricky.
    Since my target output is rtf so that MS Word can be used to edit the result, I added a pagebreak to a MS Word doc and used the resulting html source to replace the rich text editor source code for the page break, but that did not help either. The page break was so a user could add an image later. Something is wrong with the Report Builder related to intepreting XHTML, especially anything that has an attribute, including URL-based image links. I hope they try to provide another update before CF9. I doubt my client will be going to CF9 for some time, since they are just completing the migration to CF8.
    BrianO

  • How to view the employee image in Selfservice?

    Hi firends,
    I'm trying to view the employee image in Selfservice.
    The idea is the following:
    - When we enter in Preferences Menu --> Person Search Menu
    - Then Customize for HR User --> Level : Responsability
    (we choose a responsibility associed to Preferences) and then, inside the "advanced properties" for the columns we can associate an URL to the column we want...
    - The idea is to associate an image (photo) to the employee number.. so we could use an url link to the blob column stored in fnd_lobs if the employee image would be stored as an attached document for the employee... or... a link to show the image column (lon raw) in per_images table... (I think this would be more difficult)
    What I don't know ... how to do is how to show the image.. (how to build the url through the customization of the fnd_gfm.get procedure....
    Another doubt in relation with that is..
    When we show the image stored as an attachment in fndattch form, the internet explorer opens with the url
    http://my_domain:8000/pls/my_project/fndgfm/fnd_gfm.get/42387354799/423868/fnd_gfm.jpg
    the last number: 423868 is the file_id in fnd_lobs but... how about the other? how is it generated? Have this some relation with the problem to show with download_blob....?
    Any ideas
    Thanks,
    Jose.

    the "Employee Directory" shows you the photos by default. Should not be that hard to add an url via personalizations that points to that directory.
    good luck.

  • How to dynamically choose which view to display in second step

    Hi Guys,
    I am just started to evaluate fpm to decide whether to use it in our project. So i have question that might be very simple to you all, that i hope you all can help me with.
    Say i want to use the fpm GAF with a single webdynpro component. I have 3 steps, first step display a dropdown list for user to choose, second step will be a view that will depend on user input on the first step and 3rd step just a confirmation screen.
    I plan to use UIBB for all the screen, not using the GUIBB. So i will need to dynamically decide which view to show on step 2, and since we don't call navigation plug when we use fpm, what is the best way to archive this? How do i design my webdynpro component and the fpm configuration etc...?
    I read from the programming guide about initial screen and variant. But what if my application doesn't need an initial screen and the user choosing step is not at the first step, I can't use variant in this case right?
    thanks.

    Hi
    You can give the dropdown on initial screen and than u can decide which screen  to show on the second (or infact that will we the first step you you have first step as a initial screen.
    How?? :
    1. Create different varients for the second step.
    2. Basis on the Value choosen in the dropdown list, select the appropriate varient using the following code.
      TRY.
            CALL METHOD io_gaf->set_variant
              EXPORTING
                iv_variant_id = 'VAR_CLIENT'.
          CATCH cx_fpm_floorplan .
        ENDTRY.     
    where  VAR_CLIENT  is your varient.
    Hope this will help you.
    Thanks & Regards,
    Arvind

  • Add sales view in Material number

    Hi,
    We have a material, which don't have Sales View.
    How can we add sales view in it.
    But this should be done for only 1 Material. because through oms2 transaction, we can extend according to material type..
    Plz. guide...

    >
    Anil.Sap wrote:
    > We have a material xxxxxx in plant A without sales view (because we are using Production Resource Tools material type, and in our configuration we dont have sales view in it).
    >
    > so we want sales view only in 1 material number.
    >
    > and after add sales view, we have to extend that to plant B.
    >
    > plz guide, how to add sales view in 1 material.
    You can only add a sales view to a material if the material type customizing allows sales views in general.
    you certainly cannot create a sales view for a single material if the material type does not allow sales views.

Maybe you are looking for

  • Ellipsis 7 not working after 3 months

    I purchased an Elipsis 7 for my husband to use while he is out in the field to do minor things such as check and respond to emails. Last week it simply quit working, He took it in to the Verizon store and had a sales rep look at it and sure enough, i

  • Invalid characters in the names of files, folders, volumes.

    I always used without problem special characters in file names, folders, and volumes such as [ - and space and french accents é è ù etc.  Since Maverick, I meet different problems I am inclined to attribute to this practice. Am I right, and if so wha

  • IviDCPwr Configue OVP.vi does not work when enabled is set to true.

    There is an IviDCPwr [MSR] - Output DC Volts.vi example in Labview 2009. There is IviDCPw Configure OVP.vi which is used for enabling or disabling the OVP limit feature. I have tested this VI with E3631A this power supply does not support OVP enable

  • Manually autosacle doesn't work after setting scale Propety node

    Hello,       In the program, I  am using the graph property node for setting the X-scale range.      Now, The zoom tools in the graph palette works, nut the autoscale tools doesn't work. Thanks. Wei Tong. 

  • Non - working day problem

    Hi all, We can insert other type into non-working day by choose Input type W or I or null in T554S. But I can not insert the number of hours. So how to do? Thanks a lot, Quanglv, Edited by: Quang Le Vinh on Oct 9, 2009 11:44 AM