How to mark a customizing table in the list of the SPRO?

Hi all,
I would like to highlight specific customizing table in the list that is presented within the SPRO transaction.
How is it possible?
(The highlighted table name should be sent as an input so maybe by evoking a user event)
Thanks,
Roy

Hi Roy,
I don't know any simple way. But you may try to add and maintain new custoimzing nodes using transaction SIMGH - many things are possible that way. Play around!
Regards,
Clemens

Similar Messages

  • How to add a customer field or extn coll in the tab1&2&3..of a UDO doc?

    Hi Experts,
    Does anybody know how to add a customer field or extn collection in the unused  tabs like tab1&2...in a UDO document?
    Thanks for your reply in advance.
    Thanks & Regards,
    David

    Hi Subhasini - <br><br>
    It seems you have discovered that adding an extension field to the Project Suppliers collection is not possible; many of the collections in E-Sourcing do not support extensions and, even when they do, typically, the table view of the data cannot be changed to show the extension value (it would only show on a "details" page, for example.<br><br>
    The solution that you have proposed may work, although I think there is a slight mistake in your logic. I believe you are saying that the script would take data from the newly created extension collection and populate data in the out-of-the-box vendor collection. <br><br>
    In thinking about your solution, I believe the benefit is that any logic and reporting based on the standard collection continues to function correctly (e.g., creating an RFx from the Project will use the out-of-the-box vendor collection).<br><br>
    That being said, I generally am reluctant to do a "replace" of a standard collection with an extension collection as you propose. My recommendation is that you challenge the customer on the importance of this requirement. For example, could the code be maintained on the vendor record? Why is it maintained in Projects? If it is maintained in the vendor record, could you just populate a read only collection the Projects that shows the vendor and code? Could a report be written that can be launched from within the Project to show the values? How does the customer intend to use this field? Could the display name of the vendor object be the right place for it?<br><br>
    I hope these ideas are helpful.<br><br>
    Regards,<br><br>
    Rob<br><br>

  • [b]How to create this Custom Table on Custom Schema with foreign key [/b]

    This Custom Table is create in Custom Schema and Refers to Seeded Table in APPS schema
    1 create table test_dff (test_id number(15) primary key,
    2* invoice_id number(15) constraint ap_test_fk REFERENCES ap_invoices_all(invoice_id) ON DELETE CASCADE)
    SQL> /
    invoice_id number(15) constraint ap_test_fk REFERENCES ap_invoices_all(invoice_id) ON DELETE CASCADE
    ERROR at line 2:
    ORA-02270: no matching unique or primary key for this column-list
    How to create this Custom Table on Custom Schema
    thanks in advance

    hi prashant
    sorry for replying late, i have checked your query and it gives me no rows, but if i check for user_cons_columns it gives me no rows either in APPS Schema, but in AP schema it gives me
    SQL> SELECT * FROM user_cons_columns WHERE table_name = 'AP_INVOICES_ALL';
    OWNER CONSTRAINT_NAME TABLE_NAME
    COLUMN_NAME
    POSITION
    AP SYS_C008177 AP_INVOICES_ALL
    INVOICE_ID
    SQL> SELECT constraint_name, constraint_type FROM user_constraints WHERE table_name = 'AP_INVOICES_A
    LL';
    CONSTRAINT_NAME C
    SYS_C008177 C
    SYS_C008178 C
    SYS_C008179 C
    SYS_C008180 C
    SYS_C008181 C
    SYS_C008182 C
    SYS_C008183 C
    SYS_C008184 C
    SYS_C008185 C
    SYS_C008187 C
    SYS_C008189 C
    SYS_C008191 C
    and since this is a combination of Unique and Not Null Constraints , i am getting the same issue. do u have any solution to make the Detail table records to delete without using Alerts/DB Triggers?
    thanks for your time .
    abdul rahman

  • NAV 2013 R2; How to run a customized report (206 sales invoice) in the classic client

    Hello, in preparing a newly installed NAV 2013 R2, I'm questioning the following:
    In the Development Environment I have customized report 206 Sales - Invoice in the Design menu View Layout with the space of the logo (by Microsoft SQL Server Report Builder) and
    finally saved and compiled.
    When I do run it connects to the server of what I call the classic client or the real NAV 2013 R2 and I can select a posted sales invoice to show the new layout and the result is
    fine as customized as I wanted.
    When I later ordinary print one of the posted sales invoices this customized logo layout doesn't appear on the print. I print in PDF and paper. When I make a next new sales invoice
    this new layout is not in use either.
    Another thing is run print started from the Development Environment is called Sales - Invoice in the header and not just Invoice that it the name when printing when invoicing and
    printing of posted documents.
    Additionally this form of Sales - Invoice shows our company details and good information as web, e-mail, bank account and bank name that is well demanded on a perfect invoice.
    How to get these informations out normally?
    Is the classic client having a wrong report as sales invoice?
    How to run a customized report (206 sales invoice) in the classic client NAV 2013 R2?
    It is like the customized report (206 sales invoice) is not in use yet in the classic client.
    All you wise people out there are welcomed to help me now
    Best regards
    Carsten

    Try on Dynamics Community forum: https://community.dynamics.com/nav/f/34.aspx

  • How to MODIFY A CUSTOM TABLE  FROM A FLAT FILE

    Dear Friends,
                     I have a requirement where i have to upload data from excel file to my custom table  so i have used a FM
    'TEXT_CONVERT_XLS_TO_SAP' and i have collected data into a internal table , till here i am able to get data correctly , now i hae to upload this data into a custom table .
    the flat file is having  6 fields and the custom table is having
    8 fields , for uploading the data into this custom table from the internal table where i have collected above iam getting problem . Actually iam using a modify statement to update the custom table .
    the flat file which i have collected into the internal table is as below :
      IDNo.     Name     Date      Location   Designation  Dept
      101       Raja      4/12/2007  Delhi      Manager      HR
      102       James    4/12/2007  Delhi      Clerk          HR
    Custom table  is having the below fields
    IDNO.  Name  Date  Location Designation  Dept   Manager
    101                                                                   Raja
    now when i run the program iam getting the problem   while usign the modify statment is the ID no which is already having
    a record as  IDno = 101  and manger = Raja.......with the other fields   name , date, location,designation and dept as blank.
    if i want to fill this fields from my flat file the modify statment
    just filling all the fields  for the ID no = 101  and manager field which already having Raja as being overwritten by space .....
    becasue this field is not being there in the flat file.
    the code iam using as follows.
    The flat file is having with the below structure
    TYPES: BEGIN OF t_emp_data,
              IDNO(11) TYPE c,
             Name(13) TYPE c,
             Date(20) TYPE c,
              Location (40) TYPE c,
             Designation(40) TYPE c,
             Dept(40) TYPE c,
             end of t_emp_data.
    The Custom Table(ZEMP_DATA) is having with the below structure
    TYPES: BEGIN OF t_emp_data_table,
              IDNO(11) TYPE c,
             Name(13) TYPE c,
             Date(20) TYPE c,
              Location (40) TYPE c,
             Designation(40) TYPE c,
             Dept(40) TYPE c,
             Manager(20) type c,  -- this is the extra field in table
             end of t_emp_data_table.
    data :
    it_empdata TYPE STANDARD TABLE OF t_emp_data,
    it_empdata_tmp TYPE STANDARD TABLE OF t_empdata_tmp,
    wa_empdata_tmp  type t_empdata_tmp,
    wa_empdata type t_emp_data.
    loop at it_empdata into  wa_empdata.
      move-corresponding  wa_empdata to   wa_empdata_tmp.
      modify ZEMP_DATA  from  wa_empdata_tmp .
    endloop.
    could any one please let me know what i have to do inorder to not get the manager field data not being overwritten with the modify statment , for the IDNo. 101  . I want the data which is already ( manager = Raja) shouldnt not be get overwritten with Space.
    please help me in this regard
    Regards
    Madhuri.

    Hi,
    use a slect statement before
    "move-corresponding wa_empdata to wa_empdata_tmp."
    select manager
    from ztable
    into wa_empdata_tmp-manager
    where id = 100.
    regards,
    lavanya

  • I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless i select the list in the sub file. How do I get backto the old method of seeing and using iTunes??

    I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless I select the list in the sub file. How do I get back to the old method of seeing and using iTunes??

    I can tell you that this is some of the absolutely worst customer service I have ever dealt with. I found out from a store employee that when they are really busy with calls, they have third party companies taking overflow calls. One of those companies is Xerox. What can a Xerox call center rep possibly be able to authorize on a Verizon account?  I'm Sure there is a ton of misinformation out there due to this. They don't note the accounts properly or so everyone can see them. I have been transferred before and have asked if they work for Verizon or a third party also and was refused an answer so, apparently they aren't required to disclose that information. I spent a long time in the store on my last visit and it's not just customers that get the runaround. It happens to the store employees as well and it's beyond frustrating.

  • Having synced my ipod, there are certain artists missing from the list on the ipod, but the tracks are there under the songs list.  Any reason why and how do i correct this.  Thanks.

    Having synced my ipod, there are certain artists missing from the list on the ipod, but the tracks are there under the songs list.  Any reason why and how do i correct this.  Thanks.

    We'll assume for now, that all the songs and albums in your iTunes Library are correctly labelled (dangerous assumption, by the way!), and that a Compilation album is one with songs by different artists. Unfortunately, the music industry (bless their little cotton socks!) often mark an album by one artist, that has a collection of their songs from old albums, as a compilation! iTunes doesn't think it is!
    The missing artists will be those who only appear on Compilation albums. For example, if you have one song by Fleetwood Mac in your Library, and it's on a multi-artist Compilation album, then Fleetwood Mac will not be listed in the Artists menu. But, if you then import a Fleetwood Mac album (or even a Fleetwood Mac single) into your Library, then not only will Fleetwood Mac appear under Artists, but the song by them in the Compilation album will also be listed.
    One way to sort this out is to remove the Compilations option from the Main Menu and the Music Menu on your iPod. To do this, go to Settings/Main Menu/Compilations and press the Select (centre) button to turn off the tick. Then repeat this in the Settings/Music Menu/Compilations.
    You should now find the missing artists listed in the Artists menu.
    By the way, I now routinely check all albums I import from CD into my iTunes Library. Before I start the import procedure, I make sure that Compilation CD is turned on (highlight the album in the import window and right-click/Compilation CD) if it really is a multi-artist CD - and off if it's a single artist CD. Once imported, I manually change the album info to; (highlight album and select ) File/Get Info/Info/Album Artist has "Various Artists" in the box. Make sure it's the Album Artist box, not the Artist box.

  • How can I download a previously downloaded purchase to my iTunes library on my laptop when the listing for the song in my library won't play because it says it cannot locate the file. Yes I have searched my iTunes folders and also done a full windows sear

    How can I download a previously downloaded purchase to my iTunes library on my laptop when the listing for the song in my library won't play because it says it cannot locate the file. Yes I have searched my iTunes folders and also done a full windows search. The track plays on my iPad and my iPhones but will not play on my laptop!?
    It has an "!" To the left of the song title in my library
    My worry is that if I sync my iPad/iPhone then I will lose the track on those also!

    If you cannot find the file on your hard drive then once you delete the current broken entry you should be able to redownload from iTunes in the Cloud. This assumes the item in question qualifies. Note that audiobooks, digital booklets, iTunes LPs & Extras, ringtones, selected movies etc. don't.
    If prompted don't hide the item. You may find that you need to close and then reopen iTunes before it will appear for download.
    tt2

  • ICal 5: day view: how can the list on the left side be hidden?

    hi fellows
    how can the list on the left side in the day-view of iCal 5 be hidden, so that the computer-screen only shows the graphic-bars (right side)?
    Thanks a lot for your help
    Mullika

    Sorry, but there was nothing in your last post.

  • I have made a playlist on my iPod touch 4th generation for some friends' wedding and I want to play the list in the order I wrote it. It keeps shuffling though, so how do I play it in track order?

    I have made a playlist on my iPod touch 4th generation for some friends' wedding and I want to play the list in the order I wrote it. It keeps shuffling though, so how do I play it in track order

    In iTunes, before you sync the playlist, you can right click on the playlist and select the option that says "Copy Play Order" that will preserve list in the order you have them.
    Though this page is outdated, I believe it still applies:http://support.apple.com/kb/ta27500
    Hope this helps!

  • I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    Hey GingCarv,
    Great question. You'll want to download the movies from your purchase history. The following article explains how to do so:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Note: At this time, movies are not available for automatic downloads.
    Thanks,
    Matt M.

  • Since I upgraded to iTunes 11.01 the "Smart" playlists feature no longer works.  I can CREATE the list but, the songs that I have played don't accumulate in the list.  I haven't changed the steps that worked for me previous to the upgrade.  I have no idea

    Since I upgraded to iTunes 11.01 the "Smart" playlists feature no longer works.
    I can CREATE the list but, the songs that I have played don't accumulate in the list.
    I haven't changed the steps that worked for me previous to the upgrade.
    I have no idea how to fix this and can't find mention of anyone else having a similar problem.
    Any suggestions?

    Click on a station and drag to the left. The playlists sidebar will open up. Drop on the playlist you want to add to.
    tt2

  • To know the list of the Job Orders are involved in making the Out Product

    Hello All,
    Please let me know how do I get the list of the Job Orders are involved in making the Out Product.
    Thanks in Advance.

    Hi,
    "Making the out product" does this mean you want to know what are the Outside Processing Involved jobs?? If so you can run the "WIP Outside Processing Report" to see the jobs at supplier for OSP.
    If you meant something else please elaborate.

  • Export the list of the prices of the materials at an Excel sheet

    If we use PR00 condition for price of the materials, how can we export the list of the prices of the materials at an Excel sheet? Can we use V/LA or V/LD ?
    Thanks in advance.

    Go to menu bar select"System"-->list>Save--->localfile-->and then save it in spred sheet.

  • When i open my itunes my screen doesn't have the list on the left side

    my itunes screen looks different   when plugging in my iphone I cannot find the list on the left side that shows my music, apps, etc
    what changed and how do I get the screen to look like it used to
    I cannot sync my apps or music  cannot find anywhere to do this
    why did apple take that away or change the look without asking first?

    It's just that you are a tad bit behind the times here, shouser. When iTunes 11 came out your issue came up many times a day for many weeks. The question was asked and answered time and time again. I'm sure that Apple is very clear on the response to that decision. I'm not saying that I liked it any better than you, but the discussion is SO over....
    Take a look at "More Like This" just to the right of this discussion....
    And, seriously? You are going to never get an Apple product again because of a software decision that you don't agree with, and because you don't think the solution is intuitive enough, even though it is a simple thing to rectify (once you have paid a little attention and read a little to find out how to get the sidebar to display)?
    Well, if that one tiny little problem is enough to make you want to go to the dark side, then by all means, GO!
    I'm sure that your new Android and PC will hold your hand with everything you need without any effort on your part....
    Cheers,
    GB

Maybe you are looking for