Hi all xi experts

hi all.
iam new to sap-xi but i have seen one data type which is
eno   xsd.string      unbounded
esal  xsd.string       1.....6
what is the differnece between these two  unbounded and 1...6.
waiting for u r response.
bye.
regards.
seeta.

Hi Ram
<u>Eno xsd.string  unbounded</u>
in this eno is the field name of type string with maxoccurances unbounded
<u>esal xsd.string 1..6</u>
esa is the field name of type string with minimum occurance 1 and maximum occurance 6. so that the field may be repeated in the input file atleast 1 time to 6 times.
Cheers..
Vasu
Reward Points if found useful **

Similar Messages

  • To All Droid1 Experts

    I am “using” my 4th Droid1.  Among many problems, the first phone would not hold a charge.  The second phone would freeze, make a call while listening to vm's and screen timeout would change.  The third arrived with a broken slider.  The fourth touch screen will not work much of the time, phone freezes or screen goes dark.  Please don’t tell me that I am **bleep**, unable to figure out the phone or any of the other rude, condescending comments I see on these posts.  I come here looking for help and get tired of reading though a lot of thoughtless comments looking for answers.  To those of you who are “experts” with the Droid, please try to help people instead of tearing them down.

    ontheroad wrote:
    Thank you for the suggestion.  With 4 phones, I have been to the store many times.  Most of the time the solution has been a factory reset or new phone because they could not fix the problem(s).  A very few problems were my fault but most of the problems were a hardware/software issue.  The tech support  (in store and phone) people are really nice; they just don't know how to fix the issues.  It is interesting that I have been told I am the" only one" having a certain problem and I see from the comments here that is not true!   All phones can have some glitches but the issues with the Droid1 are beyond reasonable.
    Sometimes you'll get better results if you call IN to tech support instead of visiting the store.

  • Hi TO All  ABAP Experts,

    I am very new to ABAP Programming,I went through all of the posts related to BDC in sdn forum.I have got a clear understanding of BDC.I tried most of the example code and screen short,but none of them working fine.
    Can anybody send the screen  shorts from SHDB(recording ) from start to end with text file format used
    for uploading corresponding information in bdc.If it is related toVA01 or migration of data from external file to sap r/3 on Material master using session method ,it will be great.
    Other wise Please send me any bdc program you done in a real time environment.
    my mail id is [email protected]
    Thanks and Regards
    Namratha

    Hello Namratha,
    Go through these steps for recording by using SHDB.
    How to use recording
    Go to SHDB
    --> Click on New Recording
    --> Provide any name in Recording , For ex:  Z_CHAITU
    --> Provide the Transaction name as “MM01”
    --> Select the update mode as Synchrounous or  Asynchrounus method
    --> Click on Start Recording button.
    --> It will display MM01 screen….type the appropriate
    information in it.
    --> Type the Material no as : 4567E (Any no, But there should b 1 Character in it)
    --> Type Checmical Industry in INDUSTRY SECTOR
    --> Type COUPONS in MATERIAL TYPE
    --> Now click on Select Views button.
    --> Select BASIC DATA 1
    --> Click on Ok button
    --> Under Basic data tab under Material, it will display the Material number.
    --> Type the short description   and “Provide EA as Base Unit Of Measure”
    --> CLICK ON BACK AND IT WILL ASK U TO SAVE THE DATA, CLICK ON YES
    -->  Again click on Back, it will ask if u wish to save the changes to record entries.
    -> Click on Yes
    --> Now, u will be in Initial screen
    --> Select the record and  Click on Program button
    --> Now, provide any program name
    --> Now, select ‘Transfer from recording’
    --> Click on Tick mark
    --> Give some short description
    --> Type as Executable
    --> Click on Source Code button
    --> Automatically the code will appear in SE 38 program.
    U can try these steps with any T-code by knowing the Mandatory fields in it.
    Here is the sample code which I have done for MK01.
    *& AUTHOR : Krishna Chaitanya
    *& TITLE  : BDC FOR MK01
    *& DESCR  : UPLOAD THE DATA THROUGH FLAT FILE
    *& TRANSPORT : DOLK901203
    *& VERSION : V1
    *& DATE  :  17th , JAN , 2008
    report Z24_BDC_MK01
           no standard page heading line-size 255.
    *& DECLARATIONS OF STRUCTURE FOR MK01
    **U can create ur own flat file with the same structure
    with tab' s Namratha
    KTOKK, NAME1,SORTL, PSTLZ, LAND1
    TYPES : BEGIN OF TY_MK01 ,
             KTOKK TYPE RF02K-KTOKK ,
             NAME1 TYPE LFA1-NAME1 ,
             SORTL TYPE LFA1-SORTL ,
             PSTLZ TYPE LFA1-PSTLZ ,
             LAND1 TYPE LFA1-LAND1 ,
             END OF TY_MK01 .
    *& DECLARATION OF INTERNAL TABLE
    DATA : T_MK01 TYPE STANDARD TABLE OF TY_MK01 INITIAL SIZE 0 ,
           T_BDCDATA TYPE STANDARD TABLE OF BDCDATA INITIAL SIZE 0 ,
           T_BDCMSGCOLL TYPE STANDARD TABLE OF BDCMSGCOLL INITIAL SIZE 0 ,
           T_ERROR TYPE STANDARD TABLE OF TY_MK01 INITIAL SIZE 0 ,
    *& DECLARATION OF WORK AREA
           W_MK01 TYPE TY_MK01 ,
           W_BDCDATA TYPE BDCDATA ,
           W_BDCMSGCOLL TYPE BDCMSGCOLL .
    *& DECLARATION OF SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME .
    PARAMETERS : P_FILE TYPE FILENAME .
    SELECTION-SCREEN END OF BLOCK B1 .
    *& DECLARATION OF START-OF-SELECTION
    START-OF-SELECTION .
    PERFORM SUB_UPLOAD_DATA .
    PERFORM SUB_POPULATE_BDC .
    PERFORM SUB_ERROR_REC .
    *include bdcrecx1.
    *&      Form  SUB_UPLOAD_DATA
          text
    form SUB_UPLOAD_DATA .
    DATA  : L_FILE TYPE STRING .
         L_FILE = P_FILE .
    CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
         filename                      = L_FILE
         HAS_FIELD_SEPARATOR           = 'X'
       tables
         data_tab                      = T_MK01 .
    endform.                    " SUB_UPLOAD_DATA
    *&      Form  SUB_POPULATE_BDC
          text
    form SUB_POPULATE_BDC .
    LOOP AT T_MK01 INTO W_MK01 .
    DATA : L_MSG TYPE STRING .
    REFRESH T_BDCDATA .
    perform bdc_dynpro      using 'SAPMF02K' '0107'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RF02K-KTOKK'
                                   W_MK01-KTOKK.
    perform bdc_dynpro      using 'SAPMF02K' '0110'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-LAND1'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'LFA1-NAME1'
                                   W_MK01-NAME1.
    perform bdc_field       using 'LFA1-SORTL'
                                   W_MK01-SORTL.
    perform bdc_field       using 'LFA1-PSTLZ'
                                   W_MK01-PSTLZ.
    perform bdc_field       using 'LFA1-LAND1'
                                   W_MK01-LAND1.
    perform bdc_dynpro      using 'SAPMF02K' '0120'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02K' '0130'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-LIFNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    CALL TRANSACTION 'MK01' USING T_BDCDATA MODE 'N' MESSAGES INTO T_BDCMSGCOLL .
    IF SY-SUBRC <> 0 .
    APPEND W_MK01 TO T_ERROR .
    ENDIF .
    CLEAR W_BDCMSGCOLL .
    READ TABLE T_BDCMSGCOLL INTO W_BDCMSGCOLL INDEX 1 .
    CLEAR L_MSG .
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
       ID              = W_BDCMSGCOLL-MSGID
       LANG            = SY-LANGU
       NO              = W_BDCMSGCOLL-MSGNR
       V1              = W_BDCMSGCOLL-MSGV1
       V2              = W_BDCMSGCOLL-MSGV2
       V3              = W_BDCMSGCOLL-MSGV3
       V4              = W_BDCMSGCOLL-MSGV4
    IMPORTING
       MSG             = L_MSG
    EXCEPTIONS
       NOT_FOUND       = 1
       OTHERS          = 2
    IF sy-subrc = 0.
    WRITE : / 'MESSAGE FOR ' , W_MK01-KTOKK ,'-------' , L_MSG .
    ENDIF.
    ENDLOOP .
    endform.                    " SUB_POPULATE_BDC
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR W_BDCDATA.
      W_BDCDATA-PROGRAM  = PROGRAM.
      W_BDCDATA-DYNPRO   = DYNPRO.
      W_BDCDATA-DYNBEGIN = 'X'.
      APPEND W_BDCDATA TO T_BDCDATA .
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
        CLEAR W_BDCDATA.
        W_BDCDATA-FNAM = FNAM.
        W_BDCDATA-FVAL = FVAL.
        APPEND W_BDCDATA TO T_BDCDATA .
    ENDFORM.
    *&      Form  SUB_ERROR_REC
          text
    -->  p1        text
    <--  p2        text
    form SUB_ERROR_REC .
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = 'C:/ERRORS OF MK01.TXT'
       WRITE_FIELD_SEPARATOR           = 'X'
      tables
        data_tab                        = T_ERROR .
    endform.                    " SUB_ERROR_REC
    Hey Namratha...I know there will be little confusion. But, trust me...try with this code and u will automatically able to work with any Transcation code.
    All the best!
    Edited by: Krishna Chaitanya on Mar 21, 2008 9:41 AM

  • Calling all script experts - Wierd problem with a previously perfect script

    Hi,
    As script which used to work fine is now causing me big problems.
    The line that is causing the problem is highlighted in the script editor as:
    tell application "Finder" to set file_List to every file of entire contents of master_Folder -- Obtains all related files.
    On running the script I get the following message:
    Finder got an error: Can't make every file of entire contents of alias "Atlas Mac-Mini:Users:design:Desktop: TESTpictures - for script:Landscape copy:" into type reference.
    As I said the script used to work fine, A couple of members of this forum have tried to rewrite the script for me (thanks to them) but I'm still gettig the same message. I'm wondering is there something wrong with my system (which otherwise works fine).
    I'd appreciate any help and advice on what may be going wrong.
    Thanks, Ray
    In case it helps, here's the full script (which adds the file's path to the filename):
    set master_Folder to (choose folder with prompt "Choose a folder for filename processing") -- Select folder.
    set path_Depth to ((choose from list {1, 2, 3, 4, 5} with prompt "How many paths in these filenames?") as number) -- Select folder depth.
    tell application "Finder" to set file_List to every file of entire contents of master_Folder -- Obtains all related files.
    repeat with i in file_List
    set {oAStId, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ":"}
    set fileItemsList to text items of (i as string) -- List of individual path items [disk, folder(s), file] of file of file_List.
    set fileItemsCount to count fileItemsList -- Number of individual path items.
    set fileItemsList to text items (fileItemsCount - path_Depth) through fileItemsCount of fileItemsList
    set fullFileName to last item of fileItemsList as string -- Obtain full file name.
    set AppleScript's text item delimiters to "."
    try -- Obtain file name and file extension.
    set file_Name to ((text item 1 of fullFileName as string) & "-") -- Obtain only file name, less any file extension..
    set file_Ext to ("." & (text item 2 of fullFileName as string)) -- Obtain file extension.
    on error -- Sets up a "If you can't do case 1 then try this" .
    set file_Ext to "" -- If no File Extension exists, set 'file_Ext' to "".
    end try
    set AppleScript's text item delimiters to "-"
    -- Change name of file.
    set name of i to (file_Name & ((text items (1) through ((count fileItemsList) - 1) of fileItemsList) as string) & file_Ext)
    set AppleScript's text item delimiters to oAStId
    end repeat
    Various   Mac OS X (10.4.6)  

    Hello RaymondTomin,
    I don't see any reason for Finder to throw such an error in the said line. Perhaps something is wrong in your system.
    Try the following test scripts. If they fail on any folder you choose, I'm afraid something is surely wrong in your system, not in your script code.
    (If they fail, create new user account and try them in it to narrow down the problem cause. Also try repairing disk and/or repairing permissions.
    And it might help as well to clear some caches by using, e.g. Onyx:
    http://www.titanium.free.fr/pgs/english.html
    Or even to re-apply OSX's Combo Updater:
    http://www.apple.com/support/downloads/
    Good luck
    H
    -- TEST 1
    set fda to choose folder
    tell application "Finder"
    items of item fda
    end tell
    -- END OF TEST 1
    -- TEST 2
    set fda to choose folder
    tell application "Finder"
    try
    items of item fda as alias list
    on error
    items of item fda as alias as list
    end try
    end tell
    -- END OF TEST 2
      Mac OS 9.1.x  

  • Calling all Mac Expert's For your Help!!!

    When Logging onto my Mac why do I have to click twice on the icon to open the password box. From the beginning, when ever I leave my Mac for any period of time I log out. It is then set to sleep after 20 min. After returning I touch ESC and the Log on window opens I have the Eagle as my icon on the Log on window. Sometimes it opens the password box after 1 click but 98% of the time I have to click twice. I went to the local Apple store & tried it on there MacBooks and it works on 1 click. They told me that there were no adjustments for this issue and they did not know why this was happening. Any help would be greatly appreciated...
    Thank you

    Welcome to the forum.
    John makes a very good point on actually **** the work vs instructing other on doing it. What is your level of expertise with Photoshop? Image #1 would be rather straight-forward, but probably due to an acetate overlay, or maybe a spill, Image #2 would be a lot more work. I can recommend a couple of good books on restoring older photographs.However, some of the techniques in them are pretty advanced. If one is not already familiar with PS, they could easily be frustrated and lost.
    Next, it is not a wise idea to post your e-mail address in any public forum. There are 'bots, that crawl the Internet, just looking for such. If one needs to give access to e-mail, it's best in their Adobe Forum Profile, or listed something like this: infoAThuntphotoDOTcom. The 'bots will not see that, and almost everyone know that AT=@ and DOT=. For you security, you might want to "mung" your e-mail address in a reply to your original post. You cannot edit an original post (but can a reply, so long as no one has replied to you), but the MOD's can do it for you. I would post a reply to your original post, find a way to restate your e-mail address (in case someone has a fix for you), and then report your OP for "Abuse." In that screen's drop-down, choose "Personal Info." That will flag it for the MOD's to correct and save you tons of spam. I'd do this for you, but then if you did not mung the e-dress, others would be lost. That's why I suggest that you do it yourself.
    Let us know about your PS expertise, and someone can definitely step you through the processes. If you are not familiar with the program, it'l all be useless jabber.
    Good luck, and sorry for your loss,
    Hunt

  • CALLING ALL COPA EXPERTS :

    All
    We have a COPA cube running in BWQ right now , a request came in to add a new field to COPA .
    The field was added to the COPA table . I read somewhere that if we have to add a new field to COPA datasource , we have to delete and create a new one.
    Is that a true state , if yes why is that so , if no then can some one give me the steps.
    Thanks
    Message was edited by: BW SDN

    I thought this was a nice, simple tutorial:
    http://www.sitepoint.com/print/masking-techniques-photoshop
    It addresses exactly what you want to do.

  • Hi all sap experts    F4 problem -  no solution is coming from forum

    hi all
    in alv grid output ( not in selection screen) there is a input enabled field say xyz, this field is given f4 help by creating ztable, and when f4 is pressed on xyz field, it is fetching all the data related to that field, but the user wants restricted value with respect to company code and land1, the alv grid shows no of rows and company code and land1 are 1st and 2nd fields in the output.
    how to restrict the value in F4 help ???
    provide code pl.
    thanking u in advance
    rocky

    Rocky,
      Already i replied for this.
    See you might have written a FM
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
             EXPORTING
                  retfield        = 'WERKS'
                  dynpprog        = ws_repid
                  dynpnr          = sy-dynnr
                  value_org       = 'S'
             TABLES
                  value_tab       = i_t001w
                  return_tab      = v_return
             EXCEPTIONS
                  parameter_error = 1
                  no_values_found = 2
                  OTHERS          = 3.
    whatever the fields you have in the internal table those will display in help.
    To restrict these take company code and land1 fields in internal table select the values and pass that internal table into  above FM
    Ex : internal table is "i_t001w"
    Don't forget to reward if useful...

  • To Creator Team and All Creator Experts..??

    Hi
    Myself Prashant (SCJP)
    Currently I am using studio creator as my development tool
    It's Impressive but I got an Problem while retriving data in html format in my database and showing it as it is formatted using html tags used and stored in database along with data
    if anybody of u can solve my problem and send me the proper instruction or information ..plz do tht
    Thank You..

    I think this is not Creator problem and you should ask your question in programming forum.
    BTW if you store html data within database you should care about special characters like quotes etc. Anyway more information about your problem required. Provide more details in programming forum.

  • Dice vi in labview needed.Can all the experts in labview help?

    i need to use labview to create a dice vi.This dice vi needs to test an interfacing hardware downloaded with a dice program(written in vhdl).
    i really need help in writing the vi and using the daq card to interface with the hardware.I'm using a pci-6503 with cb-50lp, and labview 6i.
    Here are the specifications for the vi:
    1.Needs 7 dig_read_to_lines to show the leds(display 7-seg to show the numbers of dice after each 'throw');
    2.needs 2 dig_write_to_lines to tell the hardware to when to start and when to reset.When start is first pressed, the 7-seg will display a continuous running random number, and when the start is pressed the 2nd time, the 7-seg will stop to display a random number.T
    he reset when pressed will make the 7-segment back to 0.
    3.both the read and write can also using read_to_port or Write_to_port(i'm not very sure how).
    The problem is to combine both read and write togather so that the vi can continuously read the hardware and display random running numbers and at the same time able to start,stop and reset as desired.I've tried doing it,but unsuccessful,becos either the numbers don't run continuous or the numbers don't start,stop andt reset as desired.
    Pls help and if anyone can show me a model dice vi,it'll definitely help alot.Its quite important.

    Here is how you can set up your VI. I would recommend using the read and write to digital port VIs. Use the DIO advanced VIs to get the results that you need. You will see that the read/write to digital port VI basically use two steps - Port Config, and Read/Write Port VI.
    Here is my idea. Outside of a loop run Port Config VI and configure one port for read and one port for write. Then in the loop you will read and/or write to digital ports depending on certian conditions such as start, stop, reset, etc (use case statements). You can use the line mask to read or write the lines of interest in Read/Write Port VI.
    So when the start button is pressed the program will write out a value to the write port and start the read from digital port.
    Then when the the st
    op button is pressed, the program will stop reading from the digital port. Finally when the reset is pressed, you can not set the read port to zero, but you can set the indicator on the front panel to zero (maybe use a local variable). The read port will simply return the value at the port and does not set the port to a certain value (it is a read port and not a write port).

  • Calling ALL Lightroom experts

    Help! I wa nt to take a black and white photo and make the flower the only thing that has color. Is that an option with lightroom? I also want to make graphic watermarks. Do i need photoshop? Is there a download i can purchase for my lightroom??

    Bryan Conner wrote:
    I know that you can edit a watermark in Lightroom (Edit>Edit Watermarks) but I am not sure if this is what you are looking for.  I do not use watermarks. If you want to use a png file with a transparent background, you definitely will need an image editor such as Photoshop.
    Yes, you can use Edit Watermarks to set up as many watermark presets as you need, and then you assign one to each export job. I wanted to clarify one thing though. You can definitely use the Lightroom watermark editor to import and apply a graphic watermark such as a transparent PNG, so if you already have one, you can just bring it in and set it up. But if you need to create the graphic watermark file itself, you do need Photoshop to do that.

  • To all jmf experts

    any player has a default control component on which there is a button (last on the right) that if u right-click on u see a some different ratios for the rate but when tried to change the ratio by selecting one of these check boxes nothing happens???
    why, and how is it possible to solve that??
    Thanx
    maria

    well i got an answer from someone that works for sun
    he said something about a bug
    ...so dont waste your time till they fix it....
    in general i dont think that jmf cooperates very well with the awt and swing anyway...

  • Hi All Sap experts

    I looking for a list of bank key and bank from Indonesia. Could anyone help me on this?
    thanks in advance,
    Marcelo

    Rocky,
      Already i replied for this.
    See you might have written a FM
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
             EXPORTING
                  retfield        = 'WERKS'
                  dynpprog        = ws_repid
                  dynpnr          = sy-dynnr
                  value_org       = 'S'
             TABLES
                  value_tab       = i_t001w
                  return_tab      = v_return
             EXCEPTIONS
                  parameter_error = 1
                  no_values_found = 2
                  OTHERS          = 3.
    whatever the fields you have in the internal table those will display in help.
    To restrict these take company code and land1 fields in internal table select the values and pass that internal table into  above FM
    Ex : internal table is "i_t001w"
    Don't forget to reward if useful...

  • Hi Good Day to all experts

    I am new to java swing. I just want to ask help to all the experts here in this forum on how to display image in JLabel
    after pressing a JButton components. Hope you can all help me

    Did you read the JavaDoc for classes javax.swing.JButton and javax.swing.JLabel?
    Yiu can find them here:
    http://java.sun.com/javase/6/docs/api/javax/swing/JButton.html
    and
    http://java.sun.com/javase/6/docs/api/javax/swing/JLabel.html

  • Wireless and network printing transcript for Meet the Experts

    On March 16th, HP hosted its first online chat event on wireless and network printing. Below is a transcript of that session.
    I am in the process of planning the next chat event. I would love to hear what topics would interest you, what day of the week and time is best for you, and if you think an hour is too long.
    So, if you get a minute, please let me know.
    Here's the transcript:
    SiobhanF-HP: Welcome! Cameron, Craig, David, and Jim are ready to tackle your questions.
    SiobhanF-HP: Just to remind you if you want to ask a question, you must be a member of the HP Support Forums. If you want to join, go here https://passport2.hp.com/hppcf/createuser.do
    nc256: Do I need a wireless router to hook up my wireless printer?
    CameronL-HP: No, but most people will want to do it this way. You can use a feature called an ad hoc connection to avoid using a router, but it is only covered under an older standard that is slower and less secure. Also, without something to route traffic between the local network and the internet, you cannot get an internet connection. Using a wireless router makes setting up a wireless network easier, and it will generally make the network work better too.
    jest1: I've seen some hardware in stores for a "print server" hardware device that attaches to a network. Is this something that I need in order to run a printer over a network?
    CraigB--HP: Not if you have a printer that has a network connection built in. Many models of HP computers are ready to be connected directly to your wired or wireless network.
    katiepage: How can I print when I am using a VPN?
    DavidH-HP: VPN connections generally hide the rest of your home network to increase the security of the VPN connection. A printer on the network isn’t a security threat but the VPN doesn’t know that. It just hides everything just to be sure. That means that when a VPN is active you need some way to connect to the printer other than your home network. Bluetooth, USB, and even printing to a thumb drive and plugging that into the printer are all ways of getting your print job to the printer that don’t go through your home network.
    SiobhanF-HP: If you have specific product questions, the more information you give us the better we will be able to help you. Getting your exact model number; any error messages; a description of your wireless network including what kind of security you have, what wireless-devices are connected to your network, and your IP address will go a long way to helping us answer your question.
    MelissaP: Why would I want a wireless printer?
    CraigB--HP: The main advantage of a wireless printer is the ability to place the printer somewhere in your home or office even if this is not near your router or computer.
    Deltan: What is the maximum distance I can have between my router and my printer?
    CameronL-HP: It does depend on your environment. Without interference about 25 feet. Walls and floors and other objects can reduce this. The types of walls are important. For example, mirrors and outdoor walls will greatly reduce the indoor range.
     jest1: Is there a preferred wireless router type or brand for wireless printing compatibility? We are using a Linksys 802.11g router in my home.
     JimB-HP: In general, any wireless-router from a name brand manufacturer that has been Wi-Fi certified is compatible with our printers (look for the Wi-Fi logo). We use Linksys in our lab with great success.
     nc256: Are there any digital cameras that can send directly to an HP wireless printer for photo printing?
     DavidH-HP: Many printers support a feature called Pictbridge. If the camera and printer both supports this feature, the camera can be plugged directly into the printer to print photos. Or are you asking about printing over a network connection?
     KevinW: I keep hearing that you shouldn’t use default settings for a network. Why?
     CraigB--HP: There are three reasons not use default settings: First, wireless-routers do not have any wireless security enabled by default. Second, you will be using a common network name in which case you may connect accidentally to your neighbor’s network. Third, your wireless-router is accessible by inadvertent guests who may change the configuration of your wireless-router without your knowledge or use your internet connection without your permission.
    Bodie08: I have an HP Lan attached printer and Windows XP on my home network. Is there a known setting (Firewall/port/other) or patch to address the issue of hpqtra08.exe hanging on Windows XP Shutdown? A number of us in the forum have identified this issue. Thanks!
    DavidH-HP: This problem has been seen in the past but there were attempts to address it. Have you checked to see if there is a later release of software available on the web? (hp.com)
    ZhuLee3: How old is wireless printing technology? I noticed all the experts have around 20 years of experience with it, was there wireless 20 years ago?
    JimB-HP: Wireless printing first appeared with the introduction of the 802.11 standard in late 1990's. HP has been making wireless printers since 2003.
    lpeterson123: What makes wireless so flaky at times?
    CameronL-HP: There are lots of reasons. Wireless signals are affected by distance, walls, metal objects, and other wireless devices like cordless phones. However, most of the problems seem to be from how the network or how security software is configured, and these can also cause things to fail only occasionally or in certain situations. Having a good wireless connection between a PC and printer involves several hardware devices and lots of software made by different companies that all have to work together; if something is not quite right in any of these things then the whole solution looks flaky.
    Bowman16: I use a Mac, are there any features that would not work if I was to set it up for wireless use
    DavidH-HP: All the features will work on a Mac if you install the full HP software solution.
    jest1: Thanks for the answer on the router question. The next question, then, is to ask what would be a recommended consumer-grade wireless-enabled printer (or series) just so I can start my research.
    JimB-HP: Any of our Photosmart or Officejet wireless printers will work with Wi-Fi certified wireless-routers. Our price points really have more to do with how much printing you do. In general, our more expensive printers cost less per page than our less expensive models.
    Bodie08: Why would I choose "spooling" on my PC over "direct connect”?
    CraigB--HP: In general, spooling allows you to use your program sooner than printing directly.
    ZhuLee3: Jim: What is it like to be an "HP Printing Expert"? What kind of stuff do you get to work on, on a day to day basis?
    JimB-HP: I really like my job -- I've always been a radio enthusiast so working on 802.11 technology is really a dream job for me. I'm also fortunate to work with a great team here in Vancouver, WA. More importantly, I like designing equipment that people use in their everyday lives.
    TEACHER1: Recently I changed routers, now I am unable to print wirelessly, even though the SES and wireless network light are steady on my Deskjet 6980 printer. What is the solution? Thanks.
    DavidH-HP: The wireless light indicates that the radio is on but does not indicate that the printer is connected to the network. First check that the printer is connected to the network by printing a network configuration page from the printer.
    AgentRed: I get my internet with a Verizon wireless broadband card. Someone told me that wouldn't work with a wireless printer. Is that true?
    CameronL-HP: Our wireless printers use the 802.11 b, g or n standard which is not compatible with the wireless cellular standard. It would be like trying to connect to a wireless network using Bluetooth. They are different wireless technologies.
    DavidH-HP: Regarding the Verizon card, it is true that you cannot connect the printer over the Verizon connection, but as long as your laptop has Wife you can print to the printer over WiFi at the same time that the Verizon connection is active. This should not be a problem.
    jest1: Is there a "minimum" internet connection that is recommended for wireless printing? We live a bit far from the DSL CO so our connection is sometimes flaky. I would guess that incoming speed shouldn't affect my local wireless LAN but I want to ask it anyway
    CameronL-HP: There are 2 parts to your home network. 1 is your wireless router which manages your local network equipment, then your network connection to the world wide web which your DSL provider gives you. The connection speed of your local network is not affected by your internet connection speed.
    Bowman16: Are any HP printers 802.11n? I do not want to add an 802.11b,g to my network and cause it to slow down.
    JimB-HP: Currently, our printers comply with the 802.11g standard. We are investigation the emerging 802.11n standard.
    ZhuLee3: Will there be a transcript of all the questions and answers from this chat available for viewing after the session? I think I missed some questions at the start.
    SiobhanF-HP: The chat event begins when you joined. Sorry that you can't see what was said before you joined. I hope to have transcript posted tomorrow or on Wednesday at the latest.
    nc256: Where is the future of printers headed? Does HP have any interesting plans with printing technology? And what’s your opinion on whether or not color laser printing will ever approachthe photo realism of ink jet color?
    JimB-HP: The future of HP printing will be characterized by wireless connectivity to not only computers but to mobile internet devices. In fact, as mobile devices become smaller (think phone or netbooks), the need to print from your mobile device might become more relevant.
    jest1: Am I able to print from my iphone to a wireless printer?
    CraigB--HP: You can print photos from your iPhone to HP wireless printers and it works great in my experience. Go to http://www.hp.com/go/iprintphoto to get the details.
    TEACHER1: Thank you. I printed a page. It shows that wireless is disconnected.
    DavidH-HP: Then you just need to input the wireless settings from your new router into the printer. If your printer does not let you input the settings from the front panel, you can use the CD that came with the printer or downloaded from hp.com to configure the printer again ( look for the option to "add a device" ).
    ZhuLee3: Question about security... if I get a wireless printer, what’s to prevent other people within range of my printer, from adding it and printing documents? How is this configured on the actual printer?
    JimB-HP: The simplest way to secure your printer is to enable WPA-PSK security for your wireless network and to use a security pass-phrase that is at least 12 characters long. This configuration is very safe from intruders for the foreseeable future.
    CameronL-HP: It' is also a good idea to use a unique network name, also called an SSID.
    carolj: I have a photosmart C7180 and I have it hooked up to my laptop (windows vista) when the setup completed the printer was put in networking instead of printers and I cannot access it or move it out of there. What do you suggest?
    CraigB--HP: You might need to uninstall and reinstall. Before doing this, make sure your get the latest driver from the HP support at: http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?product=1153754&lc=en&cc=us&dlc=en&lang=en&cc=us This is also where you can get a copy of the instruction book.
    wizll: Hi, I haven't done much research in wireless printing, but I'm interested as I currently have my printer set up the old fashioned way where it's connected to a networked PC, but if the PC is off I can no longer print, which is obviously inconvenient. Do hp wireless printers have a web gui you can connect to once it's on the home network, or is it simply all done from the printer's interface. I've seen some old wired network printers that only use the printer's ui and that seems like a clunky use.
    DavidH-HP: Yes, the HP printers which have networking built-in have what we call an "embedded" web server which allow you to configure settings, check status, and have many other features; on some models you can even scan using the embedded web server.
    nc256: Jim: Will color laser printing ever reach ink jet quality for photos?
    JimB-HP: While never is a long time, inkjet printers will, for the near future, output higher quality photos.
    katiepage: If I'm at home, connected to my office network via VPN, can I access my office networked printers?
    CraigB--HP: Yes, when you are connected to the office VPN, you can print to your office printers. However, you will not be able to print to your home networked printers while you are connected to the VPN.
    jest1: If a friend comes over to my house with their laptop and needs to print something, are they able to do this just by authenticating with my wireless LAN (assuming I have a wireless printer set up)?
    CraigB--HP: In addition to authenticating to your network, you friend will also need to install the printer driver for your printer.
    jpszambelan: Is there a wireless USB device of some kind I can connect to my printer if there is no network connection already built in?
    JimB-HP: HP sells an accessory that adds Wi-Fi capability to your USB printer (see http://www.shopping.hp.com/product/printer/inkjet/wireless/4/accessories/Q6236A%2523A2L) Also, many higher-end wireless-routers allows USB printers to be connected to them to allow sharing of the printer from the network. Note that this solution often limits you to just printing and not scanning from the network.
    rockwoodchev: It seems that my computer can find my printer, but my printer can't find the computer, so that "Scan to computer" won't work. What do I need to do in order to fix that?
    DavidH-HP: This can be blocked by security software running on the PC (such as a personal firewall). Make sure that your firewall is configured to allow communication on your local network. You can also unblock specific ports, but the easiest way is often just to allow communication on the local home network. The specific setting varies from firewall to firewall.
    SiobhanF-HP: We are nearing the end of our chat session. We only have time for 3 more questions. If we did not get to your question, please post it on the Networking and Wireless board in the Printers and All-in-Ones forum. http://h30434.www3.hp.com/psg/board?board.id=Networking
    SSPatrick: Is it possible to print wirelessly to the same HP printer using both a PC and a Mac?
    JimB-HP: Yes -- I do this in my home. I have both Macs and PCs on my network without any trouble.
    Bowman16: Any plans to do this again?
    SiobhanF-HP: Yes we are.
    ZhuLee3: Do all of the experts hang out on the HP community? Will we see you posting there after this?
    DavidH-HP: Oh yes, whenever time permits. In addition to trying to help people, I learn things too.
    JimB-HP: I'm known as Wi-Fi-Guy on the support forums. I hang out there often helping where I can. It helps me be a better designer.
    CraigB--HP: I monitor the forums looking for problems to take back to the development lab for investigation. To date, I have only posted one reply.
    CameronL-HP: I haven't been involved in the past but expect to be more involved in the future.
    SiobhanF-HP: We only have time for one more question. If we did not get to your question, please post it on the Networking and Wireless board in the Printers and All-in-Ones forum. http://h30434.www3.hp.com/psg/board?board.id=Networking
    ZhuLee3: Thanks for setting this up!
    SiobhanF-HP: The transcript will be posted on http://h30434.www3.hp.com/psg/board?board.id=Networking
    TEACHER1: Thank you all for conducting this session !!!!
    jest1: Is there an OS limitation to print wirelessly?
    JimB-HP: All the OS versions supported by the printer as supported wirelessly. In general, we are compatible with Macs, Windows and Linux.
    SiobhanF-HP: We are ending the chat event. Thank you for coming. We hope you found it worthwhile. I will be posting a transcript of the event in the Networking and Wireless board in the Printers and All-in-Ones forum. We will be hosting future Meet the Experts chat sessions on a variety of topics, so please tell us what you thought of the event and how it could be improved. http://h30434.www3.hp.com/psg/board/message?board.id=Feedback&thread.id=525
    Live Forum Closed
    Message Edited by timhsu on 03-18-2009 05:39 PM
    Message Edited by timhsu on 03-18-2009 05:43 PM
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    I expected this to be released quite earlier. But now that it's in process, I'll wait patiently.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.

  • Iphotos Package Contents: What are all these folders for? Is it too large to back up in the cloud?

    Dear experts,  I am quite a newbie when it comes to understanding the Mac filing system, as I originally came from the PC world.  There's lots of things I dont understand in the iMac file viewer and how to organise and backup my photos is an important issue for me.
    I know that if I want to look at the original photo files on my iMac, I can right-click on users/myname/pictures and select "Show Package Contents".
    Question 1 - What are all these folders for?
    Please can someone explain what is the difference between all the folders I see?  Some of them seem to be exact duplicates of the others e.g. Masters, Modified and Originals all seem to have the same content.  So here is a list of folders that I see.  What is in them?, or what is their purpose?
    Data
    Data.noindex
    Modified
    Originals
    Apple TV Photo Cache
    Attachments
    Auto Import
    Backup
    Caches
    Contents
    Database
    iLifeShared
    iPod Photo Cache
    Masters
    Previews
    ProjectCache
    Thumbnails
    Question 2 - Which photo folder should I back-up?
    If I want to keep a physical backup of my photos, which of the above folders should I copy to an external hard drive?  (I use Get Backup to automatically  copy all important new or changed files to an external drive)
    Question 3 - Using the cloud: What is the best way to backup my large photo library in the cloud safely? 
    I would like to have some kind of safe backup in the cloud for my photos.  However the size of the iphoto library is huge at 165GB.  Even the Masters folder is huge.  It is 130GB.  Is it possible to back up files of this size in the cloud?  I have a couple of services called photo streaming and Dropbox, but they don't seem to be able to handle this kind of size.  Photo streaming only works with 1000 photos (as far as I can tell), and my Dropbox probably has a limit too.  I guess it's about 5GB.  I am already using about 3GB of my Dropbox space for other files.  I would consider both paid and free solutions.
    Many thanks to all the experts for your help!

    know that if I want to look at the original photo files on my iMac, I can right-click on users/myname/pictures and select "Show Package Contents".
    Don't do that. That's like opening the hood of your car and trying to figure out what all the different bits and peices are and which you can yank out and dispose of. Simply, there are no user-serviceable parts in here.
    So, your Question 2:
    You back up the iPhoto Library as a single unit.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store
    Your question 3:
    There is no good back up to the Cloud. There are a couple of reasons for this. One is that the datasets are so large and the cloud services shapre their download speeds. This means restoring can take days to complete. Then, and this is the big problem, the iPhoto Library needs to sit on a disk formatted Mac OS Extended (Journaled). Bluntly, no servers online are formatted appropriately, and if the Library is written to - by an incremental back up, for instance - there is a very high likelihood that the library will be corrupted.
    Your Question 1:
    The Library you're describing there sounds like one that has been updated a few times. Not everything you list there is a folder. Some will be aliases.
    The Data folders hold thumbnails.
    The Masters and Originals folders hold the files as imported from the camera
    The Previews hold the versions of the edited photos that are accessed via the Sharing mechanism.
    I think if you look losely that you'll notice that one of the Data folders and one of either the Masters or the Originals folders is actually an alias.
    Everything else is a database or cache file of some form. All are required for iPhoto to work.
    As an FYI:
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491

Maybe you are looking for

  • WLC-2106 and multiple interfaces on the same network

    Hi there, I recently created a TAC request to the Cisco support regarding our WLC-2106, but they could not help me. Basically I just learned that you can create new interfaces for the wireless LAN controller and then dedicate them to a given wireless

  • Most efficient way to place images

    I am composing a Catalog with a lot of images along with the text.  The source images are often not square (perfectly vertical, portrait).  I also want to add a thin line frame around each one in InDesign to spurce up the look.  I'm spending a lot of

  • I cannot use China Telecom CDMA SIM card to my IPAD mini

    I bought IPAD mini in Hongkong Apple store by website with name carving. The model number is MD544ZP/A.    It was can use China Unicom 3G(WCDMA). Now, I want to change China Telecom (CDMA 1x/EVDO). But, It is not work. My friend  is uisng same HK ver

  • Help in select statement

    CREATE TABLE test entrynum NUMBER (19), datefield TIMESTAMP (3), type NUMBER (2), invno varchar2(100), entrytype number, amount NUMBER (30, 4), appliedentryno VARCHAR2 (4000 BYTE) Insert into test (entrynum, amount, type, invno, entrytype, datefield,

  • Runtime Error TSV_TNEW_PAGE_ALLOC_FAILED

    Hello friends, One of our Z-transactions (run in background) terminates with the runtime error TSV_TNEW_PAGE_ALLOC_FAILED. It runs successfully in another system. Of course memory settings are different in these systems so are the resources. I see in