Hello Appeon Team,
We are currently on PB2017R3 with Git as source control. 2017R3 does not update PBG file, if you add or delete any object in PowerBuilder IDE which I have verified it. I also heard that Orca Script no longer look for PBG file for compiling in 2017R3. With this statement, I tried to run the orca command to refresh the pbls but it is still looking for PBG files. Since there is a bug in PB2017 where it converts PBG files to UTF, we receive "Unable to process map from PBG file".To make it work, I manually have to change the file type of all PBG files to ANSI and then it works. My question is
Why orcascr170 is still looking for PBG file?
When they are going to resolve this bug which changes the PBG file type to UTF?
Below is my orca file with commands
start session
set debug true
scc set connect property logfile "createpbls.log"
scc set connect property localprojpath "pb-equip"
scc connect offline
scc set target "pb-equip\units.pbt" "importonly outofdate"
;scc refresh target incremental
scc refresh target 3pass
scc close
end session
Please answer and help me.