Trsnafer user dimensions from package to ScriptLogic

Hello allm
I would like to create a data package which prompts the user to select values for one user dimension. The I will transfer these values to the relevant SciptLogic.
In the prompr command of the data manager the following variables exists: %TIME_DIM%, %CATEGORY_DIM% etc. There is also %DIMS%. I did not see any option to select a user dimension. As I understand it, I can not select the dimension name directly in the prompt command of the data package.
Any ideas?
TIA,
Avihay

Hello again,
I was able to do what I wanted (thanks Ethan) but I still work as a "dumb copier" rather than someone who really understands what he is doing.
The data manager script, which seems to be correct is:
PROMPT(SELECTINPUT,%SELECTION%,,"Select values for the relevant dimensions","P_BUDGET_MODEL,P_MONTH")
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SUSER,%SUSER%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SAPPSET,%APPSET%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SAPP,%APP%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SELECTION,%SELECTION%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,LOGICFILENAME,TRANSLATE_FOB_TO_ILS.LGF)
My misunderstanding is how to use the PROMPT command and especially the TYPE. for example, I have also wrote the following script:
PROMPT(SELECTINPUT,%PRMP_P_MONTH%,,"Select periods for calculation","%TIME_DIM%")
PROMPT(DIMENSIONMEMBER,%PRMP_P_BUDGET_MODEL%,"Select Dimension","Select Dimension Members",P_BUDGET_MODEL)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SUSER,%SUSER%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SAPPSET,%APPSET%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SAPP,%APP%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,SELECTION,%PRMP_P_MONTH%)
TASK(ZBPC_PROMPT_EXP_RUN_LOGIC,LOGICFILENAME,TRANSLATE_FOB_TO_ILS.LGF)
I am trying to define to myself the difference between the two scripts. One question is will the second one transfer the values of the P_BUDGET_MODEL at all to the script logic?
A second question is where can I find a good documentation for the various PROCESS TYPES. The SAP documentation only documents process types that are used in the system delivered PROCESS CHAINS. This is not a systematic review of all of them. Expeciall missing is the RUN_LOGIC?
TIA
Avihay

Similar Messages

  • How to restrict the user(Schema) from deleting the data from a table

    Hi All,
    I have scenario here.
    I want to know how to restrict a user(Schema) from deleting the values from a table created in the same schema.
    Below is the example.
    I have created a table employee in abc schema which has two values.
    EMPLOYEE
    ABC
    XYZ
    In the above scenario the abc user can only fire select query on the EMPLOYEE table.
    SELECT * FROM EMPLOYEE;
    He should not be able to use any other DML commands on that table.
    If he uses then Insufficient privileges error should be thrown.
    Can anyone please help me out on this.

    Hi,
    kumar0828 wrote:
    Hi Frank,
    Thanks for the reply.
    Can you please elaborate on how to add policies for a table for just firing a select DML statement on table.See the SQL Packages and Types manual first. It has examples. You can also search the web for examples. This is sometimes called "Virtual Private Database" or VPD.
    If you have problems, post a specific question here. Include CREATE TABLE and INSERT statements to create a table as it exists before the policies go into effect, the PL/SQL code to create the policies, and additonal DML statements that will be affected by the policies. Show what the table should contain after each of those DML statements.
    Always say which version of Oracle you're using. Confirm that you have Enterprise Edition.
    See the forum FAQ {message:id=9360002}
    The basic idea behind row-level security is that it generates a string that is automatically added to SELECT and/or DML statement WHERE clauses. For example, if user ABC is only allowed to query a table on Sunday, then you might write a function that returns the string
    USER  != 'ABC'
    OR      TO_CHAR (SYSDATE, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') = 'SUN'So whenever any user says
    SELECT  *
    FROM    table_x
    ;what actually runs is:
    SELECT  *
    FROM    table_x
    WHERE   USER  != 'ABC'
    OR      TO_CHAR (SYSDATE, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') = 'SUN'
    ;If you want to prevent any user from deleting rows, then the policy function can return just this string
    0 = 1Then, if somone says
    DELETE  employee
    ;what actually gets run is
    DELETE  employee
    WHERE   0 = 1
    ;No error will be raised, but no rows will be deleted.
    Once again, it would be simpler, more efficient, more robust and easier to maintain if you just created the table in a different schema, and not give DELETE privileges.
    Edited by: Frank Kulash on Nov 2, 2012 10:26 AM
    I just saw the previous response, which makes some additional good points (e.g., a user can always TRUNCATE his own tables). ALso, if user ABC applies a security policy to the table, then user ABC can also remove the policy, so if you really want to prevent user ABC from deleting rows, no matter how hard the user tries, then you need to create the policies in a different schema. If you're creating things in a different schema, then you might as well create the table in a different schema.

  • How can we generate PDF file by passing a query from package to RDF?

    Hi Everyone,
    I am beginner as SQL Developer, I am stuck in one issue , that is regarding generating PDF or Excel file according to user parameters passed.
    Detail of Requirement :
    I have created one package it contains 2 functions and 1 Procedure .
    Also created xx_report.rdf for generating in PDF .
    getQuery Function Returns Query as output.
    getExcelFile function gets query as input and generate  and return CLOB file as OUTPUT.
    xx_Report  Procedure will take input CLOB file and export it to EXCEL file and save under a DEFAULT Location.
    When User Pass Excel as parameter we can generate the file , but now if User Passes the Parameter for PDF FILE then  client wants  to invoke RDF  passing same query(getQuery) to xx_Report.RDF and generate PDF from it .
    We have already Created the RDF for xx_Report
    How it is possible? to invoke RDF from PL SQL Package.
    (We are doing like this as in future if there are any changes in query we dont have to change in RDF or in Package )
    If not then please let me know the other way where i can get the PDF or EXCEL file as output according to users choice from RDF.
    ( We are not using XML PUBLISHER nor 3rd party tools)
    Only Oracle Reports Developer 11g 1.2.3.
    Please help me in this ....its urgent.
    Thanks and Regards,
    Harshil .

    Hello Narendra,
    (Specific to SAP POS General Merchandise)
    A  Tlog is binary file created by selling items via SAP POS. The file must be converted into ASCII by the use of a utility called cvtlog.exe or trickled to other systems. Once the tlog is converted to ASCII it contains all the information required to feed downstream systems such as ERP, POS DMu2026.etc.
    Hope that helps
    Angelo
    For detailed information on SAP POS dataflow and TLOG Formats  please see this link
    http://help.sap.com/saphelp_pos21/helpdata/en/be/5234a9eb44494ea0807925211e74c6/frameset.htm
    or navigate to Help.sap.com  and follow the below links
    Documentation -> SAP for Industries -> SAP for Retail

  • Only edit objects from package in local requests

    Hello Experts,
    could  you help me please
    a user has tried to transport a local request, I modified it by putting the target system, but when the user wants to release it, he gets the error massage "Only edit objects from package in local requests "
    Thanks a lot

    HI
    Follow the steps.
    1. Create a new transport request
    2. Select include objetcts
    3. Object list from request and select your tranport request
    4. Release the Transport request and transport.
    If don't work try this other case:
    1. Run tcode SE01
    2. Create a new "Transport of copies"
    3. Into the request, choose menu "request/task -> object list -> include objects
    4. Include your transport request
    5.  Add the target system and release the request.
    If you get any error put here
    Regards
    William Neira

  • Error "Parent Member is found in dimension from selection"

    Hi,
    while running the export transaction data package we are getting the error " Parent Member is found in Dimension from selection".
    We cannot manually select each member as there are around 64K records which will have to manually selected. Is there a work around for the same?
    Regards
    Varun

    Hi Varun,
    The first thing is that if you are using the standard export DM package, then you should not be able to select any parent members. If you look at the advanced script of this package, the first statement will be SELECTINPUT. This will restrict the selection only to base level members. Technically, you should not select the parent members, because, the parent lelve members doesnt hold any data.
    Hope this helps.

  • Is it possible to call the members of the CFMapping dimension from a EVDRE?

    Hello experts,
    I am working with the application Cashflow. This application uses the dimension CFMapping to match the dimension CFAccount with the dimension Account, when the package "Cash Flow Recalculation" is run. I would like to know how could I call the members of the CFMapping dimension from a report. When I try to do this,the EVDRE shows the following error message: #ERR: Invalid  CFMAPPING, col# 1.
    Thanks in advance,
    Álvaro

    Hi Mehul,
    I have already checked this but it still doesn't work. The dimension CFMapping is not contained in any application,  in BPC administration I checked this in the application folders. I think that the CFMapping dimension is only used to support the execution of the package I mentioned in the first message, and that is why I have problems to call it's members from a report using the normal procedure.
    Regards,
    Álvaro

  • FlexibleUI - UICommands with Path KM and User KM from the context.

    I need to write one new Java Portal Class, for new KM Command. This command should do the following action:
    - get context information of KMC (specifically portal user and KM path)
    - call URL with this data. (Example: http://domain:port/service?userkm=valueuserkm&pathkm=valuepathkm )
    I have modify example of FlexibleUI - UICommands, and create a new class that call a URL, but can't find the class and method for get context and catch the user and path of KM user.
    this is the code for the class of UICommands:
    package com.sap.example.flexible.ui.command;
    import java.util.List;
    import com.sapportals.wcm.WcmException;
    import com.sapportals.wcm.rendering.base.IRenderingEvent;
    import com.sapportals.wcm.rendering.base.IScreenflowData;
    import com.sapportals.wcm.rendering.uicommand.AbstractCommand;
    import com.sapportals.wcm.rendering.uicommand.ICommand;
    import com.sapportals.wcm.rendering.uicommand.LinkAttributes;
    import com.sapportals.wcm.repository.IResourceContext;
    import com.sapportals.wcm.repository.IResource;
    * Copyright (c) 2005 by SAP AG. All Rights Reserved.
    * SAP, mySAP, mySAP.com and other SAP products and
    * services mentioned herein as well as their respective
    * logos are trademarks or registered trademarks of
    * SAP AG in Germany and in several other countries all
    * over the world. MarketSet and Enterprise Buyer are
    * jointly owned trademarks of SAP AG and Commerce One.
    * All other product and service names mentioned are
    * trademarks of their respective companies.
    * This class is a sample implementation for a
    * UICommand using external eventing.
    * @author Thilo Brandt, SAP AG
    * @version 1.0
    public class SimpleExternalCommand extends AbstractCommand {
         protected String getLabel() {
            return "myButtonLabelDURO";
                protected String getTooltip() {
                        return " myButtonTooltipDURO";
         public SimpleExternalCommand() {
              //super("SimpleExternalCommand", "SimpleExternalCommand");
              super("myButtonTextKey", "myTooltipTextKey");
         public ICommand getNewInstance() {
              return this.initNewInstance(new SimpleExternalCommand());
         public IRenderingEvent execute(IScreenflowData arg0) throws WcmException {
              return null;
         public String[] getTargetParameters() throws WcmException {
              return new String[0];
         //public void setTargetParameters(List arg0, IResourceContext arg1)
         public void setTargetParameters(List list, IResourceContext context)
              throws WcmException {
         public boolean isExecutable() {
              return true;
         public boolean raisesEvent() {
              return false;
    // Inicio de Modificación de Código para uso de Parámetros
            public LinkAttributes getLinkAttributes() {
              String Target = "_blank";
              String lURL1  = "http://www.google.com/search?hl=es&q=";
              String lURL2  = "PARAMETRO";
              String lURL3  = "&lr=";
    // Get User KM from context
    // lURL2 = UserKM;
    // Get path KM from context
            String lURL   = lURL1 + lURL2 + lURL3;
              return new LinkAttributes(lURL, Target);
    please helpme to get userKM and pathKM.
    thank in advance.
    Junior.

    Hi,
    To get the KM Path:
    String path = getResource().getRID().getPath();
    To get the present User:
    IPortalComponentRequest pcr =
                    (IPortalComponentRequest) getProxy().getDynamicPage().getPageContext().getRequest();
    pcr.getUser();
    To create URL call with datas when UICommand is clicked. You should modify your getLinkAttributes method.
    Check this for an example:
    https://forums.sdn.sap.com/thread.jspa?threadID=334529
    Greetings,
    Praveen Gudapati
    [Points are always welcome for helpful answers]

  • PS gets wrong paper dimensions from printer driver

    Since yesterday I have trouble with PS CS5 und Mac OS X 10.7.5 as PS does not get correct paper dimensions from standard paper sizes or custom paper sizes from my Epson printer driver. Before yesterday I had no trouble, all went fine. Til Yesterday I printed mostly on roll paper, but yesterday I had to print on a A3+ sheet of paper and PS got in trouble and showed me instead of 32 by 48 cm of paper size than 42 by 59 cm in print dialog with preview. Thil than I have this behavior on all paper sizes but only in Photoshop CS5. All other Apps on my Mac which uses the Mac print dialog show me the correct paper dimenions.
    Any help appreciated.

    I bet that, if you check carefully and with almost pathological tenacity, you will find that the "odd" sizes are creeping into one of the settings in one of the dialog boxes but not in others.
    When something happens to an application "suddenly", that's a clear size to nuke and re-set the preferences, but NOT manually.  Use the key combo at launch.
    To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by manually deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here:
    How to Reset Photoshop CS6’s Preferences File | The Complete Picture with Julieanne Kost | Adobe TV
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • For running utlrp.sql need users termination from the database?

    Hai All,
    My database jobs terminated in some time. So I want to run utlrp.sql for compiling all invalid objects. Is It needs users termination from the database? or login to restricted session? Please give a correct step for doing this activity..
    Please help?
    Shiju

    database? or login to restricted session? Please
    give a correct step for doing this activity..
    It is good , if you run utlrp.sql in restricted mode also set job_queue_processes =0 and check no dbms_job running package ( if package is valid then fine ). Problem only come when package/procedure are locked/in use by session. If invalid package are not used by any session then you can run utlrp.sql without restricted mode also. Well you know better you application.
    Since you not altering any dependencies, just want to compile , you can run without restricted mode.
    Virag

  • Retrieving User Details from OID: Portal 10.1.2

    I am trying to retrieve the user object from the OID when the person logs in to the portal. I would need to retrive the group name and some attributes from the OID for the person logged in.
    Any ideas where I can get a snippet of code which does this? I am using Portal Version 10.1.2.

    Hi Soumak
    Use
    s_email wwsec_oid.VC_ARR := wwsec_oid.get_user_attr_vals(p_username => p_user,p_attr =>'mail' ,p_base =>'cn=users,dc=my_company,dc=com');
    s_nom wwsec_oid.VC_ARR := wwsec_oid.get_user_attr_vals(p_username => p_user,p_attr =>'sn' ,p_base =>'cn=users,dc=my_company,dc=com');
    s_prenom wwsec_oid.VC_ARR := wwsec_oid.get_user_attr_vals(p_username => p_user,p_attr =>'givenname',p_base =>'cn=users,dc=my_company,dc=com');
    or the dbms_ldap package :
    ldap_host := 'your_host';
    ldap_port := '4032';
    ldap_user := 'cn=orcladmin';
    ldap_passwd := 'orcladmin_pwd';
    ldap_base := 'cn=users, dc=your_company,dc=com';
    -- Choosing exceptions to be raised by DBMS_LDAP library.
    DBMS_LDAP.use_exception := TRUE;
    my_session := DBMS_LDAP.init (ldap_host, ldap_port);
    -- bind to the directory
    retval := DBMS_LDAP.simple_bind_s (my_session, ldap_user, ldap_passwd);
    -- issue the search
    my_attrs (1) := '*'; -- retrieve all attributes
    my_selection := 'cn=' || p_cn;
    retval :=
    DBMS_LDAP.search_s (my_session,
    ldap_base,
    DBMS_LDAP.scope_subtree,
    --'objectclass=*',
    my_selection,
    my_attrs,
    0,
    my_message
    -- get the entry
    my_entry := DBMS_LDAP.first_entry (my_session, my_message);
    entry_index := 1;
    p_mail := '';
    p_tel := '';
    p_sn := '';
    p_givenname := '';
    my_dn := DBMS_LDAP.get_dn (my_session, my_entry);
    my_attr_name :=
    DBMS_LDAP.first_attribute (my_session, my_entry, my_ber_elmt);
    attr_index := 1;
    WHILE my_attr_name IS NOT NULL
    LOOP
    my_vals := DBMS_LDAP.get_values (my_session, my_entry, my_attr_name);
    IF my_vals.COUNT > 0
    THEN
    FOR i IN my_vals.FIRST .. my_vals.LAST
    LOOP
    IF my_attr_name = 'mail'
    THEN
    p_mail := SUBSTR (my_vals (i), 1, 200);
    END IF;
    IF my_attr_name = 'telephonenumber'
    THEN
    p_tel := SUBSTR (my_vals (i), 1, 200);
    END IF;
    IF my_attr_name = 'sn'
    THEN
    p_sn := SUBSTR (my_vals (i), 1, 200);
    END IF;
    IF my_attr_name = 'givenname'
    THEN
    p_givenname := SUBSTR (my_vals (i), 1, 200);
    END IF;
    END LOOP;
    END IF;
    my_attr_name :=
    DBMS_LDAP.next_attribute (my_session, my_entry, my_ber_elmt);
    END LOOP;
    -- Free ber_element
    DBMS_LDAP.ber_free (my_ber_elmt, 0);
    -- free LDAP Message
    retval := DBMS_LDAP.msgfree (my_message);
    -- unbind from the directory
    retval := DBMS_LDAP.unbind_s (my_session);

  • User input from pl/sql

    How could I get user input from a pl/sql block?
    Hope that somebody can help me.
    thanx
    Amelio.

    There is a package DBMS_LOCK that has a SLEEP routine, which suspends the session for a given period of time (in seconds).
    However, you can only pause the procedure and not accept user input into the procedure during the pause.
    syntax: DBMS_LOCK.SLEEP(1) ;
    I need only to run an 'pause' or something like that within a pl/sql block. Do you know if it's possible? Thanks.

  • IOS icon missing from package? It's not!

    FB 4.7 tells me that when I try to debug my app that:
    Error occurred while packaging the application:
    /Users/reidop/Documents/U of Florida/projects/mobile apps/Pill Reminder/bin-debug/AOT/MedsReminder-app.xml: error 303: Icon iOS_icons/[email protected] is missing from package
    along with all the other icons.  Not only are the icons in the proper place, they have been explicitly included in the package:
    Why does this error occur?  Anyone have any ideas?
    And yes, my XML file has the icons tag correct:
    <icon>
            <image29x29>iOS_icons/icon-29.png</image29x29>
            <image57x57>iOS_icons/icon-57.png</image57x57>
            <image114x114>iOS_icons/[email protected]</image114x114>
            <image512x512>iOS_icons/itunes.png</image512x512>
            <image72x72>iOS_icons/icon-72.png</image72x72>
            <image76x76>iOS_icons/icon-76.png</image76x76>
            <image40x40>iOS_icons/icon-40.png</image40x40>
            <image80x80>iOS_icons/[email protected]</image80x80>
            <image50x50>iOS_icons/icon-50.png</image50x50>
            <image100x100>iOS_icons/[email protected]</image100x100>
            <image144x144>iOS_icons/[email protected]</image144x144>
            <image152x152>iOS_icons/[email protected]</image152x152>
            <image1024x1024>iOS_icons/[email protected]</image1024x1024>
            <image58x58>iOS_icons/[email protected]</image58x58>
            <image120x120>iOS_icons/icon-120.png</image120x120>
            <image48x48>iOS_icons/icon-48.png</image48x48>
    </icon>
    When I comment these lines in the XML file out, it works perfectly ... but without the proper icons!
    Can anyone tell me what I'm leaving out?
    Message was edited by: John Reid Perkins Buzo

    Silly error ... the file path is not correct.  I assumed that the file path was relative to my XML descriptor in the project. That XML file is inside the package "core" along with the folder "iOS_icons", so the file path would be "iOS_icons/icon-???.png".  Instead the file path is relative to the XML descriptor file that FB4.7 creates for packaging. This ends up-one in the file path, outside the "core" package. So the correct file path turned out to be "core/iOS_icons/icon-???.png".  This is what it should be in my XML descriptor:
    <icon>
            <image29x29>core/iOS_icons/icon-29.png</image29x29>
            <image57x57>core/iOS_icons/icon-57.png</image57x57>
            <image114x114>core/iOS_icons/[email protected]</image114x114>
            <image512x512>core/iOS_icons/itunes.png</image512x512>
            <image72x72>core/iOS_icons/icon-72.png</image72x72>
            <image76x76>core/iOS_icons/icon-76.png</image76x76>
            <image40x40>core/iOS_icons/icon-40.png</image40x40>
            <image80x80>core/iOS_icons/[email protected]</image80x80>
            <image50x50>core/iOS_icons/icon-50.png</image50x50>
            <image100x100>core/iOS_icons/[email protected]</image100x100>
            <image144x144>core/iOS_icons/[email protected]</image144x144>
            <image152x152>core/iOS_icons/[email protected]</image152x152>
            <image1024x1024>core/iOS_icons/[email protected]</image1024x1024>
            <image58x58>core/iOS_icons/[email protected]</image58x58>
            <image120x120>core/iOS_icons/icon-120.png</image120x120>
            <image48x48>core/iOS_icons/icon-48.png</image48x48>
    </icon>

  • URGENT: What happend if I define the Time Dimension like a user dimension?

    I define the Time Dimension like a user Dimension because in the time I don't need the quarter, so can I access my metadata from OLAP tools (BI Beans)?
    PLEASE HELP.

    Magini,
    You can define time dimension as user dimension. It will work well. I have been defining time dimension as user dimension.
    For simple arithmetic calculations and aggregations, there will be no problem.
    However you will not be able to do time specific calculations.
    I am using SUM as aggegation and Division, Ratio, Addition in calculated measures.
    Hope this helps.
    Subash

  • How to Delete the dimension from the cube ?

    Hi ,
    how to Delete the dimension from the cube ?
    i have added the new dimension by assiging one characteristic to that dimension .
    now i  want to delete it ,
    but system saying that   Dimension ZXXX  contains InfoObjects; deletion not possible .
    how to delete it ? any help .
    Thanks

    Make sure you donot have any data in cube. If you have some data in cube, then you will not be able to see Delete option.
    Right click on the cube-->Delete data.
    Then double click on the cube>Goto Edit mode> select the IO under that Dimension> right click> now you will be able to see the Delete option (provided you have deleted all the date from Cube)
    Then right click on Dimension-->Delete
    Regards,
    Pavan

  • We have an itunes account on our desktop and my kids have it on their ipod and iphone. I went in and changed our user name from my old e-mail address which is no longer accessible to my new one and now either of my kids can access the itunes store..

    We have an itunes account on our desktop and both my kids have it on iphone and ipod. I went in and changed out user name from an old e-mail address which is no longer accessible to my one I use now... When the kids try to sign onto the itunes store it tells them they have the wrong user name..
    Can this be fixed??

    Did you change the email address or create a new Apple ID?
    If the email address associated with the account was merely changed, sign out of the Apple ID on the devices and sign in using the new credentials.

Maybe you are looking for

  • How can i get a new ipod touch for free? i broke the screen of my old one

         i recenly was going on an interview and i dropped my ipod touch and cracked the screen . what can i do? my mom broke her ipad, the one with the camera. and she got a new one! will apple do the same thing for me?

  • Amount to credit greater than credit balance - goods return to AP Cred Note

    Hi All, I've got the following scenario: We have a AP Goods Return on the system which totals £12.94 with freight charges of -£3.75. We have copied this to a AP Credit Note, but have amended the freight from -£3.75 to -£3.00(UK VAT Rate 15% applicabl

  • Text touch-up tool in Acrobat 9 not working

    Does anyone know if this is a glich in CS4 or if I'm doing something wrong. When I click on the text touch up tool in Acrobat 9 (comes with CS4), nothing happens. The arrow doesn't change into a text tool so there's no way to fix text in a PDF.

  • Best way to wipe device data before downgrading

    Hi all, few questions: 1. What is the best way to wipe my device before downgrading the device? 2. Is it possible to downgrade os without wiping? 3. Alots of downgrades/upgrades and everything may damage the device some how? Im using windows vista 64

  • Lightbox NOT work in Strict XHMTL

    I was told elsewhere that Lightbox does not work with Strict, beause of the relative position.. Is this so?