Pricing in SRM when coming from Ariba

Hi All,
We're having an issue at a customer regarding the different ways that Ariba and SRM calculate price formula. Ariba has the ability to show the Unit Price in one UoM, but have the Qty ordered in a different UoM. They utilize a "conversion" factor in order to get the correct Total Price.
As an example I have this data:
From Ariba:
Quantity = 10    (ordering quantity is pallets)
Unit Conversion = 150     (150 Rolls in 1 Pallet)
Price unit quantity = 1
Price = 4.50      (price per Roll)
Unit of Measure = pallet   (ordering UOM)
Price Unit of measure = Roll     (priced by UOM)
The formula for amount is Line Item Amount = Quantity * ( Unit Conversion / price Unit ) * Price
Line Item Amount = 10 * ( 150 /1  ) * 4.50 = 6750
The issue is that when this data gets sent to SRM via OCI, they only send Quantity(10), Price in Price per Roll(4.5), Price Unit Quantity(1), and a Unit of Measure(Pallet).
The equation that the SRM system therefore does is: Line Item Amount = 10 * 4.50 = 45 which is incorrect, as it doesnt recognize that the 4.50 is for a roll, while the 10 is a pallet.
Have any of you worked through something like this in the past? Is there a workaround utilizng mapping tables, or perhaps passing the conversion factor over to SRM?
Regards,
Andrew Bondarev

Hi Andrew,
The OCI structure is static, if Ariba performs some additional calculations in the Ariba application before it transfers to the SRM structure then why can it not be that only the data be passed to the SRM OCI structure which is expected by the SRM application?
Open Catalog Interface accepts:
NEW_ITEM-UNIT[n] 3 Quantity unit for item quantity
NEW_ITEM-PRICE[n] 15 Price of an item per price unit
NEW_ITEM-PRICEUNIT[n] 5 Price unit of the item (if empty, 1 is used)
NEW_ITEM-QUANTITY[n] 15 Item quantity
NEW_ITEM-CUST_FIELD1[n] 10 User-defined field
NEW_ITEM-CUST_FIELD2[n] 10 User-defined field
NEW_ITEM-CUST_FIELD3[n] 10 User-defined field
NEW_ITEM-CUST_FIELD4[n] 20 User-defined field
NEW_ITEM-CUST_FIELD5[n] 50 User-defined field
Any of these fields are applicable in the scenario, if additional logic is required this can be perhaps passed in the availalbe customer defined fields and a calculation performed in the BBP_CATALOG_TRANSFER Badi to suit the expected result.
In its simpliest form, the OCI structure simply expects that the data transferred from the catalog will match the definition outlined in the OCI Documentation in order for correct translation to the relevant BO fields in SRM_SERVER.
Regards,
Jason

Similar Messages

  • Not opening an app download when coming from a webpage

    I have a number of sites eg itv.com and want to download the itv player. When I click to download the app from the website, apple apps open but instead of the install window,I just get an empty white box and it hangs, I have tried leaving for hours but it stays the same.

    If you are coming from the login page, are you clicking the tab at all or do you go straight from the log in page to the other page.
    If you are going straight to the page from the login, then you only need to pop up the page from the tab.
    May be you could change, on your tab.
    Target Type = URL
    URL =
    javascript:popUp2('f?p=YOUR_APP:YOUR_PAGE_NO:&APP_SESSION.',1000,1000)Gus

  • Accurate statistics on skewed foreign key when coming from parent

    Hi,
    I will be as short as possible:
    - we have two tables in a parent - child relationship. The foreign key is very skewed and we need to get child details coming from the parent
    - CBO is not considering the skeweness from histograms on foreign key column (I suppose it cannot as it is the example without going into tables) and it calculates the expected returning rows in the execution plan as no_rows / distinct_values => 10,000 / 3 = 3,333 rows for both execution plans, even if they returns effectively 1 row / 9,999 rows. In histograms exists this information but it cannot be extracted by CBO as it is.
    Any idea how to help CBO to choose separate execution plans for query 1 and query 2 excluding hints or query modifications?
    -- Oracle Database 10.2.0.3
    --DROP TABLE child;
    --DROP TABLE parent;
    CREATE TABLE parent AS SELECT LEVEL parent_num, 'parent_' || LEVEL parent_id FROM DUAL CONNECT BY LEVEL <= 10;
    ALTER TABLE parent ADD CONSTRAINT parent_pk PRIMARY KEY (parent_num);
    CREATE UNIQUE INDEX parent_id_ix ON PARENT (parent_id, parent_num);
    CREATE TABLE child AS SELECT DECODE (LEVEL, 1, 1, 10000, 10, 5) parent_num, 'child_' || LEVEL child_id FROM DUAL CONNECT BY LEVEL <= 10000;
    ALTER TABLE child ADD FOREIGN KEY (parent_num) REFERENCES parent (parent_num) ON DELETE CASCADE;
    CREATE INDEX child_parent_num_ix ON CHILD(parent_num);
    exec dbms_stats.gather_table_stats(ownname=>'***REPLACE WITH YOUR OWN USER***',tabname=>'PARENT',estimate_percent=>100,cascade=>TRUE,method_opt=>'FOR ALL COLUMNS SIZE 1');
    exec dbms_stats.gather_table_stats(ownname=>'***REPLACE WITH YOUR OWN USER***',tabname=>'CHILD',estimate_percent=>100,cascade=>TRUE,method_opt=>'FOR COLUMNS parent_num SIZE 3, child_id SIZE 1');
    -- QUERY 1: this query should be very selective (1 row), using index
    SELECT c.child_id FROM child c, parent p WHERE c.parent_num = p.parent_num AND p.parent_id = 'parent_1';
    -- QUERY 2: it should return 99.9999% of the rows (9,999 rows), so it should use full table scan
    SELECT c.child_id FROM child c, parent p WHERE c.parent_num = p.parent_num AND p.parent_id = 'parent_5';
    In reality both queries have the same execution plan as below:
    Execution Plan
    Plan hash value: 4033709836
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 3333 | 83325 | 6 (0)| 00:00:01 |
    | 1 | NESTED LOOPS | | 3333 | 83325 | 6 (0)| 00:00:01 |
    | 2 | TABLE ACCESS BY INDEX ROWID| PARENT | 1 | 12 | 1 (0)| 00:00:01 |
    |* 3 | INDEX UNIQUE SCAN | PARENT_ID_IX | 1 | | 0 (0)| 00:00:01 |
    |* 4 | TABLE ACCESS FULL | CHILD | 3333 | 43329 | 5 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    3 - access("P"."PARENT_ID"='parent_1')
    4 - filter("C"."PARENT_NUM"="P"."PARENT_NUM")
    Execution Plan
    Plan hash value: 4033709836
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 3333 | 83325 | 6 (0)| 00:00:01 |
    | 1 | NESTED LOOPS | | 3333 | 83325 | 6 (0)| 00:00:01 |
    | 2 | TABLE ACCESS BY INDEX ROWID| PARENT | 1 | 12 | 1 (0)| 00:00:01 |
    |* 3 | INDEX UNIQUE SCAN | PARENT_ID_IX | 1 | | 0 (0)| 00:00:01 |
    |* 4 | TABLE ACCESS FULL | CHILD | 3333 | 43329 | 5 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    3 - access("P"."PARENT_ID"='parent_5')
    4 - filter("C"."PARENT_NUM"="P"."PARENT_NUM")
    column table_name format A10
    column column_name format A11
    column endpoint_actual_value format A21
    select * from user_tab_histograms where table_name='CHILD' and column_name='PARENT_NUM';
    TABLE_NAME COLUMN_NAME ENDPOINT_NUMBER ENDPOINT_VALUE ENDPOINT_ACTUAL_VALUE
    CHILD PARENT_NUM 1 1
    CHILD PARENT_NUM 9999 5
    CHILD PARENT_NUM 10000 10
    3 rows selected.
    I am sorry about the formatting but this is the best I could following plain text help.
    Thank you,
    Eugen
    Edited by: Eugen Iacob on Dec 13, 2011 3:21 AM
    Edited by: Eugen Iacob on Dec 13, 2011 12:36 PM
    Edited by: Eugen Iacob on Dec 13, 2011 12:37 PM
    Edited by: Eugen Iacob on Dec 14, 2011 2:13 AM

    Hi,
    you can create a function based index on child table, and query that value instead of parent_id from parent table.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    CREATE TABLE parent AS SELECT LEVEL parent_num, 'parent_' || LEVEL parent_id, 'some text ' || level parent_name
    FROM DUAL CONNECT BY LEVEL <= 10;
    ALTER TABLE parent ADD CONSTRAINT parent_pk PRIMARY KEY (parent_num);
    CREATE UNIQUE INDEX parent_id_ix ON PARENT (parent_id, parent_num);
    CREATE TABLE child AS SELECT DECODE (LEVEL, 1, 1, 10000, 10, 5) parent_num, 'child_' || LEVEL child_id,
    'some text ' || level child_name
    FROM DUAL CONNECT BY LEVEL <= 10000;
    ALTER TABLE child ADD FOREIGN KEY (parent_num) REFERENCES parent (parent_num) ON DELETE CASCADE;
    CREATE INDEX child_parent_num_ix ON CHILD(parent_num);
    CREATE OR REPLACE function get_parent_id( in_parent_num in number )
    RETURN parent.parent_id%TYPE
    DETERMINISTIC
    IS
      ret parent.parent_id%TYPE;
    BEGIN
      SELECT parent_id INTO ret
      FROM parent
      WHERE parent_num = in_parent_num;
      RETURN ret;
    END;
    CREATE INDEX child_parent_id_idx ON child( get_parent_id( parent_num ) );
    exec dbms_stats.gather_table_stats(ownname=>user,tabname=>'CHILD',estimate_percent=>100,cascade=>TRUE,method_opt=>'FOR ALL HIDDEN COLUMNS');
    explain plan for
    SELECT p.parent_name, c.child_name
    FROM child c, parent p
    WHERE c.parent_num = p.parent_num AND get_parent_id(c.parent_num ) = 'parent_1';
    select * from table( dbms_xplan.display );
    plan FOR succeeded.
    PLAN_TABLE_OUTPUT                                                                                                                                                                                                                                                                                           
    Plan hash value: 3790918082                                                                                                                                                                                                                                                                                 
    | Id  | Operation                    | Name                | Rows  | Bytes | Cost (%CPU)| Time     |                                                                                                                                                                                                        
    |   0 | SELECT STATEMENT             |                     |     1 |    77 |     3   (0)| 00:00:01 |                                                                                                                                                                                                        
    |   1 |  NESTED LOOPS                |                     |     1 |    77 |     3   (0)| 00:00:01 |                                                                                                                                                                                                        
    |   2 |   TABLE ACCESS BY INDEX ROWID| CHILD               |     1 |    37 |     2   (0)| 00:00:01 |                                                                                                                                                                                                        
    |*  3 |    INDEX RANGE SCAN          | CHILD_PARENT_ID_IDX |     1 |       |     1   (0)| 00:00:01 |                                                                                                                                                                                                        
    |   4 |   TABLE ACCESS BY INDEX ROWID| PARENT              |     1 |    40 |     1   (0)| 00:00:01 |                                                                                                                                                                                                        
    |*  5 |    INDEX UNIQUE SCAN         | PARENT_PK           |     1 |       |     0   (0)| 00:00:01 |                                                                                                                                                                                                        
    Predicate Information (identified by operation id):                                                                                                                                                                                                                                                         
       3 - access("TEST"."GET_PARENT_ID"("PARENT_NUM")='parent_1')                                                                                                                                                                                                                                              
       5 - access("C"."PARENT_NUM"="P"."PARENT_NUM")                                                                                                                                                                                                                                                            
    Note                                                                                                                                                                                                                                                                                                        
       - dynamic sampling used for this statement                                                                                                                                                                                                                                                               
    22 rows selected
    explain plan for
    SELECT  p.parent_id, c.child_id
    FROM child c, parent p
    WHERE c.parent_num = p.parent_num AND get_parent_id(c.parent_num ) = 'parent_5';
    select * from table( dbms_xplan.display );
    plan FOR succeeded.
    PLAN_TABLE_OUTPUT                                                                                                                                                                                                                                                                                           
    Plan hash value: 2656363181                                                                                                                                                                                                                                                                                 
    | Id  | Operation          | Name         | Rows  | Bytes | Cost (%CPU)| Time     |                                                                                                                                                                                                                         
    |   0 | SELECT STATEMENT   |              |  9998 |   732K|    23  (27)| 00:00:01 |                                                                                                                                                                                                                         
    |*  1 |  HASH JOIN         |              |  9998 |   732K|    23  (27)| 00:00:01 |                                                                                                                                                                                                                         
    |   2 |   INDEX FULL SCAN  | PARENT_ID_IX |    10 |   380 |     1   (0)| 00:00:01 |                                                                                                                                                                                                                         
    |*  3 |   TABLE ACCESS FULL| CHILD        |  9998 |   361K|    21  (24)| 00:00:01 |                                                                                                                                                                                                                         
    Predicate Information (identified by operation id):                                                                                                                                                                                                                                                         
       1 - access("C"."PARENT_NUM"="P"."PARENT_NUM")                                                                                                                                                                                                                                                            
       3 - filter("GET_PARENT_ID"("C"."PARENT_NUM")='parent_5')                                                                                                                                                                                                                                                 
    Note                                                                                                                                                                                                                                                                                                        
       - dynamic sampling used for this statement                                                                                                                                                                                                                                                               
    20 rows selected

  • Need exit/badi to carry out new pricing(b) for SO coming from CRM...

    Hello Experts,
    We are transferring internet sales orders from CRM to R/3. Now, what I need to do is
    to trigger the 'carry out new pricing' for all the line items. Just like when we click
    the update button in the conditions tab and click on the 'carry new pricing' option even though
    user only displays the sales order in R/3.
    Hope you can help me guys. Thank you and take care!

    No Answer...

  • In DOC CHECK BADI: Check if PO has a SC when coming from a BID

    Hi Experts,
    Please consider this situation and recommend best possible approach.
    From Sourcing, I raise a BID and then create a PO from the BID.
    While PO creation, I need to check if this PO had SC and if so include the SC requestor in the approval if the price has increased while Bidding when compared the created SC.
    Here I am facing a challenge - When executing the DOC CHECK BADI, the FM: BBP_PROCDOC_GETDETAIL does not result any HEADER_REL itab values that shows any history details of the PO document. Whereas by the time the logic moves to the Workflow BADI, this same FM returns values (SC and other details).
    My Query: While creating from a BID, How can I check if this PO is generating out of a SC in the DOC CHECK BADI.
    Thanks in advance.
    Vj

    Hello Asha,
    You can check this BADI "BBP_ITEM_CHECK_BADI" and this badi is called when
    u2022     a new item has been created,
    u2022     an item has been changed or the document is to be checked
    Regards
    Sameer

  • Idoc with error message when coming from middleware but not in we19

    Hi Experts
    I am facing a very strange issue !
    I have a  Z - Idoc type and corresponding inbound function module for creating schedule lines i.e. doing something what me38 does.
    When my middleware i.e. Mercator Websphere is sending the idocs, they fail with the error message in the status record as
    Field EKET-MENGE (19) does not exist in the screen SAPMM06E 1117.
    But when I try processing the same idoc using we19, the scheduling lines are created and the schedule agreement is changed.
    Is there any difference between we19 and when idocs come from the middleware ?
    Points would be rewareded if useful answers received.
    Regards
    Shubhankar

    Well i think that the problem is with your BDC. there is an option to use standard size in BDC. I think your table control falls short of 19 rows in your program. Please see the thread below and incorporate the same changes in your BDC. I think u might need to record the BDC again.
    Re: BDC tabel control for QE01
    DATA OPT TYPE CTU_PARAMS.
    OPT-DEFSIZE = 'X'.
    CALL TRANSACTION 'FB01' USING ITAB OPTIONS FROM OPT.

  • Ics file not accepted when coming from Outlook users

    Hello,
    I am using iCal version 3.08 (1287) and I checked with a friend on iCal 4.03 (1388) and the trouble is the same.
    When I receive invitation from my Windows colleague, I got :
    This calendar file is unreadable. No events have been added to your iCal calendar
    See an example of "faulty" ics:
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 12.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:REQUEST
    X-MS-OLK-FORCEINSPECTOROPEN:TRUE
    BEGIN:VEVENT
    ATTENDEE;CN="ERCO & GENER - Alain";RSVP=TRUE:mailto:alain@ercog
    ener.com
    ATTENDEE;CN="ERCO & GENER - Loïc";RSVP=TRUE:mailto:loic@
    ercogener.com
    CLASS:PUBLIC
    CREATED:20100826T134220Z
    DESCRIPTION:Quand : mercredi 1 septembre 2010 10:00-11:00 (GMT+01:00) Bruxe
    lles\, Copenhague\, Madrid\, Paris.\n\nRemarque : le décalage GMT ci-dess
    us ne tient pas compte des réglages de l'heure d'été.\n\n~*~*~*~*~*~~
    ~*~\n\nPeut-on faire un point tous ensemble avant
    afin de collecter vos remarques ?\n\n.\n
    DTEND:20100901T090000Z
    DTSTAMP:20100826T134220Z
    DTSTART:20100901T080000Z
    LAST-MODIFIED:20100826T134221Z
    ORGANIZER;CN="Thierry":mailto:[email protected]
    PRIORITY:5
    SEQUENCE:0
    SUMMARY;LANGUAGE=fr:Révision grille
    TRANSP:OPAQUE
    UID:040000008200E00074C5B7101A82E008000000001056A2383445CB01000000000000000
    010000000E8688C6B4E65DA48AC9A1B2B183C3F0B
    X-ALT-DESC;FMTTYPE=text/html:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//E
    N">\n<HTML>\n<HEAD>\n<META NAME="Generator" CONTENT="MS Exchange Server ve
    rsion 08.00.0681.000">\n<TITLE></TITLE>\n</HEAD>\n<BODY>\n<!-- Converted f
    rom text/rtf format -->\n\nQuand : mercredi 1 septembre 2010 10:00-11:00 (GMT+01:00) Bruxelles\, Cop
    enhague\, Madrid\, Paris.\n\n
    Remarque : le décalage GMT ci-dessus ne tient pas co
    mpte des réglages de l'heure d'été.\n\n<SP
    AN LANG="fr">~*~*~*~*~*~*~*~*~\n\
    nproposé une réu
    nion sur la révision.\n\nPeut-on fa
    ire un point tous ensemble avant afin de collecter vos remarques ?\n\nTBO.\n\n</BODY>\n</HTML>
    X-MICROSOFT-CDO-BUSYSTATUS:TENTATIVE
    X-MICROSOFT-CDO-IMPORTANCE:1
    X-MICROSOFT-CDO-INTENDEDSTATUS:BUSY
    X-MICROSOFT-DISALLOW-COUNTER:FALSE
    X-MS-OLK-ALLOWEXTERNCHECK:TRUE
    X-MS-OLK-AUTOSTARTCHECK:FALSE
    X-MS-OLK-CONFTYPE:0
    X-MS-OLK-SENDER;CN="Thierry":mailto:thierry@cogen
    er.com
    BEGIN:VALARM
    TRIGGER:-PT15M
    ACTION:DISPLAY
    DESCRIPTION:Reminder
    END:VALARM
    END:VEVENT
    END:VCALENDAR
    Thanks for your help.
    Best regards,
    athath

    That file is send as Content-Type: application/force-download
    * https://developer.mozilla.org/en/docs/Properly_Configuring_Server_MIME_Types
    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • FTP login attempt timesout when coming from the www

    hello there, let me describe the problem i am having
    my seperate department under our university has our OSX Server running smoothly. Everyone is able to pull up webpages from withing the university, as well as from the outside, this is GOOD.
    from within the university i can login through an FTP connection to upload things and whatnot..., HOWEVER from outside the university this is not possible, the login attempts always TIMEOUT.
    now the reason why i am quite confused about this is because the webpage displays without a problem from outside the university, the FTP login however does not work.
    what might be the problem here?
    any help is real greatly appriciated.
    Thanks, gregor.

    Hi guys,
    I had the similar problem:
    Login via client tools worked fine
    Manual login via InfoView also no problem
    Kerberos-ticket was created in the background
    But when acitvating vintela SSO for InfoView I could see in stdout.log that no username was passed:
    "[Krb5LoginModule] user entered username: @MY_DOMAIN.COM"
    As there was no real error message it was hard to figure out what the problem was. The solution itself was to simply add the server-URL to the Intranet-pages in IE. This is described in several guides but I think it's good to document what happens if this is not done correctly
    Regards

  • Label becomes nil when coming from UIView in UIViewController

    Hi,
    I'm trying to call a method in UIViewController from UIView to change the UILabel in UIViewController by passing a NSString argument from UIView. But it doesn't the UILabel becoz the UILabel becomes nil in UIViewController. But method is called properly becoz in NSLog it is showing the passed argument but not changing the UILabel. Can Somebody help in solving the issue?
    Thanks in Advance.

    Your label may not be hooked up to the vc.

  • PSE 10 will not open the picture when coming from "edit in" in LR4.

    Just installed LR4, when choosing "edit in" PSE, the Elements program opens, but the picture does not display.  Is anyone else having this problem, or know what I need to do to fix this?
    Thanks

    Make sure you are linking in LR Preferences to PhotoshopElementsEditor in Support Files and not an alias.
    In Finder hold down Opn (alt) and click Go to reveal the Library.
      The other thing to check is your camera raw plug-in which I think needs to be version 6.7 to be compatible with LR4.
    Launch the PSE10 Editor and on the menu click:
    Help >> Updates
    Install ACR 6.7 if available.

  • Friends receive different contact information (name/number) when coming from different apple devices (iPhone 4 & Macbook Air)

    Whenever I use iMessage on my iPhone 4 and send messages to my friends they receive the messages just fine and I can also view them in the iMessages app on my Macbook Air, however, whenever i reply to their response via my Macbook Air it doesn't seem to use the same contact information as my iPhone 4. My friends receive a new contact with the message i sent from my Macbook Air. How do i get them to use the same contact information so i can continue a conversation without my friends realizing that im using different devices?

    HI,
    On the iPhone
    Settings > Messages  and adjust the Send From and Received At options
    On the Mac
    Messages > Preferences > Accounts iMessages account
    You may need to go to the Send From drop down at the bottom.
    The Mac version has  Received At check boxes and a separate Send From drop down.
    The issue comes around which type of iMessage the Mac versions see the messages as.
    The chances are that it arrives after the iPhone gets the "original" and therefore is seen as A "Sync copy".
    As this is not an on-going conversation the app regards what you see as a reply and a New Message and Sends From comes in to play.
    You may also have different Received At and Send Froms set up on each device.
    9:12 PM      Wednesday; August 14, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Small delay when coming out of standby

    I have noticed that when my iphone 4 goes into standby +on its own+, and I press the home button, there is a short delay of approximately 2 seconds for it to get out of standby. However, when I put it on standby (by pressing the power button), and then press the home button, it gets out of standby almost instantly.
    Is this normal? Does the iphone just need time to "warm up" when coming from sleep mode, and that's what is causing the small delay?
    By the way, my iphone is completely stock - not even one app. on it, and only a few minor settings changed.

    I have the exact same issue. Exact same setup -- no additional apps.. nothing running in the background. My wife also got her iphone 4 at the same time and also has this "issue".. if in fact it is an issue at all...
    Having searched online, it sounds like it is fairly common and more than likely something that can/will be resolved with a future software update...
    That being said, I'll still feel better the more I hear of others experiencing the same thing...

  • Trying to sync ipad and it is telling me i have 10.6 gb of  video. when looking on the left column under my ipad I see it is coming from previous rentals that are no longer available on my ipad. how can I delete this to free up the space on my ipad?

    Hi,
    When trying to sync my ipad i see that I have 10.6 gb of video on my device. When i looked at my itunes under rentals i see that is where all the video space is coming from. These videos are no longer available to watch and I didn't know  how i can delete them to free up the space on my ipad??

    Did you try to set it up as new device, as explained in this article?
    How to erase your iOS device and then set it up as a new device or restore it from backups
    If this does not work, use iTunes to set it back to factory settings, which would also install the latest software:
    Use iTunes to restore your iOS device to factory settings - Apple Support

  • When I send a text message it shows up as coming from my email address not my phone, can i change this

    when I send a text message it shows up as coming from my email address not my phone, can i change this

    another way to change it is :
    go to settings -> phone -> my number (iput your phone number)
    and then do what razmee209 said,
    after you change it, your phone number will authenticate with the operator that you use,
    I hope this could help you,

  • Downloaded IOS7 on iPhone 4, have sprint as carrier, now when another Sprint phone sends a text to my sons iPhone, Im getting a copy of the texts being sent to him.  Plus when I send a text, it shows as coming from my sons.  What's up, how can I fix this?

    I have downloaded ios7 on iphone 4s, Sprint is my carrier.  When I send a text to anohter iphone ALSO using sprint, it shows as coming from my sons phone.  When he gets a message from another iphone using sprint, I get copies of his messages.  Go figure.  It seems to be only other IPhones and Sprint users.  Hasnt' happend with android phones texting him, or him texting to androids or carriers that are not sprint.

    The fact that the problem only occurs when iphones are texting you leads me to think that iMessage may be the culprit. The fact that it is only iphones using SPRINT however is weird. Try turning imessage off on both yours and your sons phones to see if the problem persists. If it does, it may be a carrier problem.

Maybe you are looking for

  • Has anyone had success in running Bootcamp along side vmware Fusion?

    The only program I need windows for is Autodesk REVIT (A 3D CAD House modeling program) I use my mac for everything else. REVIT takes up alot of memory and needs a decent video card to run well. When I tried using bootcamp, the program (REVIT) ran sm

  • How to Change The Order of Songs?

    I have an album in my iTunes, and the tracks are in the wrong order. I edited the info for all of them so they all said __ of 11. I also made sure that they had the same exact spelling of the Album. I tried marking it as a gapless album and also as a

  • R/3 46c  delvry03 - PI 7.0 - SNC  5.1

    Hi All, I am working on the above mentioned scenario.We are using the pre-delivered content for SNC. In the XSLT mapping for DELVRY03 to SNC despatched delivery message interface to map the target quantity field , source field ./ORMNG is used. But in

  • SavingVolumeSetting...Somewhere

    I can't read anything from the records I add to my recordStore.When I run: System.out.println(database.getRecord(1) + "getting record" ); System.out.println(database.getNumRecords()+"NumRecords");I get: [B@f2cf6eb5getting record 9NumRecordsI really n

  • Analtic function first window size

    Hi if i use the analtic functin max as select max(sal) keep (dense_rank last order by empno) from emp; what will the the window size in this case. what i mean is i dont specify the sliding window in this case what will be the default. regards Nick