Flexible UI

Hi,
Using the LayoutSet NewsBrowser or NewsExplorer on a folder that has other folders inside, the XML resource files (News, FAQ's) appears without any problem, but the folders doesn't appear, and for each folder, an error message is displayed "XML resource renderer does not support this type of resource!".
Any idea?
Version History
6.0.2.4.7.Enterprise_Portal_Service_Pack_2
6.0.2.4.6_ContentManagement_Collaboration
Thanks and Regards,
John

Hi Detlev,
Sorry for the delay.
We don't want to exlude the folders, we would like keep it, the problem is, instead of appearing the folder name, is displayed the error message and below the actions (details, delete, …).
At first, we thought that could have been an error in the configuration of LayoutSet, but then, we tried on other two environments, with the default LayoutSet configuration and we still get, on the three environments, the same error message.
Any idea?
Thanks and Regards,
John

Similar Messages

  • How can we get Apple to do a better job on iCal? Now we can't even specify snooze times. Please give us the flexibility we need--minute, hour, day, week, month, year alerts that we can set for each event we add to our calendar.

    I'm liking Mountain Lion a lot so far, except for the new iCal performance. iCal has never been as good as the MS Office calendar, not even as good looking  much less flexible and, for me at least, a lot less intuitive. And that points to another big problem Apple's increasing totalitarianism has created: I would change back to the MS Office calendar in a micro-second if it weren't for the fact that Apple has never created a way for us to coordinate our iPhones with the Office calendar. My life with Apple goes back to the birth of the Mac and it at once gives me chuckles and fits of righteous indignation that for decades Apple criticized (and sued) Microsoft for its attempts to channel users of its products to other MS products by making 'third party' products not work well with MS software. There's a lot of truth to the idea that Apple is becoming a bully in its steady insistence on giving us fewer and fewer ways of putting together software and hardware sets that we think are the best for us. Whatever happened to Apple's free spirit!?!?!?!?
    I can do all the whinging above because Apple has always built exceptional products and because even now its service performance is fifty times as good as any other company I do business with.  If you doubt that, just try to get any kind of support from Microsoft.

    No point in whinging here, we are all just users. Use Apple feedback.

  • Flexible planning

    Hi
    We are using S076 SOP table for SD report (Sales Forecast Report ).  This has only material number as key, where as we want to know if flexible planning will give material/shipto as key for forecast.
    Thanks In advance .

    Hi
    I am trying to create new information structure copying S076 . Could I request you to clarify below points pls .
    1. Which application I have to select in the field , does this application selection makes any difference ?
    2.What type of IS ( Information Structure ) I need to select in the field .
    3.If I copy S076 and trying to create new information structure , in key figures ,field " material " is not there . I need combination of material / ship to party , what have I to do for this problem pls ....
    Does these fields display vary depending upon the application selection ?
    Thanks

  • Is There ANY Flexibility in BS Acct Assignment for Sales/Purchase Invoices?

    We are about to go live; and, we have a Chart of Accts that not only breaks out our Income Statement accounts by division, but also does so for our Balance Sheet accounts.  Even so, apparently B1 does not have the flexibility to modify the balance sheet acccounts used for tracking Accounts Receivables and Accounts Payables at the marketing document level.  Since Business Partners may be purchasing (in the case of Customers) or selling (in the case of vendors) from any of our three divisions, we cannot setup a single AR or AP account in the BP record.  So, how do we best modify the B1 setup to have a manageable level of work to separate these transactions out into the multiple accounts?  Our ultimate goal is to be able to create three different BS, IS and SCF reports for each division.  However, the complexities of this larger task will be addressed later.  We have the SDK and are willing to make system modifications using this tool if we can achieve our desired result.
    Thank you for any and all assistance!
    Message was edited by: Scott Young
    I suppose I should also ask how cash and cash-equivalent BS accounts could be split out when receiving payment...

    Felipe, I GREATLY appreciate your response.  Your comments regarding means to simplify my creation of trials balances is appreciated.  However, I will not have the opportunity to put this to good use if I am not able to separate out the original data entry.
    I still do not see how to modify the default AR or AP account on a document.  Recall, any of my customers may be purchasing from any of the company's three divisions; and, any of my vendors may be selling to any of the three divisions.  Further, we do not want to maintain separate BP records for each customer, since this will require undue maintenance and/or problems with reporting.  I simply wish to have control of the AR and AP accounts used in the journal entry associated with an AR Invoice and AP Invoice.  I want to use division-specific balance sheet accounts instead of the one noted in the BP record.
    If I can obtain an answer for this, this I would also be interested in how to perform the same split for the several other balance sheet accounts, including (but not limited to) the Goods Clearing account, Inventory Returns account, Cash at Bank account, AR Adjustments account, et al.
    Thank you again!  If SDK changes are needed, this would be fine; but, any example of how to perform the code changes would be very much appreciated.  This would be my first jounral entry modification with the SDK.
    Kind Regards,
    Scott Young

  • How do I pass an array of structs to a C function using the dll flexible prototype adapter?

    What I want to do is pass into a C dll function a variably sized Array of structs of type TPS_Data. My Code compiles but when I run it in TestStand, I get an error -17001; Program Error. "Cannot allocate 0 size buffer Error in parameter 2, 'OpenFrdData'."
    I've allocated the Array of structs, and all of the information is there before I call my function, so is it my prototype? Or am I asking too much of the DLL Flexible Prototype Adapter to pass an Array of Structs?
    I can pass in a single struct of type TPS_Data and that works, but not an array.
    Here's the relevent code:
    typedef struct TPS_DATA
    char Report_Number[256];
    char System_Name[256];
    char Open_Date[256];
    char UUT_Part_Number[256];
    char UUT_Serial_Number[256];
    char UUT_Name[256];
    char Open_Employee_Name[256];
    char Open_Employee_Number[256];
    char Close_Employee_Name[256];
    char Close_Employee_Number[256];
    char Close_Date[256];
    } TPS_Data;
    typedef struct TPS_DATA_ARRAY
    TPS_Data DataRecord;
    } TPS_DataArray;
    long __declspec(dllexport) __stdcall OpenDialog (CAObjHandle Context, TPS_DataArray *TpsData[], const char *psFaultStr, char *sComments, const int nCount);

    OK,
    I can pass the data to the DLL function, using the following types:
    typedef struct StringArrayType
    char string[10][256];
    } StringArray;
    typedef struct MultiStringArrayType
    StringArray Record[10];
    } MultiStringArray;
    void __declspec(dllexport) __stdcall ATP_TestStructPassing(StringArray Strings)
    return;
    void __declspec(dllexport) __stdcall ATP_TestMultiStructPassing(MultiStringArray *Strings)
    return;
    But when the MultiStruct function Exits, TestStand reports an Error:
    -17501 "Unexpected Operating System Error" Source: 'TSAPI'
    There doesn't seem to be a way around this, and once the error occurs, I have to force quit TestStand. I've included the sequence file, and the dll code can be compiled from the fun
    ctions shown above.
    Any thoughts on how to get around this error would be greatly appreciated.
    Attachments:
    StructArrayPassing.seq ‏16 KB

  • Configuration setting that needs to be changed to allow flexibility copy and to paste formatted text

    what is the configuration setting in Contribute that needs to be changed to allow me flexibility copy and to paste formatted text?
    Example I am unable to copy and paste formatted text within contribute and the line that is represented under the heading below
    Research Analysis
    This is the  research and analysis page. The most recent analysis for all companies listed on the

    I'm not familiar with 'styled text'- which does not mean much other than it's on a very long list of things I don't know. But I do know you can cut several steps out here:
    If your script works so far then you can clean it up:
    tell application "FileMaker Developer"
    open "MacintoshHD:Users:stuart:Desktop:Practice.fp7"
    set mytext to record 2 of table 1 of database 1 as styled text
    end tell
    tell application "Microsoft Word"
    activate
    set myRange to create range active document start 0 end 0
    insert text (mytext) at myRange
    end tell
    Also try:
    set mytext to contents of record 2 of table 1 of database 1 as styled text
    Reese

  • How to develop a report in Crystal with flexible database name?

    Hello
    I am a Project Manager of a project of developing reports in Crystal 11.
    The idea is to develop reports on top of the content in MS SQL tables.
    The initial testing and demonstration to the customer is done within the Crystal development environment.
    In a later stage, we need to integrate the reports with C# WPF application, using Crystal control.
    We currently use ODBC connections.
    We want the flexibility to set the actual database dynamically, by using the "default database" of the ODBC connection (or any other way). In other words, we want not just the flexibility to change the database server, but work with different database names, like "ProductDB_TEST", "ProductDB_PROD" etc. - without changing the report.
    Unfortunately, we got the answer from the developer that the database name should be pre-defined for a given report. Although the connection can be set to another server, the DB name cannot be set dynamically.
    Looking into the "Database" -> "Show SQL Query" menu, we see the following piece inside the query:
    INNER JOIN "DATABASE_NAME"."dbo"."IncidentTypeSnapshotData"
    So it looks like the query itself contains the DB name.
    Is it really a limitation of Crystal, or rather the developer working on the project doesn't know the trick?
    Thanks for any hint
    Max

    CR CR 2011 / "Crystal reports For Visual Studio 2010", you are correct.
    Re. the database thinggy. You can connect to a database via ODBC, OLE DB or in some instances natively. Once a report is created you an change the datasource. A good sample app on how to do this is  csharp_win_dbengine / vb_win_dbengine. A link to the samples is here:
    Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    More info on connecting to dbs and changing them is in the developer help files:
    SAP Crystal Reports .NET SDK Developer Guide
    SAP Crystal Reports .NET API Guide
    More info on CR APIs for .NET (applies to all versions of CR and VS):
    Crystal Reports for Visual Studio 2005 Walkthro... | SCN
    You can also use ADO .NET Datasets and in this way you handle the database connections in your app. A good sample is csharp_win_adodotnet (also available in VB) - same link as above.
    More info on datasets:
    Crystal Reports Guide To ADO.NET
    Crystal Reports for Visual Studio .NET - Walkthrough - Reporting Off ADO.NET Datasets
    For more complicated operations (e.g.; changing a report from ODBC to OLE DB, changing one table, etc., you will want to use the InProc RAS SDK that is also available in CRVS. Developer help files are here:
    Report Application Server .NET SDK Developer Guide
    Report Application Server .NET API Guide
    Sample apps are here:
    NET RAS SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    and here:
    Crystal Reports .NET In Process RAS (Unmanaged) SDK Sample Applications
    More info on RAS SDK:
    How to Use The RAS SDK .NET With In-Process RAS Server
    Lastly, do use the search box in the top right corner. I find simple search strings such as 'crystal net parameter' return best results (KBAs, Blogs, docs, wikis, discussions and more).
    - Ludek

  • Team calibration in flexible PMS EHP4

    Hi PMS Gurus, Need your expert advise.  We are implementing   flexible PMS on EHP4 .  Team calibration is a standard  feature of Predefined  PMS (EHP4 onwards).   Due to heavy customization we are not implementing Predefined PMS but going for Flexible PMS.  Our client has specifically asked for  Team calibration feature. Now can we import Team calibration feature from  Predefined PMS for flexible solution. Or  is there any other workaround for building  this feature.  Or do we have to custom develop Team Calibration feature. Regards Tarun

    Hi Tarun,
    Did you manage to find answer to your above question??
    All these years, we have been going with custom development for this forced distribution bell curve functionality. and now when SAP comes up with the Team calibration functionality, it limits to only Predefined templates. Wonder why SAP releases such nice functionalities in bits and pieces..
    Let me know how you went ahead with developing this functionality; whether you developed an entirely custom application or were you able to reuse the existing Team calibration webdynpro?
    Regards
    Shashank

  • Flexible Report - choose the cols (and # of cols) on the fly - PDF

    Hi
    I have a user community who would like to be able to choose the columns in a "Flexible Report" when they want to run a report to output to the browser, and then to PDF.
    Now, I've played around a bit with setting up a number of page items - say 5 - called COL1..COL5 and setting the values from list-boxes and then running a report SQL:-
    Select :col1 COL1,
    :col5 COL5
    from my_table
    etc.
    This produces the data, but its pretty tacky and the column names are COL1, COL2.... - also tacky, and the number of columns is fixed.
    Anyone got any slick ideas on how to do this so the column names and # are variable?
    I have tried a javascript example (posted elsewhere in the forum) that runs the report with all it's columns, and allows the columns to be shown / hidden depending on the state of a ccheckbox. This is very cool but it doesn't translate the flexibility to PDF output.
    For those who have used Discoverer - I need a mini-Discoverer reportwriter!!
    Any input greatfully received - Thanks in anticipation.
    Mike
    Message was edited by:
    Mike Mac

    hi
    see this thread,it may help you...
    column name/table name
    regards
    vally.s

  • Verizon's lack of flexibility shows they don't value their customers

    Facts -
    I have three phones on my plan, two of which are smart phones with data plans.  The third is a extra phone that I had given to my in-laws for safety.   The third phone is a extremely basic phone and cost $9.99 month for basic service and no texting (of my typically $170 phone bill) to have on my account.  The contract expires in July 2013 on this third phone.   My in-laws recently lost the phone, and no longer want to use the phone anymore.  Thus, for  months I have paid the bill regardless that it doesn't exists anymore.   Recently, I was asked to go ahead and upgrade the phone, which Verizon would absolutely do in a heart beat even though the contract is not up until July 2013.   Not having use for this extra line, I said I didn't want to upgrade but I would like to cancel the line.  I was told that would cost me $150 to "early" terminate my contract (four months early).  I understand that I signed a contract but for the following reasons I thought they would waive any such fee:
    1. I've been a paying customer for more than 15 years.
    2. I still have multiple phones on the account that run over $150 month
    3. The amount of the monthly revenue they will be losing is $9.99 month for 4 months (yep, $40.00).
    4. I no longer have the phone and it has not been used for several  months.  
    When speaking to a customer service manager who was condescending and unwilling to listen or to be empathic to my situation, I was told the following things that i believe  to be untrue:
    1. The system won't allow for these types of transactions.
    2. I was told the retail value of  this basic cell phone was over well over $150 which I doubt is true.  You should see this phone, it looks like something you get in the cracker jack box.  
    3. That it was my fault for signing the contract in the first place, which was really insulting.
    I understand all of these points and my point back to here is that due to my continue relationship with the company, it seems to me like cutting me a break in terminating my contract four months early would help make me happy and they would also retain the rest of my business.   She wanted no parts of that, however, she did offer to upgrade me AGAIN, which was rather insulting.   I'm seriously considering leaving verizon for another company.   The fact that some are offering to pay out contract to get your business will also factor into my decision.  
    At a minimum, if  customer service was flexible, they would have offered to make the early termination fee equal to the four months ($40) that I was ending my contract early, which I would have paid in order to not have to call again in 4 months to make the cancellation.   That way, I would not have to pay the 4 dollars a month  in taxes and fees that they charge on top of the service component of the bill for a phone that no longer exists.  
    Sincerely,
    One Bent Verizon Customer

    aphicks wrote:
    I understand that view point, however, as I laid out several other factors in my email that should probably be considered.
    Nope. EVERYONE has a reason why they should be let out of a contract. EVERYONE.
    Flexibility for the greater good of the financial relationship I have with Verizon would be better served by working out a deal that was acceptable for both sides.  I clearly understand the contract that I signed, the intent of that contract and the underlying economics of the contract from both my perspective and from Verizon's perspective.  My understanding includes ETFs and why they are part of the contract.
    Great you understand them, now pay the ETF or wait 4 months.
    It's pretty simple like you said, they decided to collect $40 more dollars in revenue and I more than likely will find another service provider that might provide the "flexibility" I so desire. As a note, this would not had even come up if I wasn't solicited to upgrade early for the phone I speak of.  I am not trying to pull one over on this company.  I asked for a concession on their part by  terminating 1 add-on line ($10) on my already substantial monthly bill four months early.
    If you are going to leave over $40 then you're not much of a customer. Besides you have other phones do you not? Are they not also subject to ETFs? Also you will NOT find another provider that offers the "flexibility" you want.

  • Flexible Performance-Error in creation of corporate goals!

    Hi,
    We are facing a problem, where an error ( u201CEntered dates must be in the current yearu2019 ) is thrown by system while creating Goals spanning two years i.e. our Appraisal Year is from 01.03.2011 to 30.04.2012. Hence we want to create goals for period starting from 01.03.2011 to 30.04.2012.
    Please help, how to resolve this error.
    Thanks,
    Prashant

    Hi Prashant
    For the flexible performance there is the enhancement implementation HRHAP00GOAL_PERIOD_GEN to check specific for the goal creation.
    It has the following methods:
    IF_HAP_GOAL_PERIOD~PERIOD_DEFAULTING     Default the validity period for goals/cascading/rating
    IF_HAP_GOAL_PERIOD~PERIOD_CHECKING     Check the entered validity period for goals/cascading/rating
    IF_HAP_GOAL_PERIOD~PERIOD_VISIBILITY     Determine whether the period can be changed by the user
    You would need to change the implementation class. The standard is CL_HAP_GOAL_PERIOD_GEN.
    Best Regards
    Raquel

  • Loading Master Data with Flexible Update

    Hi,
    I have created an Infoobject - Business Partner (Master Data bearing characteristics). The attributes to this are Region, Sales Person, Industry code which are master bearing characteristic as well.
    I need to load data to the business partner from a csv file.
    The layout of the CSV file is -
    BP number, BP text (long Text), Region Code, Region Desc (Med Text), Sales Person Code, Sales Person Desc (Med Text), Industry Code, Industry description (Med Text).
    How do I define the infosource to load this data.
    Appreciate any help with this.
    Thank You,
    Prashanth

    Hi,
    First of all, I need to note that there are two kind of Infosources: with direct and flexible update.
    If you choose a direct IS, then in the creating of the IS you just enter the name of the infoobject where you are going to load data. The system will create a IS (comm. structure). Enter this IS for changing. The system will propose you the communication structure,  click on a bottom icon “Transfer structure/Transfer rules”, choose as a ‘Source system’ your flat file system. Agree with the system when it asks you to save assignments (up to 3 times). Activate TRs. Then click in the field for Datasource. You may see there another datasources (for texts, attributes and hierarchies). Choose one by one another datasources with their activation.
    Now you can create an infopackage for a load – you can choose what kind of package it is going to be – for loading texts, attributes or hierarchies.
    Note that in this case the structure of the flat file is proposed by the system and you need just prepare the flat file corresponding to the proposed structure (different for each of 3 possible datasources). Execute infopackage.
    If you use a flexible IS, then you may insert into comm. structure the fields that you think you may need in the master data. Note that here you may have not only attributes but TEXTS also. Save a comm. structure. Assign a flat file source system and activate a TRs.
    After that in RSA1-dataproviders tab – right click – insert IO as a data target – choose your IO. Refresh the screen. You’ll see up to three data targets. Create update rules for each of them. In URs map the fields in the IS with the fields in URs.
    Best regards,
    Eugene

  • Error in Data Transfer : From CO-PA to SOP Flexible Planning

    Hi Friends
    I am working on a Scenario of Transferring CO-PA data to Flexible Planning, I am encountering few problems, I have done the followig steps, request you to check and get back to me..
    The following configuration steps are done with Example;
    Characteristic assignment
    u2022 Sales Organization
    u2022 Region
    u2022 Plant
    u2022 Material Number
    u2022 Material Group
    Key figure(s) assignment
    u2022 Sales Quantity
    Assignment: Information structure - operating concern
    S555 u2013 Z001
    Define activities Z1
    Mass Processing Job : ZSO-PA
    We are able to transfer data from CO-PA to standard SOP, But we tried for transfer to Flexible Planning SOP by creating Mass Processing Job setting as below configuration path.
    Production -> Sales & Operations Planning (SOP) ->Functions -> Mass Processing -> Transfer LIS / CO-PA
    After executing Job MC8G - Schedule, we checked in Tcode - MC8I u2013 Check, Status: Processed with errors, And also data are not displayed in Tcode : MC95 for Material & active version.
    We couldnu2019t find log for error status.
    What is the method / Procedure for transfer data to Flexible Planning SOP?
    Please get back to me.

    Dear,
    Status:            Processed with errors ok
    Activities checked:? what is the error message here like
       COPY
           Planning type in activity and job not identical
           Planning type of job:  SOPKAPAM
           Plng. type of activity:Z004PLAN
    When checking a mass processing job in SOP/flexible planning (Transaction MC8I), in the log error message "Activity and COPA profile have different planning versions?
    Or planned/actual indicator in the COPA profile?
    Version should be        A00
    Please check the MC8S. Then an Avtivity in MC8T
    after you create the job in MC8D with the acitivity you have defined for your info structure.
    After that check in MD62 for plan value.
    Regards,
    R.Brahmankar

  • Adobe interactive form for flexible compensation plan

    Dear Experts
    I am new to adobe interactive form.  I have to develop a form for   Flexible Compensation Plan Structure   in this form when an employee enter his employee id all the data should be displayed in the form and side wise a blank text field 
    will come for few  fields in which user fill the data according to his requirement .Is there any function module  is there to retrieve the data. or please suggest the data how to do?
    Scenario in Details
       Employee  ID                        001
       Employee Name                  XYZ
       Grade Code                          M4
       Department Code              SAP competency Center
       Salary Head                                   ||     Standard Amount                                          || Desired amount                   
      Basic Salary                                   ||        18,342                                                          || 18,342
    Children education allowance     ||        2,201                                                           || 2,201   (Blank text field user enter the value)    
    Transport allowance                    ||         2,000                                                            || 2,000 ( Blank text field field user enter the value)               
    is there any function module is available or i have to create the function module . Experts please suggest the idea in steps.
    Thanks in advance.
    Chitta Ranjan Mahato
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on May 12, 2011 4:23 PM

    Hi,
    Pleaes find the sample codes for WD Java...
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    Regards,
    <i><b>Raja Sekhar</b></i>

  • More flexible imports for Camera Raw please

    Even if there are NO changes to the settings between individual (non-sequential) images, each import of a camera raw file must be approved by clicking okay for each file. In projects which involve hundreds (thousands?) of unique stills this is needlessly tedious.
    Instead, the option of one CR dialogue would suffice that could (again, optionally) be applied to all.
    Adopting Photoshop’s Camera raw dialogue’s ability to process BATCH images in the window and opening them all in PS seems like a natural solution to AE import hangup.
    This should also  allow for the option to re-open the dialogue after import on one or more stills to modify the contents and then close.
    In addition the fact that AE insists that a still need be at least one full second seems like an unnecessary restriction. Why is it not possible to import an image as just one frame?
    The modification I suggest would saves tremendous time and allows for incredible flexibility.
    We had an animation project where we have to manipulate1200 stills in After Effects to create an animation. Since the stills were not shot sequentially and the editing/compositing needed to happen within AE, importing as a sequence was not an option. The impediments in basic import functions added a full day's work just to import the files(!). We ended up selecting the images in LR, applying minor correction, exporting the selects as DNG files, importing them into AE (clicking the OKAY button in the CR dialogue for each of 1200 images) then selecting all the images and creating proxies so they were easier and faster to work with.  (note: we ended up buying a proxy creator script because AE won’t generate proxies for multiple items in one action)
    This is not an isolated case for one project. We require this function all the time. But the tedious importing of 1200 images in one project really broke our morale.
    Thank you for your consideration.
    ><({(º>

    If you have a suggestion for making AE better, please file a feature request. They get tracked and they prioritize what the AE team puts their (limited) resources to. Forum posts can't be tracked, but they are a good way to suggest to other AE users that there might be a new feature they should also request.

  • In windows 8 how do you make the bookmarks column "flexible"? I used to be able to make it narrower.

    Windows 8 how do you make the bookmarks column "flexible"?

    Is the problem with the Bookmarks Sidebar -- the one you can open and close by pressing Ctrl+b? It does seem to have a minimum width and won't get narrower than that, but I'm not sure whether you are running into that limitation or whether for some reason you are not getting the resizing arrow when you mouse over the thin border between the sidebar and the page.

Maybe you are looking for

  • Creating a service program in inventory results in 'no data found error'

    Hi, i tried creating a service program as was given in the sep 2001 issue of the crm newsletter. While saving the item it results in the following error: FRM-40735 ON-INSERT trigger raised unhandled exception ORA-01653 ORA-01403 No data Found What co

  • Service product upload to CRM

    Hi All, I am trying to upload service product data to CRM system. What is the recommended method of doing that? I could get my hands on idoc type CRMXIF_PRODUCT_SERVICE_SAVE. Is this something we can use for service product uploading to CRM? Your inp

  • Missing Submit button

    I have Captivate 3 and Flash 8. I exported a Captivate project to Flash (so I could add some code and checkmarks to a menu). The quiz questions don't have a Submit button. Is there some trick to getting the Submit button to be exported to the fla? Is

  • How do i make a simple title in fcpx?

    okay stupid question, how can I make a simple title without any preadjusted parameters/animation/etc..?

  • Wmware fusion 3.1.3, winxp and Lion, and other questions

    Looks like I finally have to upgrade to Lion [yes, I know, late to the party]. I have 2008 aluminum MB, running 10.6.8, WMware fusion 3.1.3 and WinXP. I use windows for only three applications but unfortunately they are important. My questions: 1. Wh