Question Experts..

Question Experts!!
Im using abap query. and im joining 5 tables namely LFA1 , ADR2 , ADR3 AND ADR6. my link is like this:
lfb1-lifnr <----
lfa1-lifnr
lfa1-adrnr <------ adr2-addrnumber
lfa1-adrnr <------ adr3-addrnumber
lfa1-adrnr <------adr6-addrnumber
problem is when I display my data in queries(sq01)
the data repeatedly displaying 4 times...
I dont know how to fix it.Please help.
Points will be rewarded..

Hi,
           I am just giving u an idea, coz i dont know which data ur exactly considering.
step1.)
data: begin of i_lfa1 occurs 0.
        include structure reguh.
data: <fields u wan to include frm adr2> like adr2-<fields>,
        <fields u wan to include frm adr3> like adr3-<fields>,
        <fields u wan to include frm adr4> like adr4-<fields>.
data:end of i_lfa1.
step2.)
create seperate tables for adr2,3 & 4.i.e i_adr2,i_adr3,i_adr4.
step3.)
select data into these tables.
step4.)
loop or read  these tables & equate data to fields of i_lfa1.
step5.)
now u have all data in 2 internal tables i_lfa1 & i_lfb1.

Similar Messages

  • Could you please answer this questions. experts

    what is the use of cell editor?
    what are the sequence of operations carried out when transpoting object?
    why we use navigational attributes ?please elaborate

    hi..
    navigational attrib:
    From a system performance point of view, you should model an object on a characteristic rather than on a navigation attribute. The reasons for this are as follows:
    ·        In the enhanced star schema of an InfoCube, navigation attributes lie one join further out than characteristics. This means that a query with a navigation attribute has to run an additional join (compared with a query with the same object as a characteristic) in order to arrive at the values. This is also true for ODS objects.
    ·        For the same reason, in some situations, restrictions for particular values in the navigation attribute (values that have been defined in the query) are not taken into account by the database optimizer when run schedules are created. This can result in inefficient run schedules, particularly if the restrictions are very selective. In most cases, you can solve this problem by indexing the navigation attribute in the corresponding master data tables (see below.)
    ·        If a navigation attribute is used in an aggregate, this aggregate has to be adjusted using a change run as soon as new values are loaded for the navigation attribute (when master data for the characteristic belonging to the navigation attribute is loaded.) This change run is usually one of the processes that are critical to the system performance of a production BW system. This is why, by avoiding using navigation attributes or not using navigation attributes in aggregates, you can improve the performance of this process. On the other hand, not using navigation attributes in aggregates can lead to poor query response times. The data modeler needs to find the right balance.
    BEx Cell Editor: In queries with two structures, you can now reference cells at the intersections of rows and columns.
    chk this link for transportation:
    http://help.sap.com/saphelp_nw04/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/content.htm
    hope it helps..
    all the best...

  • Listing exclustion communiation struture question - experts ?

    Dear friends
    1) what is the difference between pricing communication sturcture and listing/exclusion structure ?
    In Access seuwnce screen -
    for pricing -document structure : KOMK and KOMP for header and item -
    for  listing/exclusion - document structure : KOMKG and KOMPG for header and item -
    why is that what is the reason?

    Hi,
    The listing/exclusion also uses the condition technique but the fields used in the Pricing may not be used in the listing/exclusion. Very few fields are used in the listing as the requerment for the listing/exclusion is simple compared to the pricing. The pricing structure KOMK/KOMP is used across the modules like MM/FI etc but the Listing/Exclusions are only used in SD.
    Regards,
    Murali

  • How can i closed production verion wise in c223

    Welcome, ANILKUMAR BEHERA   
    Your Control Panel 
    Your Reward Points 
    Your Questions 
    Expert Forums » ABAP Development » ABAP Objects
    Thread: how can i get production version value(verid) for luck through bdc.
    Your question is not answered.
    Mark as answered.
      You are watching this thread. To stop watching this thread, click "Stop Watching Thread" below. (Watch Options)
    This watch sends emails by default. If you don't want to receive emails on changes in this thread, go to the watch options, un-mark the "Email" checkbox next to the thread's entry and click "Update". 
    Reply to this Thread   Search Forum    Stop Watching Thread    Back to Thread List 
      Replies: 0 - Pages: 1  Threads: Previous  
    ANILKUMAR BEHERA  
    Posts: 20
    Registered: 10/13/07
    Forum Points: 0 
       how can i get production version value(verid) for luck through bdc.  
    Posted: Feb 14, 2008 1:32 PM     Edit      E-mail this message      Reply 
    HI..
    i have one requirement..that in c223 tcode while i luck the production version through BDC in my report program as i given bellow...i upload mat.no , plant, production version and 1(for luck)...
    req:: i want while i given production version for particlular plant and material no...that production version should be luck....
    so in standard tcode c223 how can i get value to compair it with my input production version value then i will close that...
    program:::
    report ZC2232
    no standard page heading line-size 255.
    *include bdcrecx1.
    Tables : mkal.
    data : nodata value '/' .
    data : CTUMODE type c value 'E'.
    DATA : CUPDATE TYPE C VALUE 'L'.
    DATA: BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    messages of call transaction
    DATA: MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    data: begin of HEADER OCCURS 0,
    data element: MATNR
    MATNR_001(018),
    data element: WERKS_D
    WERKS_002(004),
    data element: PLNNR
    PLNNR_003(008),
    data element: CP_STTAG
    STTAG_003(010),
    data element: ENTRY_ACT
    ENTRY_ACT_005(011),
    data element: PLNAL
    PLNAL_004(001),
    data element: FLG_SEL
    FLG_SEL_01_006(001),
    data element: PLANTEXT
    STLAL_004(002),
    DATUV_005(010),
    WERKS_008(004),
    data element: PLN_VERWE
    ktext_005(001),
    data element: PLNST
    DELKZ_005(001),
    data element: LOSGRVON
    LOSVN_011(017),
    data element: LOSGRBIS
    LOSBS_012(017),
    data element: PLNME
    PLNME_013(003),
    data element: PLNME
    stlal_014(002),
    end of HEADER.
    data : begin of it_header occurs 0,
    matnr like marc-matnr,
    werks like marc-matnr,
    verid like mkal-verid,
    mksp like mkal-mksp,
    end of it_header.
    data : exnum(40) type c,
    exnum1(40) type c,
    cnt type I,
    CN(2) TYPE C,
    c1 type c value '(',
    c2 type c value ')'.
    start-of-selection.
    parameters: p_file like rlgrap-filename.
    at selection-screen on value-request for p_file.
    call function 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = SYST-CPROG
    DYNPRO_NUMBER = SYST-DYNNR
    FIELD_NAME = ' '
    importing
    file_name = p_file.
    start-of-selection.
    call function 'WS_UPLOAD'
    exporting
    CODEPAGE = ' '
    filename = p_file
    filetype = 'DAT'
    HEADLEN = ' '
    LINE_EXIT = ' '
    TRUNCLEN = ' '
    USER_FORM = ' '
    USER_PROG = ' '
    DAT_D_FORMAT = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = it_header
    EXCEPTIONS
    CONVERSION_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_READ_ERROR = 3
    INVALID_TYPE = 4
    NO_BATCH = 5
    UNKNOWN_ERROR = 6
    INVALID_TABLE_WIDTH = 7
    GUI_REFUSE_FILETRANSFER = 8
    CUSTOMER_ERROR = 9
    NO_AUTHORITY = 10
    OTHERS = 11
    if sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    DELETE it_header WHERE MATNR IS INITIAL.
    LOOP AT it_header.
    *start-of-selection.
    *perform open_group.
    perform bdc_dynpro using 'SAPLCMFV' '1000'.
    perform bdc_field using 'BDC_OKCODE'
    '=ENTE'.
    perform bdc_field using 'BDC_CURSOR'
    'MKAL-WERKS'.
    perform bdc_field using 'MKAL-WERKS'
    it_header-werks.
    perform bdc_field using 'MKAL-MATNR'
    it_header-matnr.
    perform bdc_dynpro using 'SAPLCMFV' '1000'.
    perform bdc_field using 'BDC_OKCODE'
    '=PICK'.
    perform bdc_field using 'MKAL-WERKS'
    it_header-werks.
    perform bdc_field using 'MKAL-MATNR'
    it_header-matnr.
    *>>>>>>>>>>>>>>>>>>>>here what logic can i write****
    clear cnt.
    do 15 times.
    cnt = cnt + 1 .
    CN = CNT.
    exnum = 'MKAL_EXPAND-VERID'.
    concatenate exnum c1 cn c2 into exnum1.
    *perform bdc_field using 'BDC_CURSOR'
    exnum1.
    GET PARAMETER ID 'VER' FIELD EXNUM1.
    CALL TRANSACTION 'C223' AND SKIP FIRST SCREEN.
    if ( it_header-verid = EXNUM1 ).
    exit.
    endif.
    enddo.
    ****************************************************end***>>>>>>>>
    perform bdc_field using 'BDC_CURSOR'
    exnum1.
    perform bdc_dynpro using 'SAPLCMFV' '2000'.
    perform bdc_field using 'BDC_CURSOR'
    'MKAL_EXPAND-PLNTY'.
    perform bdc_field using 'BDC_OKCODE'
    '=PRFG'.
    perform bdc_dynpro using 'SAPMSSY0' '0120'.
    perform bdc_field using 'BDC_OKCODE'
    '=RW'.
    perform bdc_dynpro using 'SAPLCMFV' '2000'.
    perform bdc_field using 'BDC_OKCODE'
    '/ECANC'.
    perform bdc_field using 'BDC_CURSOR'
    'MKAL_EXPAND-VERID'.
    perform bdc_dynpro using 'SAPLCMFV' '1000'.
    perform bdc_field using 'BDC_OKCODE'
    '=SAVE'.
    perform bdc_field using 'BDC_CURSOR'
    'MKAL-WERKS'.
    perform bdc_field using 'MKAL-WERKS'
    it_header-werks.
    perform bdc_field using 'MKAL-MATNR'
    it_header-matnr.
    perform bdc_dynpro using 'SAPLCMFV' '1000'.
    perform bdc_field using 'BDC_OKCODE'
    '/EBACK'.
    perform bdc_transaction using 'C223'.
    endloop.
    *perform close_group.
    *& Form bdc_dynpro
    text
    -->P_0161 text
    -->P_0162 text
    form bdc_dynpro USING PROGRAM DYNPRO.
    CLEAR BDCDATA.
    BDCDATA-PROGRAM = PROGRAM.
    BDCDATA-DYNPRO = DYNPRO.
    BDCDATA-DYNBEGIN = 'X'.
    APPEND BDCDATA.
    endform. " bdc_dynpro
    *& Form bdc_transaction
    text
    -->P_0351 text
    form bdc_transaction USING TCODE.
    call transaction 'C223' using bdcdata
    mode CTUMODE
    update CUPDATE
    messages into messtab.
    if sy-subrc 0.
    message e000(zmm01) with
    'Check your input data'.
    endif.
    endform. " bdc_transaction
    *& Form bdc_field
    text
    -->P_0346 text
    -->P_0347 text
    form bdc_field USING FNAM FVAL.
    if fval nodata.
    CLEAR BDCDATA.
    BDCDATA-FNAM = FNAM.
    BDCDATA-FVAL = FVAL.
    APPEND BDCDATA.
    endif.
    endform. " bdc_field
    Pages: 1    Back to Thread List 
    Threads: Previous  
      New content since your last visit 
      Updated content since your last visit

    macbook pro, 500gb ,version 10.9.5 ,
    all files in open in Quiketime media player  how can i closed..whenever i open quicktime all files are open..i have tried to closed by force quit..but whenever i again open quicktime files are still open..
    You have basically formed a "poor" habit—i.e., closing apps and assuming they will close any/all open activity windows. The latest versions of Mac OS X now, by default, "remembers" what windows are open when an app is closed. You have three options here:
    1) Get in the habit of closing active windows before closing an app to prevent them from re-opening automatically the next time the app is opened.
    2) Hold down the "Option" key when selecting the "Quit" menu option (keyboard shortcut "Option-Command-Q") with system preference option in the default mode.
    3) Change the default system preference to automatically close active windows in the same manner that older Mac OS X versions did by checking the "Close windows when quitting an app" in the Syeyem Preferences "General" menu.
    NOTE: This setting works as a "software switch" for your application's "Quit" menu option. I.e., in the "Unchecked" mode the Option-Quit menu option and keyboard shortcut (Option-Command-Q) tells the system to forget active windows when the app is next opened while the "Checked" option mode tells the system to remember the active windows when using the Option-Quit menu or keyboard shortcut options.
    Your choice for settings and/or method of closing apps.

  • ALV edit (qty field is not convertable)

    in my ALV program i have used one field MENGE (13,3) (QTY field) in the out put it is showing as 1.000,
    when user going to enter a value (5) it is showing as 0.005 but user need it as 5.000.
    please solve this question experts.....
    Regards
    Prasad.EV

    hi venkatesh,
    MENGE is QTY field,
    instead of that u can give F (float) field then user can enter 5 it will be display 5.000.... that is best way to use it..
    points please.. (if u have satisfied.)
    Prasad.
    Edited by: EV prasad on Jun 6, 2008 10:10 AM

  • Future of Oracle DBA

    Hello Experts
    I am seeking for your guidance regarding to future of the Oracle DBA(Core).
    I have following questions:
    1. What areas in Oracle we need to strong(e.g RAC, dataguard,...etc.)
    2. How much OS level skills are required (e.g. basic, middle, experts...etc)
    3. What will be the effect of SUN and Oracle Deal on DBA's life
    4. What are the extra skills needed except Oracle Database
    5. Who is better APPS DBA or Core DBA
    Thanks & Regards
    Sunil Kumar

    user637769 wrote:
    Hello Experts
    I am seeking for your guidance regarding to future of the Oracle DBA(Core).
    I have following questions:Expert or not, opinions are like belly-buttons - eveybody has one. Here's mine (opinion, that is ...) ;-)
    >
    1. What areas in Oracle we need to strong(e.g RAC, dataguard,...etc.)Yes.
    2. How much OS level skills are required (e.g. basic, middle, experts...etc)Middle, but see my response to #4
    3. What will be the effect of SUN and Oracle Deal on DBA's life. I wouldn't expect much if any. Oracle RDBMS is still the company's flagship product. That won't change. It has certainly had no effect on this dba's life! My alarm clock still goes off too early. I still get home too late. I still don't spend enough time with my family or practicing my trumpet or paddling a canoe.
    4. What are the extra skills needed except Oracle DatabaseSome OS, some networking, some programming in the language de juor. In my opinion no education or knowledge is ever wasted. And as a DBA you are at the juncture of OS/network/programming/system design. And everyone else always believes every problem they have is the dba's responsibility because "it has to be the database!". Network people never believe they have mis-configured a switch or router, or that they have failing hardware. OS people never believe they did any damage be deleting log files (as in .. redo01a.log). Programmers never believe bad data could enter the system, so never code to trap it. They never believe that the way they code SQL could have a detrimental impact on performance or scalability. Designers never believe the database and rdbms is anything more than a data dump.
    So it always falls to the DBA to do other people's troubleshooting for them.
    5. Who is better APPS DBA or Core DBA Define "better".
    Define "APPS DBA"
    Define "Core DBA"
    >
    Thanks & Regards
    Sunil Kumar

  • Any changes (SAP HR  upgradation from 4.7 to ECC 6.0)

    Hi
    could some one tell the major changes  while upgrading from SAP HR  4.7 to ECC 6.0, like
    1. changes in reporting
    2. data structures
    3. user exits
    4. infotypes.
    Many thanks
    Chinni

    I have questions experts:
    1. In case of upgrade / implementation of ECC6 what are the important consideration from testing point of view for all SAP HR Modules
    2. MSS and ESS is implemented for Performance Appraisal. One role and 3000 to 4000 users (Managers) and employee portion of Performance appraisals is in ITS as a URL service to the BSP page. This will be migrated to WebDynpro from ITS , could you please let us know what are the important functional parameters we should consider for the above activity
    I could not get apt information after searching the link
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Please help me out in getting the solution

  • Linux Installation

    I have RedHat Linus Fedora Core 4. I 'm trying to install Oracle 9i. I downloaded the 3 files from the site. I did gunzip and cpio them. now they are in 3 directories DISK1, DISK2 and DISK3.
    From the File Browser, when i click on the file runinstaller, it does run and neither gives me an error. what do I need to do?
    Iam new to Linus world.
    Tarek

    You have many valid points. Please do not mis-interpret my intention. I use Oracle on the free versions as well. And I respect your views - which, in many ways seem to match mine. And I find your web pages very, very good.
    I am also one using the 'public beta' versions. I have a mix of SuSE (Pro 9, 10) and SLES, RHEL and Fedora on my systems. My company is standardized on SuSE 10 for the workstation, and both SLES9 and RHES3 for paid-support servers. And I enjoy looking at, and using Fedora.
    My difficulty comes from people who believe that they should be using Fedora in production because that is the one they learned. It happens frequently enough to have become quite a frustration for me.
    I do have a concern (about maturity) when the roadmap for the production releases of these is 6 to 9 months - Fedora http://fedora.redhat.com/About/schedule/ and OpenSuSE http://en.opensuse.org/Roadmap
    and when, from http://www.redhat.com/en_us/USA/fedora/ there is the statement "A proving ground for new technology that may eventually make its way into Red Hat products." (I make my public beta conclusion from that 'proving ground' statement.)
    The cycle for the 'enterprise' versions (and their clones) is targetted at 18 months - 2 to 3 times that of the free versions. Is it not possible the lack of Google hits is related to more stability - because much of the information and many of the problems have been identified in the 'proving ground'?
    I just believe it up to the experts, like yourself and perhaps (questioning expert status) me, to ensure that people understand that there is a life cycle to these faster-cycling versions. Accepting those faster-cycle versions means taking some responsibility to keep up as well. For example - once Fedora 5 is out (in a week), it is time to move forward. If, after they understand the situation and the implications for themselves, the chose to go Fedora or OpenSuSE - great. I will , and do, support them (at least for reasonably current versions).

  • Control-M scheduling using SAP BO Enterprise SDK

    How can we use SAP BO Enterprise SDK to implement Control-M Scheduling..?
    Any links to the documentation would be great.
    Thanks

    Check our Developer Library for documentation and samples
    http://www.sdn.sap.com/irj/boc/sdklibrary
    I've also moved your post to the appropriate forum. If you have any specific questions, experts in these forums will be able to help.

  • Questions about your new HP Products? HP Expert Day: January 14th, 2015

    Thank you for coming to Expert Day! The event has now concluded.
    To find out about future events, please visit this page.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
     We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
     If you still have questions to ask, feel free to post them on the Forum – we always have experts online to help you out.
    So, what is HP Expert Day?
    Expert Day is an online event when HP employees join our Support Forums to answer questions about your HP products. And it’s FREE.
    Ok, how do I get started?
    It’s easy. Come out to the HP Support Forums, post your question, and wait for a response! We’ll have experts online covering our Notebook boards, Desktop boards, Tablet boards, and Printer and all-in-one boards.
    We’ll also be covering the commercial products on the HP Enterprise Business Community. We’ll have experts online covering select boards on the Printing and Digital Imaging and Desktops and Workstations categories.
    What if I need more information?
    For more information and a complete schedule of previous events, check out this post on the forums.
    Is Expert Day an English-only event?
    No. This time we’ll have experts and volunteers online across the globe, answering questions on the English, Simplified Chinese, and Korean forums. Here’s the information:
    Enterprise Business Forum: January 14th 7:00am to 12:00pm and 6:00pm to 11:00pm Pacific Time
    Korean Forum: January 15th 10am to 6pm Korea Time
    Simplified Chinese Forum: January 15th 10am to 6pm China Time
    Looking forward to seeing you on January 14th!
    I am an HP employee.

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

  • Got Mac/Apple Questions? We've Got Experts! HP Expert Day – Nov 6, '13

    Thank you for coming to Expert Day – the event has now concluded.
    **To find out about future HP Expert Day events, check out this page**
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
    We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
    If you still have questions to ask, feel free to post them on the Forum – we always have Experts on the HP Support Forum to help you out.
    On November 6, 2013, the Consumer Support Forum will host an Expert Day dedicated to answering your questions about Mac OS X, iOS and AirPrint™ for HP products and peripherals. With the introduction of Apple’s new OS X Mavericks, we’re ready to help with set-up, installation and general HP compatibility questions all day long.
    Join Mac experts on the forum between 8:00am and 6:00pm Pacific Time to learn all about Mac compatibility with HP printing and peripheral solutions.  No question is off-limits and the event is free for both in-and out-of warranty products.
    How to Participate
    To participate in Mac Expert Day, simply log into the Consumer Support forum and head to the Mac Printing & Scanning Board to post a question. Select the “Email me when someone replies” option to receive a notification when and Expert addresses your question. 
    If you are not already a forum member, simply click “Register Now” on the forum home page (www.hp.com/supportforum) and follow the quick registration process.
    Remember to say "Thanks" by clicking the Kudos Star in the post that helped you.  You can also mark the post that solves your problem as "Accepted Solution."
    For more information regarding HP peripherals for Apple products visit www.hp.com/go/mac.
    Looking forward to seeing you on November 6th!
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

    I had this exact same issue on a Spectre XT Pro Ultrabook. 
    The original SSD failed and I was sent a replacement, was fortunate enough to be able to create a Recovery USB stick using the wizard in Windows. When booting from USB I received the message "You are not able to restore this system with the media".
    SOLUTION: You must NOT use the Recovery USB stick in any USB3.0 port (labelled SS). Using another USB port prevented this exact error message from appearing and I was able to complete the system restore process.
    I hope this helps someone, I signed up and posted here especially for this reason!

  • HP Expert Day - January 15-16, 2014: Got questions? Ask the Experts!

    Thank you for coming to Expert Day – the event has now concluded.
    **To find out about future HP Expert Day events, check out this page**
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
    We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
    If you still have questions to ask, feel free to post them on the Forum – we always have Experts on the HP Support Forum to help you out.
    Do you have questions using or setting up your HP notebook, tablet, desktop PC, printer, or all-in-one?
    Well we’ve got answers.
    Experts will be on the notebook, desktop, tablet, and printer and all in ones boards ready to answer your questions from Wednesday, January 15th 7:00am to Thursday, January 16th 7:00am Pacific Time.
    How the day works:
    Come to the Forums and ask your tough technical or pre-purchase questions. More than 250 experts will be on the Forums and will do their best to help you out. An online conversation will be born!
    Why should you come to the Forums?
    Whether you own a Slate7 Extreme tablet, HP Spectre laptop, an HP home desktop computer, a Split x2 hybrid, an Envy all-in-one printer, or an HP Chromebook, there has never been a better chance to learn about your product.
    When do you have a chance to talk directly with the people who designed the product or wrote the manual for it?
    This will be your opportunity to connect with the best and brightest minds at HP for free.
    We’ll share our knowledge on the best ways to:
    Tweak your product to increase performance;
    Set up a Wireless network;
    Troubleshoot the issue you are having;
    Use the tools built into your product that can make it run better and fix common problems;
    Get the most out of Win8 – learn tips and tricks;
    Ensure you have the correct print driver;
    Choose the right power supply, upgrade your video card, or add the right amount of memory;
    Get productive with your new HP android tablet or other device;
    Safeguard your PC from viruses and spyware;
    Get your HP all-in-one printer working with your Apple computer, iPhone, or iPad;
    Upgrade to Windows 8.1 or Mavericks MacOS;
    And it’s FREE.
    It doesn’t matter how old the product is or what it is connected to. We will do our best to help.
    In addition to the Consumer Forum, Expert Day will also be occurring here:
    Enterprise Business Forum (January 15th from 7:00am to January 16th      7:00am Pacific Time)
    Korean Forum (January 16th - 10am to 6pm Korea Time)
    Simplified Chinese (January 16th - 10am to 6pm China Time)
    Looking forward to seeing you on January 15th!
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

  • HP Expert Day – Got Questions? We have answers! Sept 20-21, '12.

    Check out the Expert Day event on the HP Support Forums!
    On September 20-21, HP Experts will be on the forums to help real time with any questions you have about your HP product. Do you have questions about Mac OS X, iOS and AirPrint™ for HP products and peripherals? With the introduction of Apple’s new OS X Mountain Lion, we’re ready to help with set-up, installation and general HP compatibility questions all day long.
    For 24 hours, HP employees and other product experts world-wide will monitor the forums answering your questions as soon as they come in.  And it's free!
    This event is available in the following languages and times:
    ·         English: 7am on Thursday, September 20th, until 7am on September 21st (Pacific Daylight Time)
    ·         Korean: Thursday, September 20th, 10am until 6pm (Korea Time)
    ·         Simplified Chinese: Thursday, September 20th, 10am until 6pm (China Time)
    For more details on this event, see:  Expert Day September 20-21 - HP Support Forum.  Expert Day will also be taking place on the Enterprise Business, Korean, and Simplified Chinese Forums.
    How often do you get to directly ask HP questions about your products, and do it for FREE?
    Hope to see you at HP Expert Day!
    I work with HP but my posts and opinions are my own.

    1. Can i have multiple condition records for a condition table?
    Yes. This is possible as we can maintain future change in price in advance.
    2. Can two condition types share a condition table?
    Yes.
    3. What happens to the value of the condition type which is marked for both the header and the item simultaneosly?
    Item level has precedence.
    4. Can an access have multiple condition tables?
    Yes.
    7. Where are the tax codes defined? and for which entity/level?
    Tax Code are defined in Transaction Code: FTXP
    8. How are tax codes assigned to a country?
    It is done in Excise Setting.
    10. Can you do picking in the order? if so how?.
    No. It is done in Delivery.
    12. Can the shipment be created automatically?
    No.
    13. What happens to the material listing/exclusion if payer is different from sold to party?
    It will be based on Sold to Party.
    15. When one picks a delivery, does it update the order item status?
    Yes.
    19. Are there any blocks possible at the schedule line level?
    Yes. Delivery Block
    22. Can one condition type have multiple access sequence?
    No. It can have only one Access Sequence. Header and Manual Condition Type do not have Access Sequence.
    Regards,
    Rajesh Banka

  • Are these things possible in PDF forms? Questions for the experts

    Hi,
    I have a project where I need to create an online application system, where the user has to fill in a form where the results have to be saved into a database.
    I wanted to create a html based form, but then someone told me PDF can also do cool things, so I’m researching that road.
    I already managed to create a simple form and submitting it to a web service (java servlet in my case) and that works pretty nicely.
    I'm new to the whole PDF form creating and I’m wondering if certain things are possible. So I’m trying the experts in this form for a yes/no answer.
    Are the following things possible with PDF forms:
    1) validation: number & date checks, eg, a number should be higher than 4, or be a valid number/date
    2) If I answer A at question 1, I should skip Question 2 and go directly to Question 3. Is it possible to hide Question 2, depending on what I answered at Question 1?
    3) Is it possible to attach files to the form, like a photo? And also upload it to the web service.
    4) After I submit the form, is it possible to lock the form so that no other changes can be made? In other words, you may only submit once.
    5) Possible to activate the print button after the form has been submitted?
    6) Can a drop-down lists be dynamic? Instead of hard coding the list, calling a web service to fill the values?
    Thanks in advance for any insight,
    Kind regards
    Ido

    Hi Paul,
    thanks for the quick answer. No my next challange is how to do things
    1) validation: number & date checks, eg, a number should be higher than 4, or be a valid number/date
    <answer> Yes
    I think this is done through the object properties
    2) If I answer A at question 1, I should skip Question 2 and go directly to Question 3. Is it possible to hide Question 2, depending on what I answered at Question 1?
    <answer> Yes
    This is done with subforms and scripting?
    3) Is it possible to attach files to the form, like a photo? And also upload it to the web service.
    <answer> PDF does support the ability to have attachments. They would be includeed as part of the PDF so you woudl have to submit the entire PDF and then extract the attachments when you get the file to the server. Note that you will require to Reader Extend the document to allow a Reader user to add the attachment. This is not a requirement if you are using Acrobat.
    Have to look into this one.
    4) After I submit the form, is it possible to lock the form so that no other changes can be made? In other words, you may only submit once.
    <answer> Yes
    Also through scripting?
    5) Possible to activate the print button after the form has been submitted?
    <answer> If you add a print button on the form then the answer is Yes. The application that houses the PDF will jhave print capabilities and that one is much more difficult to hide. You can set it up so that the form cannot be printed then return back the locked version with printing enabled but a round trip to the server is required for that.
    Print button will be fine by now, probably also done by scripting
    6) Can a drop-down lists be dynamic? Instead of hard coding the list, calling a web service to fill the values?
    <answer> Yes but the form will require LiveCycle Reader Extensions if you are using Reader. Reader Extensions is not required if you are Acrobat.
    Ahh, perhaps fixed list will be ok for version 1

  • Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.   When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and

    Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.
    When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and last name).
    I changed the computer name in Preferences/Sharing to a new name and Preferences/Accounts to just be Mike. I can right click on my account name, choose advanced, and see that everything looks right.
    However, If I do a scan of my network with my iPhone using the free version of IP Scanner, it lists my computer as First-Lasts-MacBook-Pro! And it lists the user as First-Last.
    So even though another Mac just sees my new computer name, and my home folder is Mike, somewhere in the system the original setup with my full name is still stored. And it's available on a network scan. So my full name might show up at a coffee shop.
    Can I fully change the name without doing a complete re-install of Lion and all my apps?

    One thought... you said the iPhone displayed your computer's old name? I think that you must have used the iPhone with this computer before you changed the name. So no one else's iPhone should display your full name unless that iPhone had previously connected to your Mac. For example, I did this exact same change, and I use the Keynote Remote app to connect with my MacBook Pro. It would no longer link with my MacBook Pro under the old name, and I found that I had to unlink and then create a new link under the new name. So the answer to your question is, there is nothing you need to do on the Mac, but rather the phone, and no other phone will display your full name.

Maybe you are looking for

  • Audio tracks - languages available

    Ladies and Gentlemen: I suggest that Apple shows which audio tracks (languages) are available for a movie in Apple TV - like in iTunes. When I buy a movie i would like to know if an OV version is available. It would also be nice if the movies always

  • Jdbc:odbc bridge only returning one result when a count show 148 !

    Hello, Am sure i have done something stupid, but i have an issue with jdbc:odbc .... It is a simple sceanrio that i have coded umpteen times before ... I have the following .... 1. Connection to DB2 on an IBM i5 (I apologise for not using native driv

  • LTE calls drop when iMessages come in over wifi

    Have only had Verizon since my iPhone 5 purchase (~3.5 weeks).  Get about 3 bars of LTE in the house, and have WIFI.  Tonight, I had a crazy experience of about 5 dropped calls one right after another. (With 3 bars still always visible).  I was getti

  • Regarding FAST ESP Search

    Hi, We are using FAST ESP 3.0 serach engine at times we are getting this error "Error: [3] All partitions are down". When ever this happens the serach functioanity is not throwing an error. Can anyone please let me know what can be done to availd thi

  • Hotplug usb problem

    When I boot my computer, I see a lot of script code of hotplug. It looks like the bash code  isn't executed. I want to use it for my scanner, such that non-root users can use the scanner.  I followed the wiki @ archlinux (http://wiki.archlinux.org/in