CQRLOG - ADIF QSL tags

5 posts / 0 new
Last post
DL2KI
CQRLOG - ADIF QSL tags

Hi,

is there any documentation about how CQRLOG uses the ADIF fields

"QSL_SENT:1"
"QSL_RCVD:1"
"APP_CQRLOG_QSLS:1"
"APP_CQRLOG_QSLR:1"

be handled internally? Which characters are entered here and when?

I could use the information well for my own internal evaluation of the ADIF file.

73, Wolfgang
DL2KI

oh1kh
CQRLOG - ADIF QSL tags

Hi!

No better documentation than source code.

Good starting point is always to make grep in /src directory.
grep -ni "app_cqrlog_qsl" src/*.pas
With that you can see that those occurs in src/fAdifImport.pas, src/fExportProgress.pas and src/uADIFhash.pas

In src/fAdifImport.pas around line 420 you see how they are handled during import. ExportProgress tells how they are generated at export and uADIFhash is a additional file where numerical value is defined for different adif tags that is used elsewhere (I have not cleared out to myself what is the real meaning and benefit of this)

Same way you can dig out standard adif tags qsl_sent and qsl_rcvd usage.

--
Saku
OH1KH

DL2KI
Hi, this is what I found out:

Hi, this is what I found out:

New QSO Window, "QSL_S" menu

""    no input                                            "QSL_SENT:1" = N
B     buro (a 'B' appears in the log, column 'QSL sent')  "QSL_SENT:1" = Y
D     direct                                              "QSL_SENT:1" = Y
M     manager                                             "QSL_SENT:1" = Y
N     No not send                                         "QSL_SENT:1" = I

MB    manager buro                                        "QSL_SENT:1" = Y
MD    manager direct                                      "QSL_SENT:1" = Y

SB    send buro                                           "QSL_SENT:1" = R
SD    send direct                                         "QSL_SENT:1" = R
SM    end manager                                         "QSL_SENT:1" = R

SMB   send manager buero                                  "QSL_SENT:1" = R
SMD   send manager direct                                 "QSL_SENT:1" = R

E     eQSL                                                "QSL_SENT:1" = Y
SE    send eQSL                                           "QSL_SENT:1" = R

PE    ???                                                 "QSL_SENT:1" = Y
SPE   ???                                                 "QSL_SENT:1" = R
OR    ???                                                 "QSL_SENT:1" = Y
OQRS  Online QSL request system                           "QSL_SENT:1" = R

In case of an input in the field "QRL_S", "APP_CQRLOG_QSLS:1" = input value. 
Otherwise the tag "APP_CQRLOG_QSLS:1" is missing.
    
"SB", "SD", "SM", "SMB", "SMD" should be used as an alternative to "B", "D", "M", "MB", MD".

-----

New QSO Window, "QSL_R" menu      

""    no input       "QSL_RCVD:1" = N                   
Q                    "QSL_RCVD:1" = Y
   
!                    "QSL_RCVD:1" = Y   

If an entry is made in the field "QRL_R", "APP_CQRLOG_QSLR:1" = input value.
Otherwise the tag "APP_CQRLOG_QSLR:1" is missing.

-----

There are differences between the menu "QSL_S" in the "New QSO" window and the menu in the "QSO List".
Furthermore the help texts are not adapted. I think that one could unify and simplify here some things.

73, Wolfgang
DL2KI

DL2KI
Hi,

Hi,

unfortunately, I can't seem to edit the last post.

In QSO list, sent QSL menu i found

CE    Confirmed by email       "QSL_SENT:1" = Y

This entry is missing in the New QSO input field "QSL_S".

73, Wolfgang
DL2KI

 

oh1kh
CQRLOG - ADIF QSL tags

Yep!
Editing can be done only via "my account" and concerns the first message of thread (that is at least what I have found).

Qsl selectors R and S have some predefined values but they both allow text input as well. Input is stored as strings 4chr for send and 3chr for receive.
How ever adif standard does not allow them to be exported and imported as is. https://adif.org/312/ADIF_312.htm#QSLRcvd_Enumeration

That is why they can only transferred in original form by mysqldump of database.

--
Saku
OH1KH