ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

Initial Menu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Initial Menu

    Hi,

    I need the WRKMBRPDM screen as my Initial screen when i log in to my AS400.
    I know i have to change the profile using CHGPRF.But WRKMBRPDM is not a menu or a program(if i am right).How do i get this.

    Also i need to have a library listing at the time of signing in.How do i create a jobD for that.do i need any authority to do that.

    Thanks
    Thanks
    Sudarshan

  • #2
    Re: Initial Menu

    Write a CLLE program...

    Code:
                 PGM                        
                 ?          WRKMBRPDM       
                 MONMSG     MSGID(CPF0000)  
                 ENDPGM
    Then do a DSPUSRPRF on your profile and find the Job description you are currently using.

    Take a copy of that JOBD, and then do a CHGJOBD on the new job description, page down until you get to the Initial Library List and ammend to suit your needs.

    You then need to change your user profile..

    Code:
                            Change User Profile (CHGUSRPRF)                        
                                                                                   
    Type choices, press Enter.                                                     
                                                                                   
    User profile . . . . . . . . . . > YOURPRF       Name                   
    ..
    ..
    ..       
    Initial program to call  . . . .   YOURPGM         Name, *SAME, *NONE            
      Library  . . . . . . . . . . .  YOURLIB, *LIBL, *CURLIB          
    ..
    ..
    ..
    Job description  . . . . . . . .   YOURJOBD       Name, *SAME           
      Library  . . . . . . . . . . .     YOURJOBDLIB        Name, *LIBL, *CURLIB
    To change your user profile you'll need *SECADM authority.
    Last edited by ChrisL; January 18, 2008, 05:01 AM.

    Comment


    • #3
      Re: Initial Menu

      Hi Chris,

      I got the initial screen as the WRKMBRPDM with a little modifications from the CL you posted.That looks great.

      But I dont have *SECADM authority.......no issues.
      happy with what i have

      Thanks Chris
      Thanks
      Sudarshan

      Comment

      Working...
      X