Sub-Category in Category Management of the AdminUI

Hello,
Is it possible to create a sub-category under the Category in Cagegory Management of the AdminUI? I do not see any option to do that, so would like to know if that is possible or not. Can any one please advise.
Thanks,
Han Dao

No it's not. You would have to customize your workspace to get that kind of functionality.
Jasmin

Similar Messages

  • Risk category in credit management

    Hi,
    What is the role of risk category in credit management?
    Regards

    Hi,
    It enables the credit manager to classify customers according to commercial risk. Along with the document type, the risk category helps to determine which kind of credit check the system automatically carries out. For example, you may want to carry out stringent checks at order receipt for high risk customers, but waive a credit check for customers with a very strong payment history.
    Regards
    SD

  • Device Category in device management

    Hi,
    i am new to ISU and understanding Device Management. want to know about device category and its integration with materials management.
    REegards,
    Mohit A

    Creating Device Categories in IS-U  
    Procedure
    1. Choose Utilities industry >> Device management >> Technology >> Device category >> Create.
    You branch to the initial screen for creating device categories.
    2. Enter the required data and choose a basic device category to be allocated to the device category. Chose Continue.
    - If a material exists for the device category specified, you branch to the screen Create Device Category: General Data. Go to step 3.
    - If no material exists for the device category specified, the Create MM Material dialog box appears.
    Here you can create a material in MM in the background. Processing is then continued on the next screen for device category maintenance.
    3. Enter further data for the device category and if necessary add additional basic device categories. Save your data.
    You branch to the initial screen for creating device categories.
    Result
    The device category was created in IS-U. In addition, a material master was created in the background.
    If you want to use all of the MM functions available, you must extend the material master you created in IS-U in MM.

  • "BP Category 1 does not fit the data in category 2"  "Replies Appreciated"

    Hi Gurus,
    When i am trying to create an "Individual Account" in UI, I am getting the error "BP Category 1 does not fit the data in category 2".
    If i try to create a "group" then it says "BP Category 3 does not fit the data in category 2".
    It allows me to create only "Corporate Account" i..e. Category 2.
    What should i do to create "Individual Account" and "Group". (Category1 & Category 3).
    Individual Account (Category 1) - "BP Category 1 does not fit the data in category 2".
    Corporate Account (Category 2) - Able to create only Corporate Account
    Group (Category 3) - "BP Category 3 does not fit the data in category 2".
    Thanks & Regards
    Rohan

    Hi Rohan,
    Hope this SAP Note : 1232459, Solves your problem.
    You might have created a custom configuration for corporate accounts.
    Unfortunately in case of custom configurations exist, they are selected with higher priority.
    So in this case the configuration for corporate accounts is also shown for individual accounts,
    this causes error.
    In order to solve this problem, create a custom configuration for individual account also,
    i.e for view BP_HEAD/AccountDetails. Object type BP_ACCOUNT and object subtype INDIVIDUAL.
    Please make sure that the custom configuration includes the fields firstname and lastname for
    persons instead of name1 and name2 which are only allowed for corporate accounts.
    I hope the above information resolves your problem.
    Best Regards
    Shiven

  • CRM 2007 IC : error "BP category 2 does not fit the data in category 1"

    Hi Guys,
    When I am trying to save the data on the Bupacreate page it gives the error as follows.
    "BP category 2 does not fit the data in category 1".
    Can anyone suggest what is causing this error to happen and how this error can be corrected.
    thanks & regards
    Sandy

    Hi,
    This error usually occrus when you try to set field in without specifing bptype ie person, group etc. In our scenario we were trying to set field in Person which was not present in group. but since do_prepare_output method is same in both, that feild was getting set for group as well. When we placed restriction this error got removed.
    Best regards
    Pankaj Kumar

  • Error: 'BP category 1 does not fit the data in category 2'

    Hi,
                i have written a program to create a contact person and the code for it is pasted below...when i run this program i get nothing but this message in the status bar 'BP category 1 does not fit the data in category 2'...can someone tell me wht the error means and y it is coming.
    thanks:)
    pushpa
    *table for storing the line by line records in the excel file
    TYPES: BEGIN OF TTAB,
            REC(1000) TYPE C,
           END OF TTAB.
    DATA ITAB TYPE TABLE OF TTAB WITH HEADER LINE.
    *variable for storing the name of the excel file to be uploaded
    DATA UP_FILE TYPE STRING.
    *data to be uploaded
    TYPES: BEGIN OF TDAT,
            FLD1 TYPE BAPIBUS1006_CENTRAL_ORGAN-NAME1,
            FLD2 TYPE BAPIBUS1006_ADDRESS-STREET,
            FLD3 TYPE BAPIBUS1006_ADDRESS-CITY,
            FLD4 TYPE BAPIBUS1006_ADDRESS-REGION,
            FLD5 TYPE BAPIBUS1006_ADDRESS-POSTL_COD1,
            FLD6 TYPE BAPIBUS1006_ADDRESS-COUNTRY,
            FLD7 TYPE BAPIBUS1006_CENTRAL-PARTNEREXTERNAL,
           END OF TDAT.
    DATA IDAT TYPE TABLE OF TDAT WITH HEADER LINE.
    DATA: BUSINESSPARTNER TYPE BAPIBUS1006_HEAD-BPARTNER,
          CENTRALDATA TYPE BAPIBUS1006_CENTRAL,
          ORGANIZATION TYPE BAPIBUS1006_CENTRAL_ORGAN,
          ADDRESS TYPE BAPIBUS1006_ADDRESS,
          BAPIRETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    PARAMETERS P_FILE TYPE LOCALFILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          STATIC    = 'X'
        CHANGING
          FILE_NAME = P_FILE.
    START-OF-SELECTION.
      UP_FILE = P_FILE.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = UP_FILE
        TABLES
          DATA_TAB                = ITAB
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_READ_ERROR         = 2
          NO_BATCH                = 3
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
    *writing out the contents of the internal table itab
      LOOP AT ITAB.
        WRITE:/ ITAB-REC.
        CLEAR IDAT.
        SPLIT ITAB-REC AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
                    INTO IDAT-FLD1 IDAT-FLD2 IDAT-FLD3 IDAT-FLD4 IDAT-FLD5 IDAT-FLD6 IDAT-FLD7.
        APPEND IDAT.
      ENDLOOP.
      LOOP AT IDAT.
        MOVE: IDAT-FLD1 TO ORGANIZATION-NAME1,
              IDAT-FLD2 TO ADDRESS-STREET,
              IDAT-FLD3 TO ADDRESS-CITY,
              IDAT-FLD4 TO ADDRESS-REGION,
              IDAT-FLD5 TO ADDRESS-POSTL_COD1,
              IDAT-FLD6 TO ADDRESS-COUNTRY,
              IDAT-FLD7 TO CENTRALDATA-PARTNEREXTERNAL,
              '0001' TO CENTRALDATA-PARTNERTYPE.
        CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'
          EXPORTING
            PARTNERCATEGORY         = '1'
            CENTRALDATA             = CENTRALDATA
            CENTRALDATAORGANIZATION = ORGANIZATION
            ADDRESSDATA             = ADDRESS
          IMPORTING
            BUSINESSPARTNER         = BUSINESSPARTNER
          TABLES
            RETURN                  = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        REFRESH BAPIRETURN.
        CLEAR BAPIRETURN.
        CALL FUNCTION 'BAPI_BUPA_ROLE_ADD'
          EXPORTING
          BUSINESSPARTNER = BUSINESSPARTNER
          BUSINESSPARTNERROLE = 'BUP001'
          DIFFERENTIATIONTYPEVALUE =
          TABLES
          RETURN = BAPIRETURN.
        IF BAPIRETURN IS NOT INITIAL.
          READ TABLE BAPIRETURN INDEX 1.
          MESSAGE
            ID BAPIRETURN-ID
            TYPE BAPIRETURN-TYPE
            NUMBER BAPIRETURN-NUMBER
            WITH BAPIRETURN-MESSAGE_V1
            BAPIRETURN-MESSAGE_V2
            BAPIRETURN-MESSAGE_V3
            BAPIRETURN-MESSAGE_V4.
          EXIT.
        ENDIF.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        WRITE:/ 'Business Partner ID:', BUSINESSPARTNER.
      ENDLOOP.

    Hi Pushpa,
             you can use following code to create relationships using BAPI. In this Business partner is organisatin. contact persion paramenter is person. other information related to relationship details
    CALL FUNCTION 'BAPI_BUPR_CONTP_CREATE'
        EXPORTING
          BUSINESSPARTNER           = SEARCH_PARTNER
          CONTACTPERSON             = CONTACT_SAP
      VALIDFROMDATE             = '00010101'
      VALIDUNTILDATE            = '99991231'
      DEFAULTRELATIONSHIP       =
      ADDRESSGUID               =
          CENTRALDATA             = WA_CENTRAL_DATA
          ADDRESSDATA             = WA_ADDR_DATA
          TABLES
        BAPIADTEL                 = I_TEL_DATA
        BAPIADFAX                 = I_FAX_DATA
      BAPIADTTX                 =
      BAPIADTLX                 =
        BAPIADSMTP                = I_EMAIL_DATA
      BAPIADRML                 =
      BAPIADX400                =
      BAPIADRFC                 =
      BAPIADPRT                 =
      BAPIADSSF                 =
      BAPIADURI                 =
      BAPIADPAG                 =
      BAPIAD_REM                =
      BAPICOMREM                =
         RETURN                    = I_RETURN
    hope this will help you
    Siva

  • Is it possible to use Siri to send text messages to groups? I want to be able to say to Siri "Send a text message to the people in 'group 4' category." I then dictate the text message, confirm, and out it goes. Groups of 100 to 250 contacts.

    Is it possible to use Siri to send text messages to groups (categories, distribution lists)? I want to be able to say to Siri "Send a text message to the people in 'group 4' category." I then dictate the text message, confirm, and out it goes. Groups of 100 to 250 contacts. What app(s), if any, would I need? Is this in anyway dependent on my carrier?
    Thanks in advance for your help.

    Hmmm, that's strange - just checked again and it is 1066288.
    Note 1066288 - ESS LEA:Workitem XXXX cannot be executed in status COMPLETED
    Perhaps you can't see it because it is a "Pilot Release"?
    Release Status: Pilot Release
    Released on: 26.02.2008  04:54:32
    Priority: Correction with high priority
    Category: Program error
    Primary Component: PT-RC-UI-XS Self Services Web Dynpro

  • I have almost 1200 contacts in my Outlook, all of which were assigned to a Category, so I could look people up by that Category. Almost 900 of the Category assignments are now blank. Does anyone know how to assign a contact to a group on the iPhone?

    I have almost 1200 contacts in my Outlook, all of which were assigned to a Category, so I could look people up by that Category. Almost 900 of the Category assignments are now blank. I am a recent iPhone user. When I had my BlackBerry, you could see or assign the Category in each contact. I don't see that when I go to "edit" in a contact. I don't want to go through all my contacts and reassign the Category, and then have them wiped out again. Does anyone know how to fix this problem?

    I'm sorry to hear that.
    I'm not affiliated w/ the developer, just a happy user that gave up fighting the apple podcast app a while ago.  I used to have a bunch of smart playlists in itunes for my podcasts, and come home every day and pathologically synced my phone as soon as I walked in the door, and again before I walked out the door in the morning.
    Since my wife was doing this too, we were fighting over who's turn it was to sync their phone.
    Since I've switched to Downcast, I no longer worry about syncing my phone to itunes at all.  I can go weeks between syncs.
    Setup a "playlist" in downcast (ex., "Commute") and add podcasts to that playlist.  Add another playlist ("walk" or "workout") and add different podcasts to that one. 
    Set podcast priorities on a per-feed basis (ex., high priority for some daily news feeds, medium priority for some favorite podcasts, lower priority for other stuff).  Downcast will play the things in the priority you specify, and within that priority, it will play in date order (oldest to newest).
    Allegedly, it will also sync your play status to other devices, although that is not a feature I currently use and can't vouch for.  It uses apple's iCloud APIs, so to some extent may be limited by what Apple's APIs can do.

  • Product category: Add description field to the search help

    Hi experts,
    My requierement is to add the material group description field 2 in search help.
    Analysis: While creating the shopping cart it will ask product category . when we click on the drop down list we can find the ...type if u click on that it will move to other screen where we can search.after that it will show the product category description , category ID, Logical system.
    I want to add one more field to that ( product category description 2 field.
    let me know how can i proceed further on this.
    Thanks,
    Prashanth.

    Hi Neha,
    Thanks.
    but i want to know which search help is using....(IN ITS )
    please help me to find the exact search help.
    Thanks,
    Prashanth.

  • Schedule line category CN is inconsistent with the MRP type

    Guys,
    I am running into an issue here..
    I have change the MRP type of articles from ND (no planning) to PD (MRP)
    Now when I try to change sales oders on this articles (VA02), I get error message saying that the Schedule line category CN is inconsistent with the MRP type
    Does that make sense to any of you and what is/are the remedies
    KR - Loï

    Dear
    When you have created SO at that time the MRP type was ND so based on that System has picked the Schedule line category CN which is No mat.planning. Create new SO this problem will not come. Based on Strategy & PD schedule line category will come as mat. planning.
    Regards
    ABhijit Gautam

  • SSRS 2012 - Cannot access any of the sub page from Report Manager - Manage page menus.

    All:
      It was working at one point of time, but suddenly when I tried to access any of the menus from Report Manage page, all the options (Data Source, Subscriptions, Processing Options, Cash Refresh Options, Report History, Snapshot Options, Security) will
    redirect back to the root directory page.
      Because of this problem, I cannot manage any of the options or subscriptions for any of my report on the server.
      Does anybody know what could be the problem? Thank you very much for your help.
    Tina

    Hi Tina,
    As per my understanding, I think this strange issue can be caused by the browser which running Report Manager and the page files may be corrupted which are related to manage properties in Report Manager.
    As to the browser, if you use IE explorer to run Report Manager, I suggest that you can try to run it in compatibility mode. If you are using another browser, I recommend that you should use IE explorer to run Report Manager to check the issue again.
    Another possibility is related to corrupted page files. If in this scenario, I suggest that you can try to copy the all Pages folder from another server which works well to replace the current one. By default, the Pages folder is located in the following
    folders:
    C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager
    Besides, if this issue still exists, you can go to Reporting Services Log Files to see if there are error messages. Then it may help us make further analysis.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to customize Category and Category items list while creating New Model

    Hi,
    what the most convenient way to customize the Category and Category items list while creating New Model?
    This is standard:
    Now, what we want to achieve, is to customize this menu, to:
    1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    2. In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available. Additionally, it should behave like a hierarchy ... meaning you can create the second diagram, only as child (related diagram) of the first diagram etc.
    I know, excluding the particular diagrams/diagram elements can be configured using the right/profile settings, but how to:
    1. Customize the standard New Model menu window
    2. Create copies of City Planning Diagrams with different set-ups
    3. Set the relationship between diagrams
    Is such a configuration change possible?
    Thanks a lot for your help!
    Regards,
    Rafal

    Now, what we want to achieve, is to customize this menu, to:
    Question #1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    Click on Tools => General Options=> Model Creation
    Click on Properties => at right of Default category set
    Note : Model template does not work as Category. We can't set. An enchancement request has been open to SAP
    In the following example I defined a new default (MyNewDefault.mcc). As you can see only BPMN models are available.
    To create a new category set with BPMN choice
    a) Copy default.mcc in MyNewDefault.mcc file.
        Go to Tools=>General Options=>Model Creation : Select your new category
        Go to Tools=>General Options=>Model Creation : Edit properties and remove all things you does not want keep
    or
    b) Go to Tools=>General options=>Model Creation : Edit properties and click on Save as button and specify the file name "MyNewDefault".
        Quit the window.
        Select you new category : Go to Tools=>General Options=>Model Creation : "MyNewDefault"
        Edit properties and remove all things you does not want keep.
        Save you new category
    Question #2. How to define copies/replicas of existing diagrams
         Wrote an extension
    Question #3. How to make sure, particular diagrams can be used (created) only on predefined "levels" and how to set the parent-child relationship, so that PD enforced it directly when creating a new diagram.
         Specify yours conditons in your extension attached to your model
         Example : When the user want create a child diagram :  You can display a list of Parent Diagrams to select from.
         You can set in your extension by VBScript parent-child relationship
    Question #4 In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available.
    If I understand well your question. I suggest to take a look in
    Repository=>Administration=>Objects Permission Profile
    You can specify objects to show, mask, deactivate at model level.
    You can specifiy your own metadata.
    But I'm not sure you can mask, deactivate functions following diagram selection. It seem to specific.
    Message was edited by: Benoit Le Nabec

  • Visibility issue with a sub report in Report Manager

    I have a subreport in a List item. In the visibility property of the subreport, I have the following expression:
    =IIF(Fields!X.Value = "A", "True", IIF(Fields!X.Value = "B", "True", "False"))
    This is working fine for me in SSDT. If the value of field X is A or B the subreport does not display, but the subreport displays otherwise.
    However, when I upload the report to Report Manager and run it the subreport will always display, even when the value of Field X is A or B. 
    Any suggestions for what I'm doing wrong, and/or how to fix or work around?. I've inserted Field X as a textbox into the List item, alongside the subreport, to ensure that the value is in fact A or B for the subreports that are displaying when they shouldn't.

    I've tried making the change suggested by
    PrajapatiNeha and then re-uploading the RDL to Report Manager.  The visibility error is still occurring.
    Thanks for your responses. I've downloaded the RDL from Report Manager, and located the appropriate code  for the subreport. The RDL contains the following for the sub-reports visibility properties:
    <Visibility>
    <Hidden>=iif(Fields!Indicator_Group.Value = "Service Utilisation" Or Fields!Indicator_Group.Value = "GP Referred Services", True, False)</Hidden></hidden>
    </Visibility>
    I dont really have any experience with reading the XML code, but this appears to be ok?
    If i set the visibility property to Hidden, then the subreport will not display for all records. But with the expression the subreport is still always displaying.
    Thanks

  • Blank pages on the Adminui

    I have installed server Jboss.  I am able to log in. I can see the Home, Services, Settings options.  But when I click on user management, the pages are blank!
    Suggestions?
    Thank you in advance
    p.s. it is an Eval copy of ES4 Server

    I was working in a recently updated image where IE got updated to version 11, I was facing the same problem and the log didn't show any error. In my case it's still ES3 SP2 but indeed, looking at the supported browsers, IE 11 is not even mentioned for ES4.
    First, I've noticed that installing Chrome (now at version 33.x) all admin pages got displayed. Second, turning on "Compatibility View" for the LC admin website allowed the page content to be displayed also on IE 11.
    When looking at the page source for the blank pages, all they contained was a SAML assertion so there must be an incompatibility between IE 11 and the way authentication/authorization is managed in Adminui.
    It would be worth publishing a tech note about this problem, and hopefully a future SP will address this incompatibility. For security reasons, it's nearly always a best practice to keep browsers updated and therefore IE 11 should spread pretty fast.
    The answer for now, therefore, is to use Chrome (and possibly also Firefox but I haven't tested it) or to turn on Compatibility View in IE 11 for any address where the Adminui web application is running.

  • Item category & item category group

    Hi
    What is the Function of item category and item category group?
    thanx in adv

    hi,
    read this help file.
    Using the item category group, you group together different material
    types for item category determination from the SD view. For every
    material type, you can define a default item category group which is
    proposed by the SAP System when you create a material master record. For
    more information on setting default values please refer to the section
    "Define material type defaults.
    In the sales document, the system determines the item category from the
    item category group of the material and from the sales document type and
    proposes this item category in the document. You assign item categories
    to sales order types and item category groups elsewhere. You can find
    further information on this in the section "Assign item categories".
    Actions
    If you define your own item category groups, the keys should start with
    the letter Z, since this name convention is kept free in the standard
    SAP System for this purpose.
    1.  Check whether you can use the item category groups in the standard
        version.
    2.  If you want to create new item category groups, you must enter an
        alphanumeric key with a maximum of 4 characters as well as a textual
        description.
    Item Catgeory:
    In this menu option, you define item categories for sales documents. The
    item categories that are contained in the standard SAP R/3 System
    together with the sales document types represent the usual business
    transactions.
    You have the following options for defining your own item categories:
    o   Copy an existing item category and change it according to your
        requirements.
    o   Create a new item category.
    Recommendation
    If you define your own item categories, the keys should begin with the
    letter Z since SAP keeps this range free in the standard system and
    protects it from being overwritten during release upgrades.
    If you define your own item categories, you should copy similar item
    categories that are defined by SAP and make the required changes there.
    In this case, all the specifications of the existing item category are
    copied - even the assignment to the sales document types. In particular,
    the data for example concerning partner determination, pricing or
    document flow which you do not edit on the detail screen of the item
    category is also copied.  Consequently, you can test the new item
    category for the settings made without having to edit the other menu
    options.
    When copying sales document types, item categories and schedule line
    categories, the SAP system automatically creates a log with the copied
    data. Using the log, you can check whether all of the copied data
    applies to your item category or whether you must make changes.
    Note
    If you create or copy a new item category that is to be used for a
    delivery, you must also define a delivery item category with the same
    name. The SAP system automatically transfers the item category that was
    found for the sales document item into the delivery item.
    Activities
    If you only need to make minor changes to the existing item categories
    (e.g. changed description), then you change this as appropriate. Minor
    changes refer to parameters that have no controlling character.
    If you need to make further changes, define a new item category by
    copying a similar item category supplied in the standard system and then
    change this according to your requirements.  In this way, you can for
    example define an item category for which a certain type of pricing is
    carried out, or for which the data must not differ at header and item
    level but which otherwise matches an existing item category.
    If you want to create an item category, proceed as follows:
    1.  Enter an alphanumeric key with a maximum of four characters.
    2.  Maintain the respective specifications of the detail screen.
    3.  Also consider the additional functions on item category level and
         the item-specific settings in the general sales and distribution
         functions.
    Regards,
    Murali

Maybe you are looking for

  • How to localize and delete the attachment from Inbox folder file?

    Hello, My name is Piotr Tyborowski and I'm the Technical Support Engineer in Doctor Web. I have got such suport request - one of our customers has problem with viruses in Thunderbird's Inbox folder - our antivirus scanner has found two Trojans in one

  • Retrieving latest record of an employee for a same scholar ID from pa9048

    Hi Experties...! i want to retrieve the latest record from the pa9048 table where the scholar ID (sname) is same for an employee.........can anyone tell me how i do that..........! latest record in means of date.......! Thanx in advance..............

  • Anyone know how to load symphobia and/or LA strings onto Logic Pro 8?

    how do you get symphobia and LA strings to load onto Lgc Pro8 Ive got them all loaded onto my G5 but cant get them over to Logic

  • Using unlocked ATT iphone 3GS on Telenor?

    I was wondering if anyone has any experience using an unlocked AT&T Iphone in Europe. I have been provided with a Telenor SIM card for an ancient Samsung. I'm hoping to get the 3GS running in europe with minuets and data, has anyone used Telenor befo

  • Remove entry from T77S0

    Hello experts, I am a beginner and undergoing ABAP HR training. While using a no. of transactions, on certain events, the control stop at a no. of breakpoints. I found out this is due to an entry in table T77S0 as follows GRPID = BREAK SEMID = MH5AS