Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

maintenance view- GUID field missing

Former Member
0 Likes
2,759

Hi Experts,

     i am facing two issues in my table maintenance.

1) GUID field is missing - (SAP intentionally hides this field as its system generated but my client requires this info on the table)

2) Search help on 2nd column is dependent on the first colutmn, and 4th column is dependent on the 3rd column.

i am currently trying to accomplish this through value help.but please let me know if there is any thing better.

Regards,

Tashi

9 REPLIES 9
Read only

Former Member
0 Likes
1,706

Hi Tashi,

for the first one, you can go to the program generated for the maintenance view ,

there will be once mod pool program. Go to the respective screen which is having the output table.

There you can change the column settings for GUID column.

2) in the table definition itself you can maitain the same table fields as Reference fields. Please search out in the net and this can solve your problems.

Let us know in case of any issues.

Thanks and Regards,

Bhaskar

Read only

nishantbansal91
Active Contributor
0 Likes
1,706

Hi Tashi,

Add one Text Field inside your Table maintaince Layout with the Name of the

Tablename-Fieldname and set the property for that field (OUTPUT Only).

Example Table is BBP_PD and field is GUID add that field in the Screen Painter. automatically data is coming in your Row.

Let me know if any other issue,

Regards,

Nishant Bansal.

Read only

Former Member
0 Likes
1,706

Hi Experts,

     i was able to include a new column by using the secondary window option, However i am yet to solve the search help scenario,

field1name    field1 id        field2name    field2 id

A user of the the maintenance should be able to pick a filed1 name from search help and field id value should be automatically picked, same is with field 2 as well.

Please give your advice on how i can achieve this scenario.

Thanks & Regards,

Tashi

Read only

Former Member
0 Likes
1,706

Hi Experts,

     Do we have any settings in the table column to get the pov module triggered, as currently my module isnt executed.

i have kept a breakpoint ,but it refuses to execute on press of f4 ..

Please help

Read only

0 Likes
1,706

Can you please share your smaple code for POV modules both PBO/PAI/POV and code of POV.. Have you activate the screen where you have written your POV?

Please add screen shots for the same

Read only

0 Likes
1,706

here is the screen flow code:

  PROCESS BEFORE OUTPUT.
MODULE LISTE_INITIALISIEREN.
LOOP AT EXTRACT WITH CONTROL
  TCTRL_ZPRC_V_HIER CURSOR NEXTLINE.
   MODULE LISTE_SHOW_LISTE.
ENDLOOP.
*
PROCESS AFTER INPUT.
MODULE LISTE_EXIT_COMMAND AT EXIT-COMMAND.
MODULE LISTE_BEFORE_LOOP.
LOOP AT EXTRACT.
   MODULE LISTE_INIT_WORKAREA.
   CHAIN.
    FIELD ZPRC_V_HIER-HIENM .
    FIELD ZPRC_V_HIER-NODENAME .
    FIELD ZPRC_V_HIER-TXTMD .
    MODULE SET_UPDATE_FLAG ON CHAIN-REQUEST.
    MODULE COMPLETE_ZPRC_V_HIER ON CHAIN-REQUEST.
   ENDCHAIN.
   FIELD VIM_MARKED MODULE LISTE_MARK_CHECKBOX.
   CHAIN.
    FIELD ZPRC_V_HIER-HIENM .
    FIELD ZPRC_V_HIER-NODENAME .
    MODULE LISTE_UPDATE_LISTE.
   ENDCHAIN.
ENDLOOP.
MODULE LISTE_AFTER_LOOP.

PROCESS ON VALUE-REQUEST.

FIELD ZPRC_V_HIER-HIENM MODULE f4help_process.

Read only

0 Likes
1,706

Have you activated the screen.....? Is it a one step tmg or two step tmg..? If two step check both the sscreenc.

Read only

0 Likes
1,706

Its one step tmg ... and screens are activated

Read only

0 Likes
1,706

Here is the trick when you are creating f4help_process module then choose the top include LZPRC_V_HIERTOP. save and activate both. Then go to se80 open the function groupd in which you have created TMG do a right click and activate.