JTextPane Hyperlink Functionality Help Required

Hello there,
I am using the JTextPane in my Java Swing Application. How do I make it Handle Hypelinks. Like lets say the use enters
\\some_foldername\some_subfolder_foldername\some_file.xls or any other file type, It should Automatically, treat it as a hyperlink.
Is it Possible to have such a functionlaity
JTextPane Hyperlink Functionality
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextPane;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
public class TextSamplerDemo extends JPanel {
     public TextSamplerDemo() {
          setLayout(new BorderLayout());
          // Create a text pane.
          JTextPane textPane = new JTextPane();
          setPreferredSize(new Dimension(250, 155));
          setMinimumSize(new Dimension(10, 10));
          // Put everything together.
          add(textPane, BorderLayout.LINE_START);
     private static void createAndShowGUI() {
          JFrame frame = new JFrame("Hyperlinks in Java Editors");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.add(new TextSamplerDemo());
          frame.pack();
          frame.setVisible(true);
     public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
               public void run() {
                    UIManager.put("swing.boldMetal", Boolean.FALSE);
                    createAndShowGUI();
}Regards,
Hemanth

Try something along these line
1. get start and end off highlighted text
2. replace highlighted text with a string builder or something similar
<html><FONT COLOR=BLUE> <u> TEXT</FONT></u>
Calypso
Edited by: calypso on May 15, 2009 4:42 AM
On second thought I think you can shorten that to
<html>TEXT

Similar Messages

  • MM functional help required

    Hi Experts,                
    I have to develop a report  the description given like this:
    <b>Parts that leave BOM and have an L - Item Category               
    Any part that rolls a rev and is a material type - ROH; HALB or FERT               
    Any assembly that uses any part in item 1 or 2 with a disposition of Scrap or re-work for that part</b>
    the initial screen contains
    Plant
    Material          to     
    Disposition                Options - U; S; R; D; C; T
    Cost of Re-work               
    the output should be in the format
    Derived      Material    Matl Descrpn     Plant      Disposition     Cost/Re-wrk Cost     POs Qty     Material at Vendor     Stock     Consigned to customer     W.O. Qty     Total Cost
    the standard transactions Cs15 and QS51 need to used for the logic.
    Can anyone explain me the flow/logic?

    Hi Alekya,
    In this forum you can get small doubts cleared .
    You cannot expect someone to explain logic for the functional spec.
    (and one cannot explain also through this forum)
    Better you can discuss with your MM functional consulatnt who has given this spec and code according to the requirement.
    Hope you dont misunderstand.
    regards,
    Guru

  • Advance aggreate function: help required

    Hi All, Pls help me in solving the below requirement
    Sample Data:
    F1 F2 F3
    [email protected] A 1
    [email protected] B 1
    [email protected] A 2
    [email protected] A 1
    Unique combination of F2 & F3 to be treated as a account.
    Need to find the total accounts related to the domain along
    with Unique emailID's and the accounts related to each email.
    Required Output:
    o1 o2 o3 o4
    d1.com [email protected] 3 2
    d1.com [email protected] 3 1
    d1.com [email protected] 3 1
    o1: Domain
    o2: Unique email ID's in the Domain
    o3: Unique accounts accessible by Domain
    o4: Unique accounts accessible by Email
    I'm able to get o1, o2 & o4 with the following sql
    SELECT a.domain, a.F1, COUNT (a.rnum)
    FROM (SELECT UNIQUE ROWNUM rnum,
    SUBSTR (TRIM (F1),
    INSTR (TRIM (F1), '@') + 1
    ) AS domain,
    F1, F2, F3
    FROM tab1
    WHERE F1 LIKE '%d1.com%') a
    GROUP BY a.domain, a.F1
    Pls help me in completing this sql for the required output.
    Thanks :-)

    What version/edition of Oracle are you using? Can you use analytics?
    SELECT a.domain, a.F1, COUNT (a.rnum),
    count(a.domain) over (partition by a.domain) domain_count
    FROM (SELECT UNIQUE ROWNUM rnum,
    SUBSTR (TRIM (F1),
    INSTR (TRIM (F1), '@') + 1
    ) AS domain,
    F1, F2, F3
    FROM tab1
    WHERE F1 LIKE '%d1.com%') a
    GROUP BY a.domain, a.F1;
    DOMAIN               F1                   COUNT(A.RNUM) DOMAIN_COUNT
    d1.com               [email protected]                    2            3
    d1.com               [email protected]                    1            3
    d1.com               [email protected]                    1            3

  • Functional Help required

    Hi,
          can any one tell me the link where i can find the details of fields in the data base table?
    for example, in VBAK table whats VBELN? where it is used? in which module?
    My client just says material number, posting date, fiscal year etc...
    i need to find the table and corresponding field
    Thanks in advance,
    Niyaz

    Hi,
    Please check this link for SD tables and relationship perhaps it may help.
    http://www.erpgenie.com/abap/tables_sd.htm
    You can also go to transaction SE11 to find data type VBELN where being used in table fiels, program, function module, etc (CTRLSHIFTF3).
    Regards,
    Ferry Lianto

  • Node Function help required in XML message mapping !!

    Hi Brilliants,
    Source Message
        <ROOT>               0..1   
          <OUTPUT>          0..n
             <Group_N1>           0..n     <Header>
                <H02_N1_DTM>                           0..1
          DTM_Y2K_DATE     0..1
             <Group_LIN>          0..n                <Lin Item>
         <Group_ZA>          0..n
              <D02_ZA>     0..n
          </OUTPUT>
    </ROOT>
    The above Source <OUTPUT> tag comes 2 times. In this two time, Header comes once per header and more than 50 times Lin item occurs.
    Target Message
    ProductActivityNotification                                                            0..n
         ProductActivity                                                       1..1
              Item                                                       1..unbound  (Lin Item level on target side)
                 SalesTimeSeries                  0..1
                          Item                                           1..unbound
                        ValidityPeriod              1..1
                        StartDate              0..1
                        EndDate              0..1
    The above source message Lin item, whatever the times it replicates, the same number of times u201CItemu201D tag has to occur and DTM_Y2K_DATE value has to pass to StartDate.
    Could anybody please put your valuable idea on this? I suppose to deliver this interface tomorrow.
    I will highly appreciate your intellectual ability.
    Many Thanks in Advance
    Kind Regards
    San

    HI San,
    Based on your this post, i think u want like this way...
    How many times from source  DTM_Y2K_DATE  or <LinItem>(because DTM_Y2K_DATE   in LinItem ) occurs that many of <Item> in target is required rt??
    Then u map like,
    DTM_Y2K_DATE  (Change context to LineItem(right clich and choose context)) and map  to LineItem of target.
    and also now map directly from DTM_Y2K_DATE  to Start Date(Dont change any context now..)
    If still nt clear do post..
    Babu

  • Collection as out parameter in function - help required

    I am having a fucntion which returns 3 different values based on a given in parameter.
    Now , I want to return these three values.
    Instead of using three out parameters, how can I use a collection for returning the values.
    Please tell me the best way in returing the multiple values(more than 3)
    Thanks in advance
    Regards
    Raghu

    SQL> create type my_obj as object (no integer, name varchar2(10))
      2  /
    Type created.
    SQL> create type my_tbl as table of my_obj
      2  /
    Type created.functional approach...
    SQL> create or replace function my_fn return my_tbl
      2  as
      3     ltbl my_tbl;
      4  begin
      5     select my_obj(1,'karthick') bulk collect into ltbl from dual;
      6
      7     return ltbl;
      8  end;
      9  /
    Function created.
    SQL> select * from table(cast(my_fn() as my_tbl))
      2  /
            NO NAME
             1 karthickprocedureal approach...
    SQL> create or replace procedure my_proc(ptbl out my_tbl)
      2  as
      3  begin
      4     select my_obj(1,'karthick') bulk collect into ptbl from dual;
      5  end;
      6  /
    Procedure created.
    SQL> declare
      2     ltbl my_tbl;
      3  begin
      4     my_proc(ltbl);
      5
      6     for i in 1..ltbl.count
      7     loop
      8             dbms_output.put_line(ltbl(i).no||'      '||ltbl(i).name);
      9     end loop;
    10  end;
    11  /
    1       karthick
    PL/SQL procedure successfully completed.

  • Instr function  help required

    Hai
    if we search the particular string we can use 'INSTR' to find the position in the string by
    instr('TOM an oracle programmer','oracle')>0if i want to seach the two words like 'oracle' AND 'TOM' then how can i do it?
    or
    ((instr('TOM an oracle programmer','oracle')>0)  OR instr('TOM an oracle programmer','TOM')>0)this is the only way..?
    Pls give me ur suggestion
    S

    Beware of the differences!
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'[TOM][oracle]*');
    STR
    TOM an oracle programmer
    MOT is an cle programmer
    TOM dont know oracle!
    SQL>
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'[TOMoracle]*');
    STR
    TOM an oracle programmer
    Saubhik is an oracle programmer
    XYZ is an oracle programmer
    MOT is an cle programmer
    TOM dont know oracle!
    SQL>
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'(TOM|oracle)');
    STR
    TOM an oracle programmer
    Saubhik is an oracle programmer
    XYZ is an oracle programmer
    TOM dont know oracle!

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • When the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently.but in fact,when the app in background ,the app need data update to make the

    when the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently。but in fact,when the app in background ,the app need data update to make the function of  trajectory replay come ture。in fact, we have added function when the app  is in background mode。we have point out the point to them by email。but they still have question on the background mode,we are confused,does anyone can help me,i still don't know why do review team can't find the data update when  the app is in background and how do i modify the app,or what is the really problem they refered,do i misunderstand them?
    the blow is the content of the review team email:
    We found that your app uses a background mode but does not include functionality that requires that mode to run persistently. This behavior is not in compliance with the App Store Review Guidelines.
    We noticed your app declares support for location in the UIBackgroundModes key in your Info.plist but does not include features that require persistent location.
    It would be appropriate to add features that require persistent use of real-time location updates while the app is in the background or remove the "location" setting from the UIBackgroundModes key. If your application does not require persistent, real-time location updates, we recommend using the significant-change location service or the region monitoring location service.
    For more information on these options, please see the "Starting the Significant-Change Location Service" and "Monitoring Shape-Based Regions" sections in the Location Awareness Programming Guide.
    If you choose to add features that use the Location Background Mode, please include the following battery use disclaimer in your Application Description:
    "Continued use of GPS running in the background can dramatically decrease battery life."
    Additionally, at your earliest opportunity, please review the following question/s and provide as detailed information as you can in response. The more information you can provide upfront, the sooner we can complete your review.
    We are unable to access the app in use in "http://www.wayding.com/waydingweb/article/12/139". Please provide us a valid demo video to show your app in use.
    For discrete code-level questions, you may wish to consult with Apple Developer Technical Support. When the DTS engineer follows up with you, please be ready to provide:
    - complete details of your rejection issue(s)
    - screenshots
    - steps to reproduce the issue(s)
    - symbolicated crash logs - if your issue results in a crash log
    If you have difficulty reproducing a reported issue, please try testing the workflow as described in <https://developer.apple.com/library/ios/qa/qa1764/>Technical Q&A QA1764: How to reproduce a crash or bug that only App Review or users are seeing.

    Unfortunately, these forums here are all user to user; you might try the developer forums or get in touch with the team that you are working with.

  • Help required network configuration - Gateway route settings get erased on reboot.

    Oracle Linux 7
    Linux myhostname 3.8.13-35.3.1.el7uek.x86_64 #2 SMP Wed Jun 25 15:27:43 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux
    #cat /etc/sysconfig/network-scripts/ifcfg-eno16780032
    TYPE="Ethernet"
    BOOTPROTO="none"
    DEFROUTE="yes"
    IPV4_FAILURE_FATAL="no"
    IPV6INIT="yes"
    IPV6_AUTOCONF="yes"
    IPV6_DEFROUTE="yes"
    IPV6_FAILURE_FATAL="no"
    NAME="eno16780032"
    UUID="2d1107e3-8bd9-49b1-b726-701c56dc368b"
    ONBOOT="yes"
    IPADDR0="34.36.140.86"
    PREFIX0="22"
    GATEWAY0="34.36.143.254"
    DNS1="34.36.132.1"
    DNS2="34.34.132.1"
    DOMAIN="corp.halliburton.com"
    HWADDR="00:50:56:AC:3F:F9"
    IPV6_PEERDNS="yes"
    IPV6_PEERROUTES="yes"
    NM_CONTROLLED="no"
    #route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         34.36.143.254   0.0.0.0         UG    0      0        0 eno16780032
    34.36.140.0     0.0.0.0         255.255.252.0   U     0      0        0 eno16780032
    169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eno16780032
    When I reboot the machine, the first line in route table gets erased, I then run:
    #route add default gw 34.36.143.254
    After which network works fine.
    Help required. I don't want to use NetworkManager.

    The following might be useful:
    https://access.redhat.com/solutions/783533
    "When transitioning from NetworkManager to using the network initscript, the default gateway parameter in the interface's ifcfg file will be depicted as 'GATEWAY0'. In order for the ifcfg file to be compatible with the network initscript, this parameter must be renamed to 'GATEWAY'. This limitation will be addressed in an upcoming release of RHEL7."
    NetworkManager is now the default mechanism for RHEL 7. Personally I don't quite understand this, because as far as I can gather it is a program for systems to automatically detect and connect to known networks. I think such functionality can be useful when switching between wireless and wired networks, but for a server platform, I wonder.

  • Pricing Error (help required)

    Is there any routine which includes the tax value in R100 as well ,currently  the problem is that the 100% Discount condition is only including the net price
    And in the pricing procedure i m using two prices one price of tax calculation and the other is consumer price first i calculate the tax from base price then i deduct the tax from the consumer price this calculation is working fine through standard routines.
    Only problem is that when i enter NRAB and R100 at end it only includes Net Value which is calculated through Formual using condition type NTPS
    Kindly Help Required ASAP

    Hi ABAPAR,
    I m not getting the exact picture of what U desired, from your pricing procedure.
    As you r using multiple free goods condition type...anyway.
    If you wanted to make the calculated tax "amount + "as a basis for the calculation of particular condition type.you can use the functionality of subtotal.
    That mean go and assign one subtotal no. to subtotal column in your pricing procedur to all condition type to which you wanted to make as a basis for furthur calculation.(this settings allow the total of all values in one subtotal).
    And finally U can assign this subtotal no.to the "alt.cal.B.value "of pricing procedure for the calculation of particular condition type.
    If you r using any std condion type that come up with certain routine like NRAB or somthing...possibly that will not allow u to do this settings. so in this case clear your free goods requirement or use any new condition type. i.e . Z creation.
    consult your SD consultant.
    karnesh

  • Help Required ASAP.

    Hi,
    I have a friend of mine his name is Atul Tembe he has a functional expereince of 10 years in sales with L.I.C and he has done SAP SD Certification in the month of November, from Genovate Mumbai he has still not got placed and he is lookin for his first SAP Break. He is a Bcom and a P.G.D.B.A. Would request all of you to kindly help him out please. His e-mail id is [email protected] .If he gets a good break would reward with points do pls help. Pls mark a cc to me too my e-mail id is [email protected]
    Regards
    Atul Keshav

    It is being mentioned over and over in this forum that this is not the place to place job openings or requests for jobs opportunities. This is the forum for knowledge sharing in SAP.
    With the tag line <b>"Help Required ASAP"</b>, you are wasting the time of people who genuinely like to help others who are in need of serious help with SAP Project issues.
    Please desist from posting this kind of things and also irrelevant tag lines.
    Ayub Khan

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Help required - Sales order item is partially delivered but the item grayed

    I have a sales order 123 having say item10 with qty 1, item20 with qty 10 , item 30 qty 12
    Item 1 confirmed qty 1 and delivered qty is 1
    Item 2 confirmed qty 10 and delivered qty 10
    Item 3 confirmed qty 1 and delivered qty is 1
    Now the item3 still has open requirements of 11 to be delivered. But the item is GRAYED OUT already.
    even if I do ATP the qty is not confirming for the remaining 11 pieces.
    Why is that? How to make that item out from GRAY.
    How to confirm the remaining 11 qty for that item.
    Help required as early as possible.
    Appreciate ur help guys
    Radha

    hi Radha, how are you ?
         ---the partial deliveries in master data must have not been mentioned.
         ---the deliveries should be upto target quantity.
         ---check order type, item category and schedule line category.
         ---check unrestricted stock availability.
    thank you
    regards
    Khera.

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

Maybe you are looking for

  • Vendor Master Change Report

    Is there a way to find all changes made to a range of vendors?  Our auditors are wanting to validate that our vendor changes are being correctly documented so they've requested a report showing all vendor changes in a certain time period.  I don't re

  • Multiple HTTP GET requests for individual classes

    Hello, I have a Java plug-in deployed under tomcat 6. JRE version is 1.6.0_16. All the required jars are deployed packed (pack.gz) and the applet tag has 'java_arguments' parameter defined as: <param name='java_arguments' value='-Xms256m -Xmx512m -Dj

  • Please help I can not launch Adobe Reader XI

    My adobe reader suddenly stopped working yesterday. I was running version 8 or 9 under windos 7 and it suddenly gave me a strange error message that the Core DLL failed to load.  I have never seen this happen before.  It's also asking me if I want to

  • ARD Admin 3.3 Unlimited in Lion

    I have installen on a new HD Lion 10.7.1 and the ARD Admin 3.3 Unlimited (ORIGINAL 499.00 Euro) is not possible to install it HELP!!!!!!!

  • How to get i books on ios 421 nowdays

    getting more upset by the click i have a 2nd gen i touch wich i use mostly for reading it stoped getting my photos and books because of the new ios i am this close of tossing this in steve jobs grave, its best that this have some sort of solution.