Skip to content

Commit 4296c9a

Browse files
committed
Add page on ASP config
Signed-off-by: worksofliam <mrliamallan@live.co.uk>
1 parent bb66424 commit 4296c9a

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

.astro/astro/content.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,13 @@ declare module 'astro:content' {
446446
collection: "docs";
447447
data: InferEntrySchema<"docs">
448448
} & { render(): Render[".mdx"] };
449+
"tips/asp.mdx": {
450+
id: "tips/asp.mdx";
451+
slug: "tips/asp";
452+
body: string;
453+
collection: "docs";
454+
data: InferEntrySchema<"docs">
455+
} & { render(): Render[".mdx"] };
449456
"tips/bash.mdx": {
450457
id: "tips/bash.mdx";
451458
slug: "tips/bash";

.astro/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1743984827099
3+
"lastUpdateCheck": 1745929492293
44
}
55
}

src/content/docs/settings/connection.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ Temporary IFS directory. Stores temporary IFS files used by Code for i. Will be
3434
>
3535
It is safe to have files created by Code for i automatically deleted during maintenance or IPL.
3636

37-
### Source ASP
38-
39-
If source files are located in a specific ASP, specify here.
40-
Otherwise, leave blank.
41-
4237
### Enable source dates
4338

4439
When checked, source dates will be retained.

src/content/docs/tips/asp.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: ASP configuration
3+
---
4+
5+
import { Aside } from '@astrojs/starlight/components';
6+
7+
If you store your source code, or objects, in another iASP other than *SYSBAS, then your user profile needs to be configured with a job description that has the ASP set to the iASP you want to use.
8+
9+
There are two steps for this:
10+
11+
* Set the `INLASPGRP` parameter in [`CRTJOBD`](https://www.ibm.com/docs/en/i/7.3.0?topic=ssw_ibm_i_73/cl/crtjobd.html) or `CHGJOBD` to the ASP group you want to use.
12+
* If needed, set which job description to use in your user profile by changing the `JOBD` parameter in [`CHGUSRPRF`](https://www.ibm.com/docs/en/i/7.3.0?topic=ssw_ibm_i_73/cl/chgusrprf.html).
13+
14+
Some people prefer having a user profile for each ASP.
15+
16+
<Aside type="note">
17+
Code for IBM i used to have a method of setting the *source ASP* in the connection settings. It was removed in favour of this.
18+
</Aside>

0 commit comments

Comments
 (0)