Hi Friends, need help on maintaining vendor classification data in MDG

Hi All,
I have a requirement to handle classification data for Vendor, How do I do that as MDG does not provide any standard way of handling that for Vendor.Can anyone please guide.Attached a file for your understanding.
Regards,
ArnMitz
javascript:;

Hi Sanjay Sir,
Thanks for pateintly answering my queries.
last query:As you said on the first reply in MDG 7.0 SP2 it is possible. So I would like to know will this be part of standard content like how we have SAP Delivered model for suppliers? or we need to extend the data model like how we do it for extension of entity types or so?
Regards,
Arnmitz

Similar Messages

  • My friend needs help with her ipod

    My friend needs help with her Ipod. Here's what happened. She connected her Ipod to a casette adapter and the ipod just froze. She started doing the reset but to no avail. What do you think cause this? She really needs help so if anyone can suggest what to do that would be greatly appreciated.
    I don't specifically know her ipod but I think that it is the Ipod 30gb.

    Welcome to Apple Discussions!
    She needs to reset her iPod by holding down Menu and Select for 6-10 seconds...
    Resetting iPod
    It may take several attempts. The above link also has "tips" if the iPod does not seem to be resetting.
    If she has tried many times, along with the "tips" and the iPod still won't reset, then she will have to wait for the iPod's battery to die and then she can charge it back up and it should work fine. The iPod should reset though.
    btabz

  • Vendor Classification Data

    Hi All,
    We have a requirement to load vendor classification data along with vendor master data. Anyone has worked with classifications?
    Can we extend/modify the standard Bestpractices IDoc for Vendor master data load ? What is the best practice for this?
    I came across this thread where it says,
    "you have to create your vendors first. When that is complete, you have to create a file on the app server with the classification data. Then run RCCLBI03"
    Posting Vendor Classification Data using XK02 transaction
    Any suggestions on using Data Services for the same?
    Thanks in Advance.
    Jes

    Hi Jes,
    I received this information from Eugene De Lattes in the Best Practices development team:
    Vendor classification is called Vendor Evaluation. Hereu2019s some help for setting the evaluation up in an SAP system:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/8d/b97e4f414511d188fc0000e8322f96/frameset.htm
    The good thing is weu2019ve already got two objects that could be used for vendor evaluation: the Class (IDoc type CLSMAS04) and the Classification (IDoc type CLFMAS02) in our list. The only thing that might be unclear is that weu2019re using CLFMAS02 as Material Classification. Itu2019s, actually, more generic, and is called Object Classification. The object, of course, can also be Vendors.
    Some generic help for Classification:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/24/47633a416711d189ec0000e81ddfac/frameset.htm
    And here you can see the IDoc types in MM:
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/1a/0e35da539911d1898b0000e8322d00/frameset.htm
    So, the answer could be that vendor classification is already covered by the IDoc types. However, we donu2019t have a specific mapping for that nor weu2019ve got a separate documentation.

  • Vendor Classification data table name?

    Hi,
    can any one tell me the table names for the vendor classification data stored?
    I am trying to update the following Vendor classification values (before updating I want to know is there any data already exists for that vendor ).
    MBE             Minority Business Enterprise
    WBE             Woman Business Enterprise
    MWBE             Minority/Woman Business Enterp
    Expiration date.
    I need the table name where this data is storing for Vendors. I need to find this data based on Vendor number, how do I can get this ?
    Thanks  for your time.
    Kevin.

    Hi Kevin,
    You can use this BAPI to check and update classification.
    BAPI_OBJCL_GETDETAIL
    BAPI_OBJCL_CHANGE
    Regards,
    Ferry Lianto

  • Need help in laoding flat file data, which has \r at the end of a string

    Hi There,
    Need help in loading flat file data, which has \r at the end of a string.
    I have a flat file with three columns. In the data, at the end of second column it has \r. So because of this the control is going to the beginning of next line. And the rest of the line is loading into the next line.
    Can someone pls help me to remove escape character \r from the data?
    thanks,
    rag

    Have you looked into the sed linux command? here are some details:
    When working with txt files or with the shell in general it is sometimes necessary to replace certain chars in existing files. In that cases sed can come in handy:
    1     sed -i 's/foo/bar/g' FILENAME
    The -i option makes sure that the changes are saved in the new file – in case you are not sure that sed will work as you expect it you should use it without the option but provide an output filename. The s is for search, the foo is the pattern you are searching the file for, bar is the replacement string and the g flag makes sure that all hits on each line are replaced, not just the first one.
    If you have to replace special characters like a dot or a comma, they have to be entered with a backslash to make clear that you mean the chars, not some control command:
    1     sed -i 's/./,/g' *txt
    Sed should be available on every standard installation of any distribution. At lesat on Fedora it is even required by core system parts like udev.
    If this helps, mark as correct or helpful.

  • Need help! Can't validate date overlaps for a tabular column

    Hello all,
    The validation I created to validate whether new or updates rows does not overlap with any records in the table isn't working.
    The columns are StartDt and EndDt
    Validation Type: NOT EXISTS
    Validation expresion:
    select 1
        from  sample S
        WHERE S.STARTDT BETWEEN :STARTDT AND :ENDDT
    OR(S.ENDDT BETWEEN :STARTDT AND :ENDDT)
    or (S.STARTDT <= :STARTDT and S.ENDDT >= :ENDDT)
    or (:STARTDT <= S.STARTDT and :ENDDT >= S.ENDDT)
    Error Message:
    Times overlap
    When Buttons pressed
    -Select Button-
    The validation works if a new row or updated row overlaps any existing start and end date records but it doesn't work if I update startdate and end date rows that doesn't overlap existing date times
    Example:
    TABLE DISPLAYS THE FOLLOWING RECORDS
    NAME                   START DATE                      END DATE
    TEST                    1/1/2012                               12/31/2012
    If I update the rows to the following values, I receive an error message (although those values don't overlap any records in the table)
    NAME                   START DATE                      END DATE
    TEST                    6/1/2012                               10/30/2012
    Any ideas? Do I need to change my code?
    Click the link to view the answer to this question. Need help! Can't validate date overlaps for a tabular column
    Message was edited by: CharlieMack

    Logic for date range overlap testing only requires two conditions in the WHERE clause:
    ORACLE-BASE - Overlapping Date Ranges
    WHERE S.STARTDT <= :ENDDT AND S.ENDDT >= :STARTDT -- TRUE for ranges that overlap
    It looks a little odd, but, if you scribble out a 'logic table', it makes sense.
    Condition
    A.start <= B.end
    A.end >= B.start
    A__A B--B
    true
    false
    A__B=A--B
    true
    true
    A__B==B__A
    true
    true
    B--A==B__A
    true
    true
    B--B A__A
    false
    true
    MK

  • Posting Vendor Classification Data using XK02 transaction

    Hi All,
    I am getting the vendor master legacy data by using an IDoc where in i am uploading the vendor information through transaction XK02. Now i have to enhance that to post the vendor classification information also. There is a function module IDOC_INPUT_CREDITOR, which is modified to a ZIDOC_INPUT_CREDITOR and the changes are made as per the client requirements. Could you please let me know how can i post the vendor classification information along with the vendor information. Let me know under which segment i need to write the code for this. Please share your experiences in loading the vendor master data load along with vendor classification.
    Let me know if you need any more information.
    Thank You,
    Suresh

    Here are the fields you need to fill.
    BIKSSK-MAFID = 'O'.
    BIKSSK-KLART = 'Z10'.
    BIKSSK-OBJEK = 'YOUR-VENDOR-NUMBER-IN-INTERNAL-FORMAT'.
    You may also need other values concatenated to vendor number if the classification is at company code level or purchasing org level.
    BIKSSK-CLASS = 'YOUR-CLASS'.
    I am not giving BIAUSP because I think you can figure it out.
    Srinivas
    Message was edited by: Srinivas Adavi

  • Upload Vendor Classification Data in R3

    Hello Everyone,
      I was trying to get my hand on a Function Module for uploading Vendor Master Classification data in R3. I came across CLFM_OBJECT_CLASSIFICATION. I do not know if this is the right one and also how it works.
    If someone could just help me as to whether I have the right end of the stick and can also provide me with some documentation on it to get going, I would highly appreciate that.
    Thanks & Rgds
    SDR

    Rob,
    I highly appreciate and thank you for your prompt response and the update on using the Standard program that you had provided to upload classification data. However I dont know whether it suits my requirement though.
    The situation is that a BAPI gets called from webmethod in real time passing data to it. This Bapi is then supposed to create classification data for the vendor in R3. I suppose the former approach by using the standard program requires a formatted file for input to carry out the necessary. I dont think I can have that luxury though. Can you think or suggest of a way to get around.
    Thanks & Rgds
    SDR

  • Change or insert a vendor classification data.

    Hi!
    My english is not so good, let me try... I can change or insert a classification data for a vendor in the transaction XK01 and XK02, but I need do this by ABAP code. I tryed to find some functions... nothing! I tried to debugg the standard code of transaction XK02, but the functions what I found had not been useful.
    Anyone knows any BAPI or function that can do this??
    Tnx!

    If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use. 
    Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this. 
    1. Find out the package of the transaction. 
    Start Va01 go to system --> status. 
    Double click on transaction 
    Package is VA 
    Open this package in SE80 
    Open business engineering-->Business object types 
    Find the BO which sounds the most appropriate 
    I would suggest BUS2032 Sales Order 
    Double click. 
    Open methods. 
    Find the released method with from data or something similar in the name 
    , Createfromdat2 
    Position the cursor in it and click the program button 
    Scroll down to find the bapi used in this method 
    With this way you can also find out programs and FM's 
    2. Start va01 go to system-->status 
    Double click transaction VA01 
    Double click on package 
    Read the application component. (this is SD-SLS Sales) 
    Then open the transaction BAPI 
    Sales and distribution>Sales>sales order 
    createfromdat2

  • Need help on: Automation of Daily Data Load

    Hi all,
    We need to start our Daily Data load from DAC by Manually. So right now my client has asked us to do Automation of Daily Data Load.
    Starting the Daily Data Load Manually(DAC) Process: First we have to check whether the ASCP Plans updated or not
    Right now we are checking whether the plans got updated or not, so for this we are using following query
    SELECT LTrim(RTrim (compile_designator)),data_completion_date,TO_CHAR(data_completion_date ,'DD-MON-YYYY HH24:MI:SS') FROM apps.msc_plans
    WHERE LTrim(RTrim (compile_designator))
    in( 'Plan01,'Plan02','Plan03','Paln04') ORDER BY 2 desc
    from this query we will able to see whether all the plans got updated or not. From all the Four Plans, two plans will get updated as of Sysdate(mm/dd/yyy) ,Timestamp(hh:mm:ss)(for example i.e. Plan01 08/25/2011 11:20:08 PM, Plan02 08/25/2011 11:45:06 PM) and rest two plans get updated on Sysdate+1(mm/dd/yyy), Timestamp(hh:mm:ss)(for example i.e. Plan03 08/26/2011 12:20:05 AM, Plan04 08/26/2011 12:45:08 AM)
    So after checking the plans , we start the Daily Load in DAC manually.
    May I know how should I convert my above sql query which I am using for checking the plans updated or not in informatica, so as to automate the Daily Load in informatica level..
    Need help.

    You cannot replicate what is done with DAC at Informatica level. DAC is a separate Oracle product that orchestrates and manages the ETL load (including Index management, etc). The reason Oracle developed DAC is because it allows you to manage a large scale DW load for a large ERP system. As suggested, you can invoke the DAC execution plan via a command but you cannot replicate everything the DAC does at Informatica level. If this helps, please mark as helpful.

  • Gurus...Need help....extract data from BKPF header table and BSEG line item

    Gurus,
    I have to write the logic to fetch data from bkpf and bseg. Need help on how can i do that..
    I have to get bukrs  belnr gjahr ldgrp from BKPF for a given date and company code. For all these documents, then i have to get the line items from BSEG if the ldgrp is I1 or SPACE.
    If the ldgrp is not I1 or SPACE then i have to fetch the records from BSEG_ADD and then generate a ALV report with all the data including the data that was fetched from BKPF.
    So, it wil be a combined ALV report that displays header as well as LINE item data together...
    Can u please help me with the code...I am not sure how can everything go all together in one internal table....Becoz once its there in one table then only a ALV list can be generated.......
    Cheers:
    Sam

    hi Sam, this may be of some similar thing.
    Use this program, I got this prog from a source and we added a small conditional check in the program which checks document numbers in BSEG and also comapres in BKPF and sees if the output from BSEG falls under the posting data range specified in the initial selection.
    Now just so you know, this output is kinda messed up, so you will have to play with it in Excel to extract the document numbers, if that is what you want.
    ============================
    PROGRAM....... ZFI_BSEG_DOWNLOAD
    TITLE......... Download BSEG
    PROGRAM TYPE.. Download
    ======================================================================
    GENERAL DOCUMENTATION AND COMMENTS
    <...>
    ======================================================================
    ASSOCIATED PROGRAMS
    <Program>..... <Description>
    ======================================================================
    CHANGE HISTORY
    Date By Ticket Description
    REPORT zfi_bseg_download.
    TABLES: bseg, bkpf.
    TYPES: BEGIN OF ty_output,
    line(6000) TYPE c,
    END OF ty_output.
    TYPES: ty_tab_output TYPE TABLE OF ty_output,
    ty_tab_nametab TYPE TABLE OF x031l.
    CONSTANTS: c_delimiter(04) TYPE c VALUE '"%%"',
    c_records TYPE i VALUE 10000.
    SELECTION-SCREEN
    SELECT-OPTIONS: p_bukrs FOR bseg-bukrs,
    p_belnr FOR bseg-belnr,
    p_buzei FOR bseg-buzei,
    p_gjahr FOR bseg-gjahr,
    p_budat for bkpf-budat.
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN SKIP.
    PARAMETERS: p_append AS CHECKBOX DEFAULT 'X'.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM get_records.
    *& Form get_records
    FORM get_records.
    DATA: l_cursor TYPE cursor,
    lt_bseg TYPE TABLE OF bseg,
    ls_bseg LIKE LINE OF lt_bseg,
    lt_output TYPE ty_tab_output,
    ls_output LIKE LINE OF lt_output,
    lt_nametab TYPE ty_tab_nametab,
    ls_nametab LIKE LINE OF lt_nametab,
    l_field(30) TYPE c,
    l_output(50) TYPE c,
    l_date(10) TYPE c,
    l_len TYPE i.
    FIELD-SYMBOLS: <field>.
    IF p_append NE space.
    OPEN DATASET p_file FOR APPENDING IN TEXT MODE.
    ELSE.
    OPEN DATASET p_file FOR OUTPUT IN TEXT MODE.
    ENDIF.
    Retrieve BSEF fieldnames and data types
    PERFORM get_fields CHANGING lt_nametab.
    OPEN CURSOR l_cursor FOR
    SELECT * FROM bseg
    WHERE bukrs IN p_bukrs
    AND belnr IN p_belnr
    AND buzei IN p_buzei
    AND gjahr IN p_gjahr.
    Write out fieldnames
    IF p_append IS INITIAL.
    LOOP AT lt_nametab INTO ls_nametab.
    CONCATENATE ls_output ls_nametab-fieldname
    INTO ls_output SEPARATED BY c_delimiter.
    ENDLOOP.
    IF ls_output+0(4) = c_delimiter.
    SHIFT ls_output LEFT BY 4 PLACES.
    ENDIF.
    l_len = strlen( ls_output ).
    TRANSFER ls_output TO p_file LENGTH l_len.
    ENDIF.
    Process BSEG records
    DO.
    CLEAR lt_bseg.
    FETCH NEXT CURSOR l_cursor
    INTO TABLE lt_bseg
    PACKAGE SIZE c_records.
    IF sy-subrc 0.
    EXIT.
    ENDIF.
    LOOP AT lt_bseg INTO ls_bseg.
    SELECT single * FROM BKPF
    WHERE BUKRS = ls_bseg-BUKRS
    AND BELNR = ls_bseg-BELNR
    AND GJAHR = ls_bseg-GJAHR
    AND BUDAT in p_budat.
    if syst-subrc 0.
    continue.
    endif.
    CLEAR ls_output.
    Process individual fields of BSEG record
    LOOP AT lt_nametab INTO ls_nametab.
    CONCATENATE 'LS_BSEG-' ls_nametab-fieldname INTO l_field.
    ASSIGN (l_field) TO <field>.
    CLEAR l_output.
    Process by field data types
    CASE ls_nametab-exid.
    WHEN 'C' OR 'N' OR 'I'.
    Character, Numeric & Integer
    l_output = <field>.
    WHEN 'D'.
    Dates
    WRITE <field> TO l_date DD/MM/YYYY.
    l_output = l_date.
    WHEN 'P'.
    Packed decimals
    WRITE <field> TO l_output.
    WHEN OTHERS.
    MESSAGE a000(zs) WITH 'Data type error - ' ls_nametab-exid.
    ENDCASE.
    SHIFT l_output LEFT DELETING LEADING space.
    CONCATENATE ls_output l_output
    INTO ls_output SEPARATED BY c_delimiter.
    ENDLOOP.
    IF ls_output+0(4) = c_delimiter.
    SHIFT ls_output LEFT BY 4 PLACES.
    ENDIF.
    l_len = strlen( ls_output ).
    TRANSFER ls_output TO p_file LENGTH l_len.
    ENDLOOP.
    IF sy-subrc = 0.
    ENDIF.
    ENDDO.
    CLOSE CURSOR l_cursor.
    CLOSE DATASET p_file.
    ENDFORM. " get_records
    *& Form get_fields
    FORM get_fields CHANGING pt_nametab TYPE ty_tab_nametab.
    CALL FUNCTION 'RFC_GET_NAMETAB'
    EXPORTING
    tabname = 'BSEG'
    TABLES
    nametab = pt_nametab
    EXCEPTIONS
    table_not_active = 1
    OTHERS = 2.
    IF sy-subrc 0.
    ENDIF.
    ENDFORM. " get_fields
    hope this helps.
    cheers,
    Hema.

  • Need help with code for adding dates to form

    Hello forum goers
    I'm new to making forms and figured out how to auto add the date, however I need the form to change the date for every copy made.
    For example today is 06/08/2012 if I print 10 copies of the form it will output 10 pages ranging from 06/08/2012 to 06/17/2012. If code exists to do this I would be very gratefull to whoever helps, I also wouldn't mind if that is not possible for manually inputing the start / end dates.
    Currently I print 15-30 copies of the form and hand write each of the dates but I'm just getting to busy to do that. I also cannot print one a day it must be in batches.
    Thanks in advanced.

    What you are asking for is more complex than just setting the current date. Each time the form prints it has to know that it has to change the date. I would suggest doing this.
    First, setup a document level script to set the date to the current date. I suspect that you have already done this?
    Next, Create a "DidPrint" document action to increment the date.  To do this the script will need to scan the current text value of the date, add one day to it, and then reformat it.  You'll find information on this type of scripting in these articles:
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt-part-2
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt-part-3
    Since the increment happenes in the Did Print you will need to print each copy individually. If you enter 10 copies in the print dialog it won't work. You have to print one at a time.  You can automate this activity with a console script.
    One of the advantages of incrementing in the DidPrint is that you can also manually enter a date and it will increment from there.
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)
    Having trouble, Why Doesn't my Script Work?

  • Vendor Classification data table in ERP

    Hi,
    With regards to Vendor Classification assignmentu2026u2026u2026..
    A vendor is assigned to a Class and then assigned with a Values to characteristics of that class
    Now AUSP table gives me Vendors and their characteristics & characteristics values informationu2026.but how/where can I get the relation between Class and characteristics
    Thanks

    Hi
    Thanks for the update....
    How can i get the CLASS information from KSSK / KLAH / KSML tables

  • [Urgent] Need help calculating difference between two dates

    I'm trying to write a code to display the current day and time, then accept two dates from the user and display the difference between the two dates. To display the current date and time, I've used the SimpleDateFormatter library but I'm having difficulty calculating the difference between two dates. Could someone please help me with this?
    Below is my code so far
    import java.util.Date;
    import java.util.Scanner;
    import java.text.SimpleDateFormat;
    public class DateFormatter {
         public void displayNow()
              Date todaysDate = new Date();
              SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
              String formattedDate = formatter.format(todaysDate);
              System.out.println("Today's date and time is: "+formattedDate);
         public void calculateDifference(Date startDate, Date endDate)
              /* This is whre i need help! */
         public static void main(String[] args)
              DateFormatter df = new DateFormatter();
              Scanner sc = new Scanner(System.in);
              df.displayNow();
              System.out.println("Please enter a date: ");
              String date1 = sc.next();
              System.out.println("Please enter another date: ");
              String date2 = sc.next();
    }The methods displayNow() and calculateDifference(Date startDate, Date endDate) are essential and cannot be skipped out.

    tarahmarie101 wrote:
    Dude. I've tried doing assignments under pressure, and it doesn't work. Here's a piece of free advice. Start earlier next time, don't put "urgent" in the title of your post b/c it just pisses people off around here--and is a sure sign of an overdue homework assignment which no one around here likes helping with, and try to ask intelligent questions--don't just say "Help me!"
    Of course, it takes some time to learn what the intelligent questions are. You have my sympathy. Try asking questions about how to do a particular task, instead of asking people to tell you what to do. It starts to get easier after a while.
    actually dude i started on this on monday.. but there were so many other stuff to do along with this.. and i did try referring up the Calendar utility but it was a bit confusing actually.. it was only after that did i come to this forum.. nor am i very good at Java.. anyhoo thanks for your sympathies :P

  • Need help masking or hiding sensitive data in LDAP entries.

    I am currently working on a schema for holding user account information
    in LDAP. We are storing user SSN information as part of the custom
    schema that we have created and need help hiding that data from people
    who may be browsing the directory, either using the console or other
    means. The end result we are trying to achieve is the same as the way
    that the userPassword attribute is stored in the directory. When viewed
    it appears as all asterisks but it can still be passed and read normally
    elsewhere. If anyone has any information on how to do this it would be
    greatly appreciated.
    Thanks
    Robert LaBarre
    [email protected]
    Dewpoint Inc.

    Read the section in the manual on access control. Personally, if you have an
    SQL database that contains information about individuals as well, you might
    want to consider putting the SSNs in there and not in the directory for
    security reasons. i.e. I just read a CERT advisory about buffer overflows in
    the Beta version of iPlanet 5.0 (supposed to be fixed in the release
    version) which basically means full system compromise. Personally, I would
    not recommend putting SSNs in the directory at all if the directory is
    accessible over the Internet. There's always security holes here and there
    and I doubt that you want to leak this kind of information onto the
    Internet.
    Jon
    "Robert LaBarre" <[email protected]> wrote in message
    news:[email protected]..
    I am currently working on a schema for holding user account information
    in LDAP. We are storing user SSN information as part of the custom
    schema that we have created and need help hiding that data from people
    who may be browsing the directory, either using the console or other
    means. The end result we are trying to achieve is the same as the way
    that the userPassword attribute is stored in the directory. When viewed
    it appears as all asterisks but it can still be passed and read normally
    elsewhere. If anyone has any information on how to do this it would be
    greatly appreciated.
    Thanks
    Robert LaBarre
    [email protected]
    Dewpoint Inc.

Maybe you are looking for

  • Download error after mountain lion upload

    HI After I upgraded to 10.8 mountain lion I have since struggled to download firefox and adobe flash (get the error image file corrupted). Also I can't download in itunes (get error 50 or 8000). I have tried: reboot software update Recovery boot and

  • How do I find out the URL of the page a document was downloaded from?

    I downloaded a PDF several months ago; I can see it in my downloads history. When I right click it there, I see the link to the PDF itself, but I need to know the actual page it came from. I've checked my History, but cannot identify the page. Is the

  • How do I get an imported an LDIF address book file to display properly?

    x87, Win 7 64 bit pro. I backed up my address book by exporting an LDIF file to an external drive. My PC died and I bought a new one. I loaded Thunderbird 24.6.0 and imported the LDIF file. The addresses came in but they are not displayed in the addr

  • Jarred .java file, how to use it?

    for a naked .java file, we can use -classpath to import it to our source files. but for a jarred .java file, can we import it into our source file for use? i tried for few hrs, it is impossible. if u have used a jarred .java file before, pls give me

  • Help me about Searching for a Substring within a String

    Hello everybody, I have a problem like this: Assume i type a sentence from keyboard: "I want to play football" And computer will look for the word "football" to see if this word is in that sentence. In this case, computer found it. That is it ! Could