Max. no. of values can be uploaded to variable

Hi All,
Does any body knows what is the mx. no. of values can be uploaded for variable of type user entry/selection option.
Using selection option we can upload values of variable from flat file/clip board right
Im on BW 3.1c excel 2000 GUI 640
Thanks in advance
Robyn.
Message was edited by:
        Robyn Hoggard

bothfly, It's very easy....here you go!
Using Image Capture to download images and video clips:
Open up Image Capture which is found in the Applications folder.
When it is opened, go to Image Capture/Preferences
Under the General button choose
Camera: When a camera is connected, open Image Capture.
The next time you connect your camera Image Capture will open.
In the window that opens you will see an Options button. Click on that button to set your options.
To find out more about Image Capture (it can do a lot more) Click on Help in the menu bar when Image Capture is open.
iPhoto: How to Change the "Open Automatically" Preference
If you find you can't change any of Image Captures preferences or can't access any drop down menus or they are greyed out, check to make sure Image Capture is loose in the Applications folder and not within a sub folder.
I actually really like doing it this way. I save the movies into dated folders and save the images into dated folders. It makes it very easy to backup just the movies and images this way.

Similar Messages

  • Max size a AVI can be uploaded to iPhoto5

    I have a Fuji Fine Pix Z1 and upload pic and short AVI movies to iPhoto5 all the time. I took a AVI yesterday about 3 -4 minutes long and it wont upload to iPhoto. So I wanted to know if there was a limit iPhoto can handle on an upload or there is something wrong with my camera. But I also had some sort 30- 50 second AVI and they uploaded fine.
    Thanks

    bothfly, It's very easy....here you go!
    Using Image Capture to download images and video clips:
    Open up Image Capture which is found in the Applications folder.
    When it is opened, go to Image Capture/Preferences
    Under the General button choose
    Camera: When a camera is connected, open Image Capture.
    The next time you connect your camera Image Capture will open.
    In the window that opens you will see an Options button. Click on that button to set your options.
    To find out more about Image Capture (it can do a lot more) Click on Help in the menu bar when Image Capture is open.
    iPhoto: How to Change the "Open Automatically" Preference
    If you find you can't change any of Image Captures preferences or can't access any drop down menus or they are greyed out, check to make sure Image Capture is loose in the Applications folder and not within a sub folder.
    I actually really like doing it this way. I save the movies into dated folders and save the images into dated folders. It makes it very easy to backup just the movies and images this way.

  • Can I upload a simple iPhone App that all it does is direct the User to a Filemaker Pro URL   fmp://~filename.fmp?$VariableName=Value  This launches Filemaker Go and directs the user to the Database Hosted online   Right now there is no app store for

    Can I upload a simple iPhone App that all it does is direct the User to a Filemaker Pro URL   fmp://~filename.fmp?$VariableName=Value  This launches Filemaker Go and directs the user to the Database Hosted online
    Right now there is no app store for Filemaker Go.   Filemaker Forgot about us.
    So I want to create a simple native iPhone App that all it does
    is launch
    fmp://~/filename.fmp12?$VariableName=value
    This URL will launch the Filemaker Go App
    Filemaker Go is a app that the user will have to have
    downloaded already on the device..
    The Simple Native app will launch the Filemaker Go.
    The fmp  URL has the information where the Filemaker Pro database is hosted
    and get  the user where they need to be..
    Help Me please
    iPhone 5s, iOS 8.1.3

    That would be software. And, you said "upload." That's "uploading software." Why do you question what you stated?
    I don't know where you even want to upload this software. The only way it can be downloaded to a device is through the iTunes store. Do you even know what you want to do?

  • In Oracle 10g, what is the max number of values we can pass to  'IN' Clause

    Hi,
    In my SQL query i have a scenario like, i have to pass the values to 'IN' Clause dynamically from other application. I want to know what is the the max number of values i can pass to 'IN' Clause.
    i have searched in many pages i seeing answers like 'may be 1000' , 'not sure'....
    Could any one tell me the exact limit of IN Clause in 10g.
    Thanks in Advance.
    Chandran

    Hi, Chandran,
    Chandran M wrote:
    In my SQL query i have a scenario like, i have to pass the values to 'IN' Clause dynamically from other application. I want to know what is the the max number of values i can pass to 'IN' Clause.
    i have searched in many pages i seeing answers like 'may be 1000' , 'not sure'....Don't overlook [Dont want to know|http://forums.oracle.com/forums/thread.jspa?messageID=2683385&#2683385]. This may explain why people are reluctant to give a straight answer.
    Could any one tell me the exact limit of IN Clause in 10g.1000 items such as IN (1, 2, 3, ..., 1000)
    No limit on the number of sets: IN ((1), (2), (3), ...) *<=== NOT QUITE!* See below
    No limit in sub-queries: IN (SELECT ...)
    Edited by: Frank Kulash on Jun 3, 2009 9:43 AM
    The limit of 1000 applies to sets of single items: (x) IN ((1), (2), (3), ...)
    There is no limit if the sets contain two or more items: (x, 0) IN ((1,0), (2,0), (3,0), ...)
    Thanks to Michaels for pointing this out.
    Edited by: Frank Kulash on Jun 3, 2009 10:22 AM
    Fixed link

  • Upload data from excel:can we upload from .csv only?

    Hi Experts,
    Can we upload data from .CSV file only? Is this a limitation in ABAP? What if i have an excel sheet with multiple worksheets and I want to pick data from one of the worksheet. Is this scenario possible?
    Thanks and Regards,
    Rohit

    Hi Rohit.
    In CRM , it works somewhat differently. Following code snippet will help u.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_infile.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          DEF_FILENAME     = 'p_infile'
          DEF_PATH         = ' '
          MASK             = '*.txt'
          MODE             = '0'
          TITLE            = 'UPLOAD TAB DELIMITED FILE'(078)
        IMPORTING
          FILENAME         = p_infile
    *     RC               =
        EXCEPTIONS
          INV_WINSYS       = 1
          NO_BATCH         = 2
          SELECTION_CANCEL = 3
          SELECTION_ERROR  = 4
          OTHERS           = 5.
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *START-OF-SELECTION
    START-OF-SELECTION.
      gd_file = p_infile.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                    = gd_file
    *   FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR         = 'X'
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    *   VIRUS_SCAN_PROFILE            =
    *   NO_AUTH_CHECK                 = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
        TABLES
          DATA_TAB                   = it_record
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        write: 'Error' , sy-subrc .
        skip.
      ENDIF.

  • How many numbers  of records can be uploaded  using BDC  at a time

    dear friends,
                      i want to know that how many numbers  of records can be uploaded using BDC  at a time from legacy system(database).

    no resticsation.
    large value of data  upload.

  • Can I Upload Data from a table to matrix, while matrix is bound to another table??

    Hi Friends,
            right now i am uploading records to matrix row by row, but when records are very large in numbers then its taking too much time, so how can i upload these record directly to matrix without changing current data binding of the matrix.

    Hi Shrinivas,
    Can you please paste your code how your are copying your data to matrix ?
    Also have you tried this ?
    this.oDBDataSource= (DBDataSource)oForm.DataSources.DBDataSources.Add("@DETAILTABLE");
                                                                oForm.DataSources.DBDataSources.Item("@DETAILTABLE").InsertRecord(oDBDataSource.Size);
    this.oDBDataSource.SetValue("U_Field1", oDBDataSource.Size - 1, Convert.ToString(oDBDataSource.Size));
    this.oDBDataSource.SetValue("U_ICode", oDBDataSource.Size - 1, Convert.ToString(oRecSet.Fields.Item("ItemCode").Value));
    this.oDBDataSource1.SetValue("U_IName", oDBDataSource.Size - 1, Convert.ToString(oRecSet.Fields.Item("ItemName").Value));
    Finally use oMatrix.LoadFromDataSource()
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • Can't upload "put" files to remote server unless they are in a folder. Please help.

    I have done many searches on this and found no solutions. Here is the problem:
    When I upload a file from my local site to the remote server it works fine as long as that file is contained in a folder.
    Example:
    I can upload an image from my images folder, or a template page from my template folder with no problem.
    BUT, I can not upload any web/html pages, my CSS page, site map, or any file for that matter that is simply in the root directory but not in it's own folder.
    When I try to do that I get this error:
    index.html - error occurred - An FTP error occurred - cannot put index.html.  Access denied.  The file may not exist, or there could be a permission problem.   Make sure you have proper authorization on the server and the server is properly configured.
    File activity incomplete. 1 file(s) or folder(s) were not completed.
    Files with errors: 1
    index.html
    So every time I make a change to my index page I can't upload it to the server without getting that error unless I use a 2nd party program like Filezilla - which works fine. It is only Dreamweaver doing this.
    I have been using dreamweaver for a long time and had no problems with this site. This all started happening out of no where. and it is happening on my work and home computer.
    I made no changes to my server preferances or anythijng like that.
    I was just doing my thing - being happy - and then BAM, not happy any more....

    Hi there. First off thank you for your interest and your help.
    I have done what you suggest probably 30 times as I have obsessed over this crazy problem for a couple straight weeks before I finaly gave up on CS5.5
    I'm not sure what you mean by REMOTE server. The only server settings I am aware of are the ones in Dreamweaver. Here they are:
    5.0 Settings:
    Server Name = the same values on each
    Connect Using = FTP
    FTP Address = same numeric value on 5.0 & 5.5 port 21
    User name = same on both
    Password = same on both
    Root directory = is blank (I have tried it using / with no luck as well)
    web URL = http://ftp.westbrookadvertising.com/www/htdocs/
    Passive FTP is checked & Use FTP Peformance optimization is checked.
    5.5 Settings:
    Server Name = the same values on each
    Connect Using = FTP
    FTP Address = same numeric value on 5.0 & 5.5 port 21
    User name = same on both
    Password = same on both
    Root directory = is blank (I have tried it using / with no luck as well)
    web URL = http://ftp.westbrookadvertising.com/www/htdocs/
    Passive FTP is checked & Use FTP Peformance optimization is checked.

  • I can't upload photos to facebook from the photo library after upgrading to iOS 8

    AFter updating ios8 i can't upload photos from photo library to fcebook..even i can't upload photos with safari browser...what can i do now??

    It is peculiar, that Chrome, Safari, and Skype can access FB, but not the iPhoto uploader.
    Do you see any error messages/ diagnostics in the Console Window, when you try to connect to Facebook?
    Launch a Console window from Applications > Utilities and clear the Console Window. Then try to upload. Are there any new messages?
    And also launch a Terminal and have a look, if "facebook.com" is properly resolved:
    Type 
    ping facebook.com
    into the window. Do you see any transmissions? What is the IP address used?
    I see:
    PING facebook.com (173.252.110.27): 56 data bytes
    64 bytes from 173.252.110.27: icmp_seq=0 ttl=243 time=110.486 ms
    64 bytes from 173.252.110.27: icmp_seq=1 ttl=243 time=109.365 ms
    64 bytes from 173.252.110.27: icmp_seq=2 ttl=243 time=110.101 ms
    64 bytes from 173.252.110.27: icmp_seq=3 ttl=242 time=109.829 ms
    64 bytes from 173.252.110.27: icmp_seq=4 ttl=242 time=111.323 ms
    64 bytes from 173.252.110.27: icmp_seq=5 ttl=242 time=110.346 ms
    64 bytes from 173.252.110.27: icmp_seq=6 ttl=242 time=110.708 ms
    64 bytes from 173.252.110.27: icmp_seq=7 ttl=242 time=112.685 ms
    64 bytes from 173.252.110.27: icmp_seq=8 ttl=243 time=124.256 ms
    64 bytes from 173.252.110.27: icmp_seq=9 ttl=243 time=112.106 ms
    ^C
    --- facebook.com ping statistics ---
    10 packets transmitted, 10 packets received, 0.0% packet loss
    round-trip min/avg/max/stddev = 109.365/112.120/124.256/4.159 ms
    Try the same with "dig":
    dig facebook.com
    ; <<>> DiG 9.8.3-P1 <<>> facebook.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 25051
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;facebook.com.                              IN          A
    ;; ANSWER SECTION:
    facebook.com.                    775          IN          A 173.252.110.27
    ;; Query time: 11 msec
    can you "ping" facebook?

  • I can't upload pictures to Facebook Pages albums with my IPad Mini 3. I've tried safari too and the basic uploader doesn't work. I can add photos to the wall but I need to put them in albums for my Boutique,

    I can't upload pictures to Facebook Pages albums with my IPad Mini 3. I've tried safari too and the basic uploader doesn't work. I can add photos to the wall but I need to put them in albums for my Boutiqu

    It is peculiar, that Chrome, Safari, and Skype can access FB, but not the iPhoto uploader.
    Do you see any error messages/ diagnostics in the Console Window, when you try to connect to Facebook?
    Launch a Console window from Applications > Utilities and clear the Console Window. Then try to upload. Are there any new messages?
    And also launch a Terminal and have a look, if "facebook.com" is properly resolved:
    Type 
    ping facebook.com
    into the window. Do you see any transmissions? What is the IP address used?
    I see:
    PING facebook.com (173.252.110.27): 56 data bytes
    64 bytes from 173.252.110.27: icmp_seq=0 ttl=243 time=110.486 ms
    64 bytes from 173.252.110.27: icmp_seq=1 ttl=243 time=109.365 ms
    64 bytes from 173.252.110.27: icmp_seq=2 ttl=243 time=110.101 ms
    64 bytes from 173.252.110.27: icmp_seq=3 ttl=242 time=109.829 ms
    64 bytes from 173.252.110.27: icmp_seq=4 ttl=242 time=111.323 ms
    64 bytes from 173.252.110.27: icmp_seq=5 ttl=242 time=110.346 ms
    64 bytes from 173.252.110.27: icmp_seq=6 ttl=242 time=110.708 ms
    64 bytes from 173.252.110.27: icmp_seq=7 ttl=242 time=112.685 ms
    64 bytes from 173.252.110.27: icmp_seq=8 ttl=243 time=124.256 ms
    64 bytes from 173.252.110.27: icmp_seq=9 ttl=243 time=112.106 ms
    ^C
    --- facebook.com ping statistics ---
    10 packets transmitted, 10 packets received, 0.0% packet loss
    round-trip min/avg/max/stddev = 109.365/112.120/124.256/4.159 ms
    Try the same with "dig":
    dig facebook.com
    ; <<>> DiG 9.8.3-P1 <<>> facebook.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 25051
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;facebook.com.                              IN          A
    ;; ANSWER SECTION:
    facebook.com.                    775          IN          A 173.252.110.27
    ;; Query time: 11 msec
    can you "ping" facebook?

  • MAX capcity of file can be attched and sent To IXOS server

    Hi All
    want to know what will be the MAX capcity of file can be attched and sent To IXOS server ?
    can we contol it .
    =>How we attach document
    Store Business document in FD32
    It in ->Go to - FD32
    ->On Title BAR(customer credit management change :overview) click on the ICON displayed left corner
    Create - Store Business document
    It is below create attachments .
    Regards
    Sri

    It could be your Proxy but in addition check this: "Limiting the Length of the Request Body"
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/25/b0a4f6f2b03a43a727a165a4d6a555/frameset.htm
    I know as I had the same issue, there are no other settings that have a direct impact on the filesize for uploading. /thread/1192865 [original link is broken]
    Cheers,
    Benjamin

  • Max cond value vs max cond base value

    Hi All,
    What is the difference between
    Maximum condition value & Max condition base value, in the condition records. (VK11,12,13)
    Path - Maximum condition value:-
    VK13 --> condition records --> add sales data --> max cond value
    For Path Maximum condition base value, i cant see the field out there on the screen
    PL help with the differences between the functionality, appreciate, if it is with an example
    Jimit Shah

    Hi Jimit,
    I think it should be ' Condition Base value " and "Max condition value " I may be wrong.
    Conditional base value  When a value is derived for a condition type, based on certain calculation this value is taken as base.
    Condition base value is a concept used in pricing procedure and actual term used is alternate condition base value. This is a formula assigned to a condition type in order to promote an alternate base value for the calculation of the value. If you have to calculate price of a material then you have to have a base value for it. For e.g. if you want to calculate the discount of 10 % for a material then you have to have a base value on which this 10% is calculated. Normally you take the condition value of the base price of the material to calculate the value.
    Max condition  value, Provided that the condition update function is active for a particular condition type, you can create condition records that specify a maximum cumulative value. The system uses the condition value of an item as the basis for the cumulative value.
    You can specify the maximum value when you maintain an existing condition record. The condition update indicator must be maintained in Customizing for Sales for the corresponding condition types.
    For example, specify that a customer receives a 10 USD discount for a particular material up to a maximum cumulative order quantity of 5,000 cases. As the customer places sales orders for the item, the system keeps track of the cumulative value (in this example, the number of cases) and stores this data at the condition record level. Once the cumulative value reaches 5,000 cases, the system automatically deactivates the discount. ( Source help.sap.com )
    To view the cumulative value for a particular condition record:
    Within the condition record, choose Extras > Cumulative values.
    A dialog box displays the cumulative value of sales orders where this condition record was used.
    Thanks/Rajesh
    Edited by: Rajesh Kumar Bhansali on Mar 2, 2011 5:40 PM
    Edited by: Rajesh Kumar Bhansali on Mar 2, 2011 5:41 PM

  • Finding Max of Dimension values

    Hi ,
    I want to find the Maximum value of a parituclar dimension( ex: TopSellers dimension has values like 100,200,700,300 etc.).
    What could be the query parameter that we can use while querying.
    Thanks,
    Unnam

    Hello Unnam,
    If you are in a situation where you have too many refinement values to return just for the purposes of getting the min/max values or you are using the "More..." functionality and sorting alphabetically, there is another feature that will allow you to get min/max and other values - analytics queries. This may require additional licensing from Oracle, you'll have to check.
    For the details:
    http://docs.oracle.com/cd/E28910_01/MDEX.622/pdf/AnalyticsGuide.pdf
    Your analytics query will be very simple compared to what's in the guide above.
    Analytics need to be enabled in the ./MDEX/6.X.X/conf/ProductConfig.xml file, adding the following line within the <PRODUCT_CONFIG> element:
    <FEATURE NAME="Analytics API" ENABLE="TRUE"/>
    The following is an example Analytics statement that can be used to capture the min and max value for the p_Fee property in a given navigation state:
    RETURN FeeStmt AS SELECT MIN(p_Fee) AS MinFee, MAX(p_Fee) AS MaxFee GROUP
    This statement can be added to the basic ENEQuery object in the application code as in the following example:
    ENEQuery query = ...
    String analyticsFeeStr = "RETURN FeeStmt AS SELECT MIN(p_Fee) AS MinFee, MAX(p_Fee) AS MaxFee GROUP";
    AnalyticsQuery analytics = AnalyticsQuery.parseQuery(analyticsFeeStr);
    query.setAnalyticsQuery(analytics);
    The results can be retrieved from the returned Navigation object using Navigation.getAnalyticsStatementResult(), as in the following example:
    Navigation nav = ...
    AnalyticsStatementResult analyticsFeeResult = nav.getAnalyticsStatementResult("FeeStmt");
    long numAnalyticsERecs = analyticsFeeResult.getReturnedNumERecs();
    String minFee = "";
    String maxFee = "";
    if (numAnalyticsERecs > 0) {
    ERec analyticsFeeERec = (ERec) analyticsFeeResult.getERecIter().next();
    minFee = (String) analyticsFeeERec.getProperties().get("MinFee");
    maxFee = (String) analyticsFeeERec.getProperties().get("MaxFee");
    -Tim

  • Can I upload from my MacBook to an eMac via Time Machine?

    Can I upload my MacBook Time Machine to a (newly acquired) eMac... and if so how? (my Time Machine is on a USB 2.0)
    My MacBook runs 10.5.8 Leopard and the
    eMac specs:
    Mac OS X version Tiger. Power PC G4 1.42GHz processor, minimum of 256 mb DDR PC 3200 memory(ram), 80 GB hard drive, CD-RW/DVD ROM combination drive, 64 mb ATI Raedon 9600 video card, 3 usb 2.0 ports, 2 firewire ports, built-in modem, built-in ethernet port for high speed internet, headphone jack, audio line-in jack, video output port.
    Now I already know that I have to max out my RAM prior to running Leopard 10.5 and I know that the eMac cannot run Snow Leopard. While I am not totally new to Mac, I am new to upgrading an older Mac.
    Please help me...
    Thanx in advance,
    L

    Yes, you need to purchase a retail copy of Leopard, on a disc.  It's not available in stores anymore; but AppleCare still has it, for the original price of $129.
    You may find some on eBay or other places; most are charging more, but if you find one for less, be sure it's a Retail (black) disc; the gray ones that came with Macs are specific to that model and build period;  they won't work on your eMac.

  • I can t upload picture over 3g in oscommerce for ex

    Hello,
    I own an iphone and a new ipad and i ve encountered a problem. I can t upload pictures on my site over 3g. It works just fine over wifi, but not over 3g. Anyone has solved something like this?
    Thanks a lot! ;)

    I understand, but the pictures i m talking avut are jpegs max size 100kb, edited in Photoshop touch and then resised with Simple resize. I upload them onto my site in an oscommerce interface. I ll talk to the carrier, even thow i used first a Vodafone Sim and now i m using my iPhone as a hotspot- the iPhone  carrier is Cosmote.
    It should be some logic solution and i can t wait to find it.
    Thanks a lot!
    Best regards!

Maybe you are looking for

  • Old custom templates in Pages 5 .select background item?

    I have some custom templates from iWork 09, that worked fine until this pages 5.22 came along. They are in Word Processing Layout, and also have a separate text box or two. In Pages 5.22 I can not longer select them, they just appear on the screen as

  • Configurations required for sender/reciever mail adapters

    Hi, I am working on a scenario, which involves mail adapter configuration. Mail Adapter scenarios – SAP Exchange Infrastructure: /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure XI: HTML e-mails from th

  • Depreciation GL is Cost element or Not?

    HI, In Asset accounting,will we create Depreciation GL account as Cost element or normal?If we create as cost element what are the additional configuration needed. Kindly clarify me Thanks Sunitha

  • Is there a way to include images in a feature request to apple?

    I often feel that that best way to convey my feature request is with an image showing an example of the request. Does anyone know of a way to include images along with your feature request? Thanks

  • Error when creating rework order

    Hi   When I am creatng a rework order for a material it is showing an error message that referance doesnt exist why is that error coming