Retail Execution Customization question

     Attached are two screenshots of a VISIT.  [Account information redacted]
What I am trying to ascertain is Can we manipulate the functionality of the button highlighted in the first screen (the cancel button) to change the verbage of the popup in the second?
We don't want to maniuplate the functionality so much as just he verbage on the Yes/No screen. 
I've been looking through the config XML, with not much luck.  IS this something inside the XML where we could direct it to a ZClass, or is this a core customization item?
Message was edited by: Michael Appleby

Hi Michael,
I guess you are using a cloud based REX solution ..right?
On the REX mobile app , there is a way to modify the XML labels and put in your own verbiage but i'm sure if the same can be done on the cloud based solution
rgds
Venkat

Similar Messages

  • Retail Execution Application Device Registration Issues

    Hello Community,
    I am having issues registering the Retail Execution application with a user in CRM.
    I am testing with an iOS device where I downloaded the application from the app store and an Android device where I got the APK from the SAP marketplace.
    The guide I am following is the Administrator's Guide SAP Retail Execution 3.2.0.
    There are a few issues i've come across which I think might be contributing to my devices not enrolling.
    I've completed the setup of the environment till the point in the documentation for Data Change Notification where I need to create an RFC connection to the SMP server.
    I entered the IP address for the SUP server with the port as 80. Is port 80 correct?
    The username ive setup as supAdmin@Admin with the password.
    When I test the connection I get a : Status HTTP Response 404 error.
    Another issue I have is that in the documentation under the section enrolling a device using the Relay Server, all the fields are referring to SMP username, SMP Farm ID, SMP Activation code and so on. The connection details I have used in other apps are as follows:
    Server : <ip of relay server>
    Farm : Relay server Farm ID
    Username : jcommerford@crm           (CRM login ID @ security configuration - crm is my HTTPAuthentication security configuration I created in SUP)
    password :
    Port : 80 (relay server port)
    URL suffix : leave blank
    Domain : The new domain I created in SUP and where the Rex MBO is deployed.
    So it isnt making sense as to what details need to go into here.
    Lastly...
    What is the absolute minimum setup of the CRM system and SUP to register a user through the relay server?
    I would like to comment that I havnt performed the initial download of Master Data using DCN but didnt think this was needed to enrol a device. Other than that the guide was followed and configuration done according to it.
    Let me know if anymore information is needed as I am very stressed to get this issue sorted out.
    Thank you
    Jared

    Hello Jared
    Has the registration worked without the Relay server setup? I would suggest you try that first.
    I am assuming you already set the SM59 destinations for CRM to SMP and trusted RFC to corresponding ECC (but this is not necessarily the issue, because the registration is failing).
    Please confirm that the RFC Destination is set as follows (use the supAdmin user on the Logon & Security page)
    Check the security provider on SMP (your's may be different but I am using the following for POC and it works)
    Could you please confirm if the REX package was deployed correctly on the SMP server by selecting the connection pools for both CRM and ECC for corresponding MBO's
    Please post a log of the SMP server once you switch to direct registration to SMP (without relay server)
    Thanks
    Raza.

  • Specifics on CEFIelds in SAP Retail Execution

    Apologies if this has been answered, but I couldn't find it in the threads, and the documentaiton (which I do have before me) isn't as clear as I'd prefer.
    We're tring to add a field (initially just in one place) of course using the CE method.  My question pertains to  the specific on adding that to the configuration XML  (We're changing it for Android specifically)
    We're adding an extra field to the Customer List, so in addition to the partner number, we'd have a legacy account number. 
    Under the View, CustomerList, under Section id="detail1" under the <field> tag for text2 which is the PARTNER,
    I would add this code:
    <section
         id="LegacyAcctNum1_1"
         title="LegacyAcctNum"
         Label="Legacy Acct #"
         for="CEBusinessPartnerMBO">
         <field
              id="LegacyAcct"
              type="INTEGER"
              editable=""
              value="LEGACY_ACCT"/>
    </section>
    My questions are as follows:
    1) would adding a new section within the current section (detail1) cause any issues?
    2) the id, and title should match up the the MBO fields of the same name?  or is the ID simply for the XML, and the title and/or lable the MBO field?
    3) If the plumbing isn't put into place yet would this field show up without data, or would there simply be a blank?
    The Extensibilty Customizing Guide is a great help, but not as detailed as a beginner like I needs to be confidient in his customization.   Thanks in advance.

    Hi,
    Option 1: If you use "Scales group" in POS view of Article Master, then this information will trigger to your 3rd Party POS System.
    Option 2: This can be configured using your 3rd party POS System plus unused article master data field.
    Now,  you can search SKUs at each Till.
    Pls interact with your POS Consultant.
    Regards,
    Muralidhara

  • For r in (select) loop: execution plan question

    Hi there,
    I have a procedure which does the following (on Oracle 11.1.0.7):
    begin
      for r in (select col1,max(col2) as col2 from tab@remote_db group by col1 ) loop
        update tab2
           set col_a = r.co1
           where col_b = r.col2;
        commit;
      end loop;
    end;The subselect from the remote table delivers about 4000 rows.
    When executing fast, the procedure runs about 20 seconds, the trace shows that the select is executed 1 time, fetches 49 times. The update executes 4000 times.
    When executing slow, the procedure runs about 20 minutes (!), the trace shows that the select is executed 1 times, fetches 4000 times. The update executes 4000 times.
    This happens without changing the code, from the same client (sqlplus on the server, same version as database).
    Can anyone probably give me a clue how I could track down the plsql execution steps like the optimizer trace that let you see why a certain sqlplan was not taken or what might cause that change in behavior?
    I cannot produce that behavior at will - most times the procedure runs fast.
    thanks,
    Heimo

    Hi again,
    regarding the "faulty test" and what is fastest: user tested both versions and came up with the for-loop to satisfy him best. I would, of course, utilize event 10046 and tkprof and a repeatable dataset to have solid data. Sorry for not setting enough emphasis on my real question, which is described in the following.
    But, and that is what is really causing awkward feelings for me: when doing plain sql, I can use events 10046, 10053 and learn from the tracefiles why a decision was taken (now that is making me feel good, actually). But when it comes to plsql, I have not yet such a handy toolset that helps me understand what influences the plsql-engine to go this or that way.
    Thus, I valued the posts pointing to dbms_trace and plsql_optimization_level as helpful answers.
    Because of that I learned about the views %_PLSQL_OBJECT_SETTINGS and remembered to check for other plsql-initora settings.
    I also verified that neither the 10046 nor the 10053 trace files contain any reference to plsql-parameters/settings, and that the 10053 trace only shows the subselect and update, but no info if it would "bulkify" or not.
    Meanwhile I did start to utilize dbms_trace (which causes the statement to go the unbulkifyed by the way) and maybe I can learn from that output or from following posts?
    best regards
    Heimo

  • OBIA 7963 - HR Analytics - Customization Question

    **Issue Description:** : OOTB Headcount calculations should exclude group of people who are called as non executive directors (NED). There are no indicators/ Flag in the source system to identify who is NED in a particular point in time. There are some CSV files (Outside source system) with the list of employee who they identified as NED between two dates
    Proposed Solution:
    I am planning to use this CSV as lookup file for the incoming source data and stamp employee records with NED_IND (Y/N or 1/0) between two dates, however I have following questions
    1.     Should we stamp this NED_IND flag in Employee dimension (W_EMPLOYEE_D) which is designed as Type 2 SCD OOTB or
    2.     Should we stamp this in workforce fact table (W_WRKFC_EVT_MONTH_F) as a NED_IND indicator flag (1 or 0), so that this flag will be available as part of snapshot calculations
    Considering the fact that OOTB Workforce fact process is reasonably complicated with series of mappings both in Full and Incremental load, would you suggest any of above mentioned solutions or any better solution so that we can reduce unnecessary customization of OOTB ETL and preserve existing logic?
    Thanks in advance for your time
    Venkat G

    A few things to consider:
    1. If you are trying to alter the actual "Headcount" metric, then you need to edit the FACT tables. This includes the EVENT as well as the MONTHLY snapshot. You may also need to modify the logic of the "ACTIVE/INACTIVE" flag...as this is what is used to calculate the headcounts. Essentially, edit the SDE to bring in the NED FLAG, and then modify the logic for how OOTB "ACTIVE/INACTIVE" is calculated.
    2. If you are running reports that use EMPLOYEE DImension, and you want to also see if the Employee is NED or NOT NED, then yes, you should also add this to the Employee Dim. Also, suppose that an employee can BECOME NED...if you need to capture this history, then you need to add the SCD logic. Also, if an existing employee can become NED..you may have to alter the incremental logic to modify both the DIM and the FACT.
    What may be simpler is just to modify the SDE mapplet to use the LOOKUP for NED..and flag those as INACTIVE in the SDE itself...in which case you do not have to modify the downstream ETLs.
    Hope that helps.  Pls mark correct or helpful.

  • AIF Customization Questions

    Like many Arch users I have a set of home-brew bash scripts that I use to customize my system post install. After my most recent clean up & refactoring of these scripts I had the sinking feeling that I was simply reimplementing a subset of AIF and decided to take another look at using AIF as my custom install solution.
    AIF looks great. The first couple times I peeked at it I didn't get it, but those were early days when I was fresh to Arch and still getting to grips with how things worked. I feel like I have more of a handle on things now and I'd like to put together a "gentle introduction" page about AIF at some point, based on my own "learning AIF" notes that I've been compiling. I have some outstanding questions that I'd like to get some feedback on, listed below.
    AIF INFORMATION SOURCES
    I have used a variety of sources to draw on during my research into AIF. I would appreciate any pointers to other sources that I might be missing.
    Dieter's github AIF repo and custom profile/procedure
    https://github.com/Dieterbe/aif
    https://github.com/Dieterbe/aif/blob/master/README
    https://github.com/Dieterbe/aif/tree/master/unofficial
    Arch releng mailing list
    http://mailman.archlinux.org/pipermail/arch-releng/
    Arch BBS
    http://www.google.com/search?sourceid=c … ux.org+aif
    Arch Wiki
    http://wiki.archlinux.org/index.php/Off … tall_Guide
    https://wiki.archlinux.org/index.php/AI … ation_File
    Dieter's Talk at FOSDEM 2011
    http://dieter.plaetinck.be/can_we_build … ework.html
    releng changelog with aif details
    http://releng.archlinux.org/isos/Changelog
    AIF Issue Tracking
    https://bugs.archlinux.org/index.php?st … =&do=index
    OUTSTANDING QUESTIONS:
    I have a couple questions that I'd appreciate feedback on. Apologies if I've missed anything obvious.
    QUESTION 1: Custom Config File Installation
    I was reading through the arch-releng mbox archive and am certain I came across a couple mails by Dieter addressing this in 2009, but for the life of me I haven't been able to locate them again. Dieter, I'd welcome your comments here if you have time.
    There is a class of config files that are installed by existing core packages but which require customization in order to properly function on a given system. A good example of this is /etc/acpi/handler.sh .
    To date I have been handling installation of these files in one of several ways:
    heredoc used to write out a file
    keep file in a special overlay subdirectory in relation to my post-install scripts and copy over from there
    With AIF, it is less clear to me what the best approach is (again, I swear I read an arch-releng mail from Dieter about this from 2009). Options I can envision include:
    Custom aif lib to copy a file from a subdirectory, wgetting or a vcs repo. I'm ok with writing this/repourposing my existing code and making it AIF friendly, but not sure this is the best solution. I'm also not sure where the best location for these custom config files would be in relation to the the custom profile (to which they seem most related). I'd like to keep them "close" to the profile itself (i.e. not scatter my profile and config files into disparate repos or directory structures).
    Custom aif function to take heredocs from the AIF profile (since these files are specific to a system) and write them out. This would bloat the the AIF profile a bit, but isn't the worst solution.  I've used this approach before in my custom scripts, it just requires some scripts to easily update the heredocs in the profile from current system configuration.
    Custom package to install just the config (seems needlessly complex, particularly when the package is just to copy over a file, likely on top of a config already installed by another package)
    Unknown AIF native solution. Something I'm missing?
    So what's the best approach to installing these must-customize files during AIF? Any of the above or something I've missed?
    QUESTION 2: daemons, modules, config file values
    This is touched on in a mail from Dieter on Mar 31 2009 (http://mailman.archlinux.org/pipermail/ … 00469.html) but I'm not sure that there is a current best practice solution. If I'm missing a function in AIF, major apologies and someone please point me in the right direction.
    This question is similar to the above question of config files. When an existing config file shouldn't be overwritten completely, what's the current best-practice method of modifying it? Classic example is /etc/rc.conf adding and removing
    daemons, modules, etc.
    Personally, I have a custom lib function I use to add/remove daemons, modules, and individual config file settings (taking into consideration the @daemon variations), and I'm happy to use this as a custom lib in my AIF installs (or clean it up and propose a patch), but I wanted to make sure I'm not duplicating effort here.
    I appreciate anyone that can take a moment to provide information on these issues.

    altercation wrote:
    Dieter, thanks so much for the (amazingly rapid) reply. I'll focus on reviewing the functions you've mentioned. Augeas looks interesting. I'll probably start by repurposing my existing code and will post once that's done.
    A couple final questions:
    Are there any (yours or others) custom AIF profiles/procedures you consider to be good examples (since the unofficial subdir is outdated)? Are your own profiles posted somewhere else on github?
    Are you copying your own custom libs/procedures into /usr/lib/aif/user/* before using them? Or do you reference them otherwise?
    Again, this is a huge help in understanding how to make use of AIF.
    Ironically, all my available "arch dev time" is going into AIF itself.  I once had the goal of completely automatic my home deployments with nice aif configs (in fact, this was the whole reason I started AIF in the first place) but I didn't work on that for a long time.
    About the "own custom things", I forgot how that works, but the README says
    * user modules  -> /usr/lib/aif/user/<module name> (put your own modules here)
    Btw on my blog you can also find somemore information
    Check http://dieter.plaetinck.be/tag/arch
    And to find more about the origins and first thoughts around the project: (contains outdated things)
    http://dieter.plaetinck.be/rethinking_t … l_approach
    http://mailman.archlinux.org/pipermail/ … 02541.html
    https://bbs.archlinux.org/viewtopic.php?id=58110
    Last edited by Dieter@be (2011-08-15 20:42:45)

  • OAF page customization question - help needed urgently!

    Hi,
    To minimize customizations on an OAF page we are trying to handle some validations at the databse layer using a db trigger. The flow is that when the user hits Save on an OAF page and a certain column in a table is updated by the EO, a db trigger set on this column will fire off. Based upon whether the validation went through or not the db trigger might fail
    with an error message. Question is will this message be displayed on the UI without any customizations so that the user knows what happened or will the OAF page just throw a null pointer exception? Also since OAF is writing directly to DB using an EO, will it be too late by the time the trigger kicks in and validates stuff and then based on if there was an error it rollsback the data? Can we rollback the entire transaction or not?
    Please help!

    Adding to Mukul's reply, yes if you are using OAF, let all the control be through the OAF. In your case any error in the DB will be sent back to the user in a very raw way which surely will annoy any user. Also we cann't comment on the rollback status.
    My suggestion is to make use of a callable statement and call a wrapper pl/sql procedure which does all the validations for you (in case you have varied and complex validations) and returns a true or false based on which you can commit the transaction.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • ESS customization question

    Hi ,
    I have a question on W4 customization, in the overview screen i want to add the name and address fields which are not part of W4 model, But these are available on address ess application model , so how to get the rfc's of address application model in to w4 and what steps are involved in the context mapping to make it available in w4 overview screen.please give your inputs.
    Thanks

    Ok ,
    Do one thing
    go to "SE16" 
    Table Name           PA0002
    And "Enter"
    Then give the PERNR no  ( say i want to check the data for pernr "00000001" )
    Then 'execute" or "F8" 
    It will show the data .....( here you can check it )

  • New BBM customization question

    Regarding recently upgraded  BBM version 5.0.1.38
    First off, I have no issue with it...just a question.  I used Bubble style chat.  I noticed the background of the chate bubbles are a blue/grey with a darker grey border.
    Is there anyway to change that?  I'm not liking the grey too much...would prefer white.....silly question perhaps but it would be nice to customize futher.
    Anyone know how or if it is possible?
    Thanks. 

    Hi there,
    Some features were likely changed in the interest of improving performance.  Unfortunately there is no way to change this without changing the style (and even then, you are restricted to the appearance of the style).
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • MDS field customization question

    I'm working on an application that I want to make customizable thru MDS. The part of the application that I am trying to customize is basically simple data entry. I want to use MDS because there are a lot of fields that potentially need data, but everyone uses different subsets of the fields and I would like to give everyone the ability to customize which fields they see on the various pages.
    I thought Oracle Composer might be able to help with this. My initial idea was to put all the fields in a Resource Catalog and let people add them to the page as needed. But I can only find examples of add Task Flows and whole pages to the Catalog, not individual data fields with preset EL. The default Resource Catalog already has the ADF Components page that has individual components, but that seems to be populated from some backing Java, not something declarative and easily customizable.
    So at this point I have 2 questions:
    1. Am I approaching this customization problem correctly? Is there a better way for me to approach the customization aspect?
    2. If there isn't a better way to perform the customizations, can someone point to be a good sample on how to populate a Resource Catalog with individual data fields?
    user756338

    From the SNMP navigator at http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?objectInput=enterprises.9.9.293.1.4.0.3&translate=Translate&submitValue=SUBMIT&submitClicked=true
    this is the fcNameServer Notification which makes sense since the 21 00 00 E0 8B 0F 00 E0 appears to be a fibre channel WWN. So, that is the Cisco-NS-MIB and is a notification. So, assuming I looked up the last digit in the notification in the MIB correctly, the description for 3 is: "This notification is generated by the Name Server when a new entry gets added to the Name Server database."
    Thus, It appears the trap is that that PWWN was registered to the nameserver.

  • ,Retail Integration Customization Process/Guide/Techniques

    How can i get the information on the Retail Customization techniques.As what ever the document available in the Oracle site mostly deals about the whole rib.
    I just want some information/standard process or steps to customize the RIB (like RIB for RMS,SIM etc ) for different customers.
    If some one could help it will be great.
    Thanks in Advance,
    Edited by: user11095621 on May 7, 2009 4:29 PM

    Yes, I know the process that you describe.
    The RIB did not fulfill our integration requirements on a few points:
    - not all needed message types and/or details are being published.
    (An Oracle Retail senior consultant said to me that if we were missing information in the RIB, we had to reconsider our integration requirements, as they where likely to be not a valid retail scenario...)
    - it is a publish/subscribe mechanism (JMS), while we also need request/response type integration (RSL provides something like this but has quite a short list of services and is also focused quite on the Oracle Retail internal architecture).
    - it is not an ESB
    (Now when you also purchase the BI Publisher option to the Oracle Application server for the Oracle Retail operational report, you need the Enterprise Edition of the OAS to be allowed to buy that OAS BIP option, and the OAS-EE comes wth the Oracle ESB (at least before the BEA acquisition) - we chose however for a different ESB, Progress Sonic.
    - the RIB message model (any source specific datamodel) is not a valid source for a true canonical data model, as the enterprise canonical encompasses more attributes and business objects.
    - the level of documentation on customization can be improved
    We do not consult the database directly, in the sense that we build a plsql package with some custom functions, e.g. f_get_season_for_item(i_item_nr), and wrap them with Java and OC4J as a SOAP webservice (using the JPublisher framework). See it like this, we wrapped the database in a custom integration layer, the ESB processes interact with that custom layer, and in case of upgrade of RMS, we need to re-fit the integration wrapper, limiting the impact of the upgrade to there (except for some bigger changes) and hopefully not impacting the ESB processes.
    Of course this approach is also not ideal - but we wanted the RIB to stay vanilla and blackbox. But integration is not ideal ever - especially when for a message or service based integration architecture you need to rely on the messages and services that the application vendor has provided. Oracle Retail is the best in that respect, our other ERP/OLTP systems up to now do not do anything with SOAP/JMS.
    Additionally we have a different messaging system that is the core of our enterprise integration (Progress Sonic MQ), and RIB is just one of the several sources/targets for that system. Other systems post to the Sonic MQ - that is our core integration bus. Where possible we post back to the RIB from our ESB processes.
    We are also building more classical integration using Oracle Warehouse Builder and PLSQL to create flatfiles and create custom batches - directly accessing the RMS data model - there is just no other solution. (We have decided to ban custom Pro*C, and use PLSQL and OWB where needed - yes OWB also for non-ETL style processes - OWB has a great advantage over PLSQL: you generate code and you don't write code, and it comes with the database license.)
    And then we also have to fill our RDW and Corporate Datawarehouse - but that's a whole other piece of cake.
    PS: what is the ESB that you use?
    Regards,
    Erik

  • Vcac6.x blueprint customization question/problem

    Hi Guys,
    I just started with Vcac6.x blueprint customization
    I have a problem with my new blueprint that i have created concerning the customization
    Blueprint exist out of the VM template ( created in Vcenter ) with customization spec (also created in Vcenter )
    The Blueprint have 2 fixed volume drives ( C and D ) but i have created 4 build profiles to extend this template with 2 more volumes ( L & B Drive)
    build profiles are like:
    Name HDD B drive
    VirtualMachine.Disk2.Size      20
    VirtualMachine.Disk2.Label     Backup
    VirtualMachine.Disk2.Letter     B
    Name HDD L drive
    VirtualMachine.Disk3.Size     20
    VirtualMachine.Disk3.Label    LOG
    VirtualMachine.Disk3.Letter     L
    VirtualMachine.Admin.UseGuestAgent TRUE
    VirtualMachine.Customize.WaitComplete     TRUE
    Problem is when i deploy with the blueprint it's getting deployed but the B & L Drive are not there in the OS. When i check the settings of the VM i see there 4 VMDK. It seems like the drive are added to the VM but not configured in the OS
    the VM template is a windows server 2012 R2 and the guest agent has been installed.  Is there anything i can check so that this can work
    Kr
    Koen

    Guys,
    I found it. the agent couldn't reach the https://youriaas.vcac.x
    Network adjusted the firewall and it works from one template
    Now i've got an other problem
    We have a template for Win 2012 R2 ( created in the past) and here i have installed my guest agent. in the template i can reach the https://youriaas.vcac.x/ and my cert.pem is 2kb. Which is good
    I created the blueprint with the template and also defined the customization spec (Vcenter). I added also a customization for my D Drive - 20 gb. And i published it to the catalog
    build profile is like:
    Name HDD D drive
    VirtualMachine.Disk2.Size      20
    VirtualMachine.Disk2.Label    Data
    VirtualMachine.Disk2.Letter     D
    To test i did a request but here i noticed that only one disk is visible ( C drive ) and not my other volume ( D Drive )
    But when i adjust the blueprint with my working template then i see in the request that the D drive is visible. Any checks that i can do or would the template been corrupted and should i start with a new vm and install my guest agent on it and convert it to a template --> created blueprint --> ...
    Kr
    Koen

  • More WIPEdit plugin customization questions

    Hi,
    I see from another thread called "WIPEdit plugin customization" that you can NOT remove/hide the tool bars that show up in the MLT (i.e. copy, paste, bold, etc..).
    I'm just wondering what other options are available as customization?  I see that the wes_book.pdf talks about:
    1. Edits in the wipedit.ini file to change user or server side custom dictionaries
    2. A variety of WIP Edit ActiveX controls/API's to add buttons or how to display the forms.
    Anything else that I'm missing that can be customized?
    thanks!

    Hi,
    There isn't a way to remove\hide or restrict these options whether from the toolbar or right click menu in the WipEdit plugin. (or Documaker Studio Data Entry Check).
    thanks

  • Clean install from retail 10.3 question

    When I begin the clean install process on my imac that I am reformatting to give to my daughter, the disc 1 installer gives me an error message "cannot install on hard disk because it already has a newer version"
    The "newer" version is 10.3.9, which I plan to upgrade to via software update. But I have to be able to install from the disks first... Help.
    thanks, Ed

    Erase and Install
    1. Insert the OS X Installer Disc One into the optical drive and restart the computer.
    2. After the chime press and hold down the "C" key until the spinning gear appears below the dark gray Apple logo.
    3. After the installer loads select your language and click on the Continue button.
    4. After the menu bar appears select Disk Utility from the Installer menu.
    5. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area. If it does not say "Verified" then the drive is failing or has failed and will need replacing. SMART info will not be reported on external drives.
    6. Select the internal drive volume (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    7. Set the format type to Mac OS Extended (Journaled.)
    8. Click on the Erase button.
    9. After formatting has completed quit DU and return to the installer.
    10. Complete the OS X installation.

  • Report Painter Customization Question

    I'm using a profitability report from the standard system.  It calls a line item report, and I need ot add a field with some logic behind it (I already have a z-version created for this).  Is there a way to have the standard report writer use my custom version, or can I alter the standard to add some fields with some logic?

    Period shall be included in the column characteristics. Check the variables or Values in column definition for the characteristic period.
    You could either give the values of period 1 for col 1, 2  for col 2, etc
    or you may use variables for period. The variables can be a formula variable with conditions.
    You make the user to enter a value for the 'To period'  (ZTOPRD)
    The value for the variable for column 2 (Feb) shall be  = 2, if ZTOPRD > or equal to  2  else, give some 17 .
    This way when the user enters a value of 1in the to period, the system would default 17, for which there won't be any values.
    You may extrapolate the above formula for various remaining columns of period.

Maybe you are looking for

  • Getting Error while deploying application in Planning Workforce

    Hi, While deploying a sample planning application through BPMA i am getting this error. The error message is saying "You must select the Valid for Wrkforce application property before redeploying the Application View". Any ideas about what might be g

  • Defective Apple TV 2?

    So I finally upgraded to Apple TV 2, because I wanted my mlb.com on my apple tv (still don't undertand why this couldn't be on the apple tv 1 .. sigh). So I get it home and I plug it into the same hdmi cable that my apple tv 1 was using. The problem

  • Installation of Developer Workplace fails at Phase 11

    Hi, I'm trying to install the Developer Workplace 7.01 MaxDB on a Virtual Box instance running Windows XP SP2. The Virtual Machine has 1 GB of RAM and about 8 GB of free disk space. (The aim is to run a local version of the ISA Webshop. When installi

  • Deploy WAR file in SUN iPlanet Web Server 6.1 SP7 using JDK1.6 & JSF1.2

    Hi All, Can any one help me on this. I'm using JDK1.6 JSF1.2 JSTL1.1 Hibernate3.2.5 ANT1.7 JUnit HTML Oracle10g Trying to deploy this war file in SUN iPlanet Web Server 6.1 SP7. Can I use JDK1.6 & JSF1.2 in web server6.1

  • How to filter spark datagrid?

    SORRY, I TRY TO FILTER MY DATAGRID, BUT IT DOESN'T WORK. WHAT'S WRONG IN THIS CODE? IN THE DEBUG EVERYTHING IS OK UNTIL THE BOLD TEXT, BECAUSE THE DATAPROVIDER IN DATAGRID IS NOT FILTERED. PLEASE HELP ME!!! THANK YOU. <?xml version="1.0" encoding="ut